* First pass at composedb models
* Removed patterns as they're not supported yet
* Started hooking up the edit profile page to composedb
* Got PoC working for persisting username to ComposeDB
* Some fixes after bumping urql to 3.x
* Refactored setup logic into ProfileWizardContext
* Implemented fetching from ComposeDB for first three profile wizard screens
* Refactored wizard stuff again to simplify it
* Finished upgrading profile setup components
* Added query to fetch all profile fields from composeDB
* Load profile data from composeDB on player page
* Unified composeDB models into one, updated setup flow to use new model
* Fixed a couple errors in first-time setup flow
* Added new linkProfileNode action to validate ceramic node on the backend
* Call new linkProfileNode action
* Implemented proper persistence w/ verification of a user's ceramic profile node
* Fetch profile details from ComposeDB during [username] page SSR
* Added PlayerHydrationContext for dynamically refreshing player data on player page
* Implemented player hydration from Hasura
* Slight refactor of Setup components to accept a player object
* Added ComposeDB migration modal, still need to implement image migration
* Added useImageReader, updated EditProfileModal to get the appropriate picked file data
* Implemented persisting ComposeDB profile fields from edit profile modal
* Check in composeDB graphql definition because generating it at build time may be problematic
* Merged in new setup profile image field page
* Fixed and tested image upload during setup
* Fixed background image URL form field name
* Added fallback for non-SSR player pages
* Implemented fetching file size and dimensions before persisting to ComposeDB
* Fix lint issues
* More debug logs
* Set CERAMIC_URL in deployment action
* Don't delete / recreate stuff
* Fix setup / avatar upload
* Fixed edit profile field saving, updated useUser to load from composeDB
* Fixed construction of profile payload when changing an image
* Pull in additional data in seed-db script
* Fixed white background in menus
* Updated GA4 ID
* Point to ceramic mainnet
* Bumped composedb version
* Fix ceramic API change
* Update frontend ceramic_url as well
* Only authenticate the DID for the model the compose client connects to
* Create a new model, last one got hosed
* Updated model ID in definition
* Reinstate original deployment action
* Fixed player loading
* Handle errors during DAO sync
* Handle questchain lookup errors during SSR build
* Replaced IDX cache actions / triggers with composeDB ones
* Added mainnet check to composeDB port modal
* Fixed issue where saving from the edit profile modal was wiping out fields
* Add ComposeDBPromptModal to setup pages as well
* Upgrade Hasura
* Added context to 'port data' modal
* fix bad merge
* Hasura 2.0 requires a flag for our sloppy queries to still work
* add comment to begin wokr
* refactor: 💄 Update profile UI to new design
* style: 💄 Minor style changes
* Add getPlayer import
* Make changes requested in #1559
* Delete EditAvatarImage.tsx.orig
* Delete EditBackgroundImage.tsx.orig
* Delete EditDescription.tsx.orig
* refactor: Remove commented code
---------
Co-authored-by: Alec LaLonde <alec@convergencelabs.com>
Co-authored-by: Alec LaLonde <alec@boxelderweb.com>
Co-authored-by: nitegeist <nitegeist.dev@gmail.com>
* moving pr over to fresh branch
* fixes
* update migrate
* pulling in files for rename of `migrate` to `sync` for SourceCred 🔖
* fix
* prevent lack of data
* formatAddress
* tile
* fixes
* switch rpc
* refactor and remove maps, clean up set
---------
Co-authored-by: dysbulic <dys@dhappy.org>
* feat: metamask switch network support + fixed dependancy cycle
* feat: moved landing to index
* feat: updated favicon
* fix: fixed landing page issues + scrollSnap
* feat: join button
* fix: fixed seed script with new prod schema
* feat: join button redirects based on user creation date
* fix: minor ui bug fixes
* feat: connect to mainnet to continue with switch network on metamask
* fix: uniform setup screens
* fix: fixed XP on dashboard
* feat: added start page
* fix: fixed issues on landing page
* fix: fixed minor issues on dashboard
* fix: update idx profile in auth webhook for new players
* fix: minor fixes in seed page
* fix: player avatar & type
* fix: incorporated review comments from @dysbulic & @vidvidvid
* fix: more review comments
#1078 is at about 4,000 lines changed and includes both code implementing features and unrelated functional and stylistic changes. This set of changes is about ⅓ of the total and should be largely independent.
These changes include:
* have Dependabot ignore `patch` version changes
* switch the cache invalidation Hasura action to asynchronous
* add a uniqueness constraint on the combination of player and skill ids
* print a comprehensible error message in the db seeding script on network errors
* add a mutex on the account creation process & allow it to happen only once *(subsequent runs were failing b/c of the uniqueness constraint on the ETH address & returning `null` (closes#1098))
* adds some more profile editing related types
* renames `HighLow7dType` to `HighLowType`
* refactors the `ColorBar` component to include links to a color explanation
* replaces `fake-tag`'s `gql` string identifier with the dependency-free `/* GraphQL */`
* rename `lib/hooks/useUserXp.ts` to `useUserXP.ts`
* fixed some typings to remove `any`s
* bumped some library versions & fixed the version numbers of some others