From 9f87d712b959ceb143a18a7cd64c0412da15e5ec Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Thu, 6 Jul 2023 03:06:48 -0700 Subject: [PATCH 01/15] Case sensitivity sucks (#345) * Rich text editor and support for tagging objects (#340) * Preliminary work around making an Element type * Disabled Youtube code for now * Clean description with DOMPurify * Update GranblueElement with slug * Add new api endpoint for searching all resources * Add new variables and themes * Remove fixed height on html tag for now * Update README.md We renamed the folders for character images from `chara-` to `character-` * Add no results string * Add tiptap and associated packages * Update .gitignore * Update components that use character images * Add Editor component This commit adds the bulk of the code for our new rich-text editor. The Editor component will be used to edit and display rich text via Tiptap. * Add mention components This adds the code required for us to mention objects in rich text fields like team descriptions. The mentionSuggestion util fetches data from the server and serves it to MentionList for the user to select, then inserts it into the Editor as a token. * Implements Editor in edit team and team footer This implements the Editor component in EditPartyModal and PartyFooter. In PartyFooter, it is read-only. * Remove min-width on tokens * Add rudimentary conversion for old descriptions Old descriptions just translate as a blob of text, so we try to insert some paragraphs and newlines to keep things presentable and lessen the load if users decide to update * Add support for displaying jobs in MentionList * Handle numbers and value=0 better * Keep description reactive This shouldn't work? The snapshot should be the reactive one? I don't fucking know * Send locale to api with search query * Delete getLocale.tsx We didn't actually use this * Fix build errors * Override peer dependencies for tiptap mentions They haven't fixed the suggestion plugin, so we have to use a beta version * Fix background-color on CharacterRep * Tiptap updates (#343) * Reinstantiate editor on changes We can't dynamically update the content, so we have to recreate the Editor whenever something changes (page loads and updates) * Fix import @tiptap/core is different than @tiptap/react, who knew * Added several Tiptap components * Added a Remix icon that isn't in remixicon-react * Add colors for highlights * Add ToolbarButton component This is to standardize adding Toolbar icons so it wasn't a miserable mess in the Editor file * Add extensions and implement ToolbarButton * Remove unused code * Use party prop and add keys We always want to use the party in props until the transformer work is done and our source of truth is more reliable. Also, we are using keys to ensure that the component reloads on new page. * Component cleanup * Always use props.party * Ensure content gets reset when edits are committed Here, we do some tactical bandaid fixes to ensure that when the user saves data to the server, the editor will show the freshest data in both editable and read-only mode. In the Editor, its as easy as calling the setContent command in a useEffect hook when the content changes. In the party, we are saving party in a state and passing it down to the components via props. This is because the party prop we get from pages is only from the first time the server loaded data, so any edits are not reflected. The app state should have the latest updates, but due to reasons I don't completely understand, it is showing the old state first and then the one we want, causing the Editor to get stuck on old data. By storing the party in a state, we can populate the state from the server when the component mounts, then update it whenever the user saves data since all party data is saved in that component. * Fix build errors * Fix icon path --- components/common/Editor/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/common/Editor/index.tsx b/components/common/Editor/index.tsx index 06bb5dd2..00404ae2 100644 --- a/components/common/Editor/index.tsx +++ b/components/common/Editor/index.tsx @@ -18,7 +18,7 @@ import ItalicIcon from 'remixicon-react/ItalicIcon' import StrikethroughIcon from 'remixicon-react/StrikethroughIcon' import UnorderedListIcon from 'remixicon-react/ListUnorderedIcon' import OrderedListIcon from '~public/icons/remix/list-ordered-2.svg' -import PaintbrushIcon from 'remixicon-react/PaintbrushLineIcon' +import PaintbrushIcon from 'remixicon-react/PaintBrushLineIcon' import H1Icon from 'remixicon-react/H1Icon' import H2Icon from 'remixicon-react/H2Icon' import H3Icon from 'remixicon-react/H3Icon' From 209f6b733f4b0747d031b11d6a1b6ac17d4d4138 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Thu, 6 Jul 2023 03:08:51 -0700 Subject: [PATCH 02/15] Merge conflict bug (#346) * Rich text editor and support for tagging objects (#340) * Preliminary work around making an Element type * Disabled Youtube code for now * Clean description with DOMPurify * Update GranblueElement with slug * Add new api endpoint for searching all resources * Add new variables and themes * Remove fixed height on html tag for now * Update README.md We renamed the folders for character images from `chara-` to `character-` * Add no results string * Add tiptap and associated packages * Update .gitignore * Update components that use character images * Add Editor component This commit adds the bulk of the code for our new rich-text editor. The Editor component will be used to edit and display rich text via Tiptap. * Add mention components This adds the code required for us to mention objects in rich text fields like team descriptions. The mentionSuggestion util fetches data from the server and serves it to MentionList for the user to select, then inserts it into the Editor as a token. * Implements Editor in edit team and team footer This implements the Editor component in EditPartyModal and PartyFooter. In PartyFooter, it is read-only. * Remove min-width on tokens * Add rudimentary conversion for old descriptions Old descriptions just translate as a blob of text, so we try to insert some paragraphs and newlines to keep things presentable and lessen the load if users decide to update * Add support for displaying jobs in MentionList * Handle numbers and value=0 better * Keep description reactive This shouldn't work? The snapshot should be the reactive one? I don't fucking know * Send locale to api with search query * Delete getLocale.tsx We didn't actually use this * Fix build errors * Override peer dependencies for tiptap mentions They haven't fixed the suggestion plugin, so we have to use a beta version * Fix background-color on CharacterRep * Tiptap updates (#343) * Reinstantiate editor on changes We can't dynamically update the content, so we have to recreate the Editor whenever something changes (page loads and updates) * Fix import @tiptap/core is different than @tiptap/react, who knew * Added several Tiptap components * Added a Remix icon that isn't in remixicon-react * Add colors for highlights * Add ToolbarButton component This is to standardize adding Toolbar icons so it wasn't a miserable mess in the Editor file * Add extensions and implement ToolbarButton * Remove unused code * Use party prop and add keys We always want to use the party in props until the transformer work is done and our source of truth is more reliable. Also, we are using keys to ensure that the component reloads on new page. * Component cleanup * Always use props.party * Ensure content gets reset when edits are committed Here, we do some tactical bandaid fixes to ensure that when the user saves data to the server, the editor will show the freshest data in both editable and read-only mode. In the Editor, its as easy as calling the setContent command in a useEffect hook when the content changes. In the party, we are saving party in a state and passing it down to the components via props. This is because the party prop we get from pages is only from the first time the server loaded data, so any edits are not reflected. The app state should have the latest updates, but due to reasons I don't completely understand, it is showing the old state first and then the one we want, causing the Editor to get stuck on old data. By storing the party in a state, we can populate the state from the server when the component mounts, then update it whenever the user saves data since all party data is saved in that component. * Fix build errors * Fix icon path * Remove duplicate binding --- components/party/EditPartyModal/index.tsx | 9 --------- 1 file changed, 9 deletions(-) diff --git a/components/party/EditPartyModal/index.tsx b/components/party/EditPartyModal/index.tsx index cd9a2603..e794fdca 100644 --- a/components/party/EditPartyModal/index.tsx +++ b/components/party/EditPartyModal/index.tsx @@ -476,15 +476,6 @@ const EditPartyModal = ({ /> ) - const editorField = ( - - ) - const chargeAttackField = ( Date: Thu, 6 Jul 2023 03:34:14 -0700 Subject: [PATCH 03/15] Fix some loose styles (#347) * Rich text editor and support for tagging objects (#340) * Preliminary work around making an Element type * Disabled Youtube code for now * Clean description with DOMPurify * Update GranblueElement with slug * Add new api endpoint for searching all resources * Add new variables and themes * Remove fixed height on html tag for now * Update README.md We renamed the folders for character images from `chara-` to `character-` * Add no results string * Add tiptap and associated packages * Update .gitignore * Update components that use character images * Add Editor component This commit adds the bulk of the code for our new rich-text editor. The Editor component will be used to edit and display rich text via Tiptap. * Add mention components This adds the code required for us to mention objects in rich text fields like team descriptions. The mentionSuggestion util fetches data from the server and serves it to MentionList for the user to select, then inserts it into the Editor as a token. * Implements Editor in edit team and team footer This implements the Editor component in EditPartyModal and PartyFooter. In PartyFooter, it is read-only. * Remove min-width on tokens * Add rudimentary conversion for old descriptions Old descriptions just translate as a blob of text, so we try to insert some paragraphs and newlines to keep things presentable and lessen the load if users decide to update * Add support for displaying jobs in MentionList * Handle numbers and value=0 better * Keep description reactive This shouldn't work? The snapshot should be the reactive one? I don't fucking know * Send locale to api with search query * Delete getLocale.tsx We didn't actually use this * Fix build errors * Override peer dependencies for tiptap mentions They haven't fixed the suggestion plugin, so we have to use a beta version * Fix background-color on CharacterRep * Tiptap updates (#343) * Reinstantiate editor on changes We can't dynamically update the content, so we have to recreate the Editor whenever something changes (page loads and updates) * Fix import @tiptap/core is different than @tiptap/react, who knew * Added several Tiptap components * Added a Remix icon that isn't in remixicon-react * Add colors for highlights * Add ToolbarButton component This is to standardize adding Toolbar icons so it wasn't a miserable mess in the Editor file * Add extensions and implement ToolbarButton * Remove unused code * Use party prop and add keys We always want to use the party in props until the transformer work is done and our source of truth is more reliable. Also, we are using keys to ensure that the component reloads on new page. * Component cleanup * Always use props.party * Ensure content gets reset when edits are committed Here, we do some tactical bandaid fixes to ensure that when the user saves data to the server, the editor will show the freshest data in both editable and read-only mode. In the Editor, its as easy as calling the setContent command in a useEffect hook when the content changes. In the party, we are saving party in a state and passing it down to the components via props. This is because the party prop we get from pages is only from the first time the server loaded data, so any edits are not reflected. The app state should have the latest updates, but due to reasons I don't completely understand, it is showing the old state first and then the one we want, causing the Editor to get stuck on old data. By storing the party in a state, we can populate the state from the server when the component mounts, then update it whenever the user saves data since all party data is saved in that component. * Fix build errors * Fix icon path * Remove duplicate binding * Fix styles --- components/common/Editor/index.module.scss | 21 +++++++++++++++------ styles/themes.scss | 16 ++++++++++++++++ styles/variables.scss | 22 ++++++++++++++++++++++ 3 files changed, 53 insertions(+), 6 deletions(-) diff --git a/components/common/Editor/index.module.scss b/components/common/Editor/index.module.scss index 6be160ed..0a2b476b 100644 --- a/components/common/Editor/index.module.scss +++ b/components/common/Editor/index.module.scss @@ -74,21 +74,21 @@ h1 { font-size: $font-xlarge; font-weight: $medium; - margin: $unit 0; + margin: $unit-2x 0; text-align: left; } h2 { font-size: $font-large; font-weight: $medium; - margin: $unit 0; + margin: $unit-2x 0; text-align: left; } h3 { font-size: $font-regular; font-weight: $medium; - margin: $unit 0; + margin: $unit-2x 0; text-align: left; } @@ -96,6 +96,7 @@ border-radius: $item-corner-small; background: var(--highlight-bg); color: var(--highlight-text); + font-weight: $normal; padding: 1px $unit-fourth; } @@ -116,15 +117,18 @@ .mention { border-radius: $item-corner-small; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), - 0 1px 0px rgba(0, 0, 0, 0.25); - background: var(--card-bg); + 0 1px 0px var(--null-shadow); + background: var(--null-bg); color: var(--text-primary); font-weight: $medium; font-size: 15px; padding: 1px $unit-half; + transition: all 0.1s ease-out; &:hover { - background: var(--card-bg-hover); + background: var(--null-bg-hover); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), + 0 1px 0px var(--null-shadow-hover); text-decoration: none; cursor: pointer; } @@ -136,6 +140,7 @@ color: var(--fire-text); &:hover { + background: var(--fire-bg-hover); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 0px var(--fire-shadow-hover); color: var(--fire-text-hover); @@ -149,6 +154,7 @@ color: var(--water-text); &:hover { + background: var(--water-bg-hover); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 0px var(--water-shadow-hover); color: var(--water-text-hover); @@ -162,6 +168,7 @@ color: var(--earth-text); &:hover { + background: var(--earth-bg-hover); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 0px var(--earth-shadow-hover); color: var(--earth-text-hover); @@ -188,6 +195,7 @@ color: var(--dark-text); &:hover { + background: var(--dark-bg-hover); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 0px var(--dark-shadow-hover); color: var(--dark-text-hover); @@ -201,6 +209,7 @@ color: var(--light-text); &:hover { + background: var(--light-bg-hover); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 0px var(--light-shadow-hover); color: var(--light-text-hover); diff --git a/styles/themes.scss b/styles/themes.scss index 9beac5a3..5f256bd6 100644 --- a/styles/themes.scss +++ b/styles/themes.scss @@ -159,6 +159,14 @@ --grid-border-color: #{$grid--border--color--light}; // Light - Element theming + --null-bg: #{$null--bg--light}; + --null-bg-hover: #{$null--bg--hover--light}; + --null-text: #{$null--text--light}; + --null-raid-text: #{$null--text--raid--light}; + --null-text-hover: #{$null--text--hover--light}; + --null-shadow: #{$null--shadow--light}; + --null-shadow-hover: #{$null--shadow--light--hover}; + --wind-bg: #{$wind--bg--light}; --wind-bg-hover: #{$wind--bg--hover--light}; --wind-text: #{$wind--text--light}; @@ -373,6 +381,14 @@ --grid-border-color: #{$grid--border--color--dark}; // Dark - Element theming + --null-bg: #{$null--bg--dark}; + --null-bg-hover: #{$null--bg--hover--dark}; + --null-text: #{$null--text--dark}; + --null-raid-text: #{$null--text--raid--dark}; + --null-text-hover: #{$null--text--hover--dark}; + --null-shadow: #{$null--shadow--dark}; + --null-shadow-hover: #{$null--shadow--dark--hover}; + --wind-bg: #{$wind--bg--dark}; --wind-bg-hover: #{$wind--bg--hover--dark}; --wind-text: #{$wind--text--dark}; diff --git a/styles/variables.scss b/styles/variables.scss index 415b5e41..8877117a 100644 --- a/styles/variables.scss +++ b/styles/variables.scss @@ -464,6 +464,28 @@ $wind--shadow--dark: fade-out($wind-text-20, 0.3); $wind--shadow--light--hover: fade-out($wind-text-00, 0.3); $wind--shadow--dark--hover: fade-out($wind-text-00, 0.3); +// Color Definitions: Element / Null +$null--bg--light: $grey-75; +$null--bg--dark: $grey-40; + +$null--bg--hover--light: $grey-70; +$null--bg--hover--dark: $grey-30; + +$null--text--light: $grey-40; +$null--text--dark: $grey-90; + +$null--text--raid--light: $grey-40; +$null--text--raid--dark: $grey-90; + +$null--text--hover--light: $grey-20; +$null--text--hover--dark: $grey-90; + +$null--shadow--light: fade-out($grey-60, 0.3); +$null--shadow--dark: fade-out($grey-25, 0.3); + +$null--shadow--light--hover: fade-out($grey-50, 0.3); +$null--shadow--dark--hover: fade-out($grey-10, 0.3); + // Color Definitions: Element / Fire $fire--bg--light: $fire-bg-10; $fire--bg--dark: $fire-bg-10; From 65bc7100c4c7b4492266b09d9ea97335e736f90f Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Thu, 6 Jul 2023 17:09:21 -0700 Subject: [PATCH 04/15] Deploy transcendence fixes (#351) * Rich text editor and support for tagging objects (#340) * Preliminary work around making an Element type * Disabled Youtube code for now * Clean description with DOMPurify * Update GranblueElement with slug * Add new api endpoint for searching all resources * Add new variables and themes * Remove fixed height on html tag for now * Update README.md We renamed the folders for character images from `chara-` to `character-` * Add no results string * Add tiptap and associated packages * Update .gitignore * Update components that use character images * Add Editor component This commit adds the bulk of the code for our new rich-text editor. The Editor component will be used to edit and display rich text via Tiptap. * Add mention components This adds the code required for us to mention objects in rich text fields like team descriptions. The mentionSuggestion util fetches data from the server and serves it to MentionList for the user to select, then inserts it into the Editor as a token. * Implements Editor in edit team and team footer This implements the Editor component in EditPartyModal and PartyFooter. In PartyFooter, it is read-only. * Remove min-width on tokens * Add rudimentary conversion for old descriptions Old descriptions just translate as a blob of text, so we try to insert some paragraphs and newlines to keep things presentable and lessen the load if users decide to update * Add support for displaying jobs in MentionList * Handle numbers and value=0 better * Keep description reactive This shouldn't work? The snapshot should be the reactive one? I don't fucking know * Send locale to api with search query * Delete getLocale.tsx We didn't actually use this * Fix build errors * Override peer dependencies for tiptap mentions They haven't fixed the suggestion plugin, so we have to use a beta version * Fix background-color on CharacterRep * Tiptap updates (#343) * Reinstantiate editor on changes We can't dynamically update the content, so we have to recreate the Editor whenever something changes (page loads and updates) * Fix import @tiptap/core is different than @tiptap/react, who knew * Added several Tiptap components * Added a Remix icon that isn't in remixicon-react * Add colors for highlights * Add ToolbarButton component This is to standardize adding Toolbar icons so it wasn't a miserable mess in the Editor file * Add extensions and implement ToolbarButton * Remove unused code * Use party prop and add keys We always want to use the party in props until the transformer work is done and our source of truth is more reliable. Also, we are using keys to ensure that the component reloads on new page. * Component cleanup * Always use props.party * Ensure content gets reset when edits are committed Here, we do some tactical bandaid fixes to ensure that when the user saves data to the server, the editor will show the freshest data in both editable and read-only mode. In the Editor, its as easy as calling the setContent command in a useEffect hook when the content changes. In the party, we are saving party in a state and passing it down to the components via props. This is because the party prop we get from pages is only from the first time the server loaded data, so any edits are not reflected. The app state should have the latest updates, but due to reasons I don't completely understand, it is showing the old state first and then the one we want, causing the Editor to get stuck on old data. By storing the party in a state, we can populate the state from the server when the component mounts, then update it whenever the user saves data since all party data is saved in that component. * Fix build errors * Fix icon path * Remove duplicate binding * Fix styles * Update transcendence components to work with CSS modules (#350) * Update transcendence components to use CSS modules * Fix summon transcendence Summon transcendence was doing something wonky. This adapts the updateUncap endpoint method to make it a little bit clearer whats going on. * Add toolbar localizations * Allow translation of Heading icons * Show localized placeholder for team name * Add placeholder extension * Add placeholder to party description * Ensure name modification works right Needed a null check? for some reason? --- components/common/Editor/index.module.scss | 8 +++ components/common/Editor/index.tsx | 11 +++- components/common/Popover/index.module.scss | 6 -- .../common/PopoverContent/index.module.scss | 5 ++ components/common/ToolbarButton/index.tsx | 8 ++- components/party/EditPartyModal/index.tsx | 5 +- components/summon/SummonGrid/index.tsx | 8 +-- .../TranscendenceFragment/index.module.scss | 14 ++--- .../uncap/TranscendenceFragment/index.tsx | 18 +++--- .../TranscendencePopover/index.module.scss | 62 +++++++++++++++++-- .../uncap/TranscendencePopover/index.tsx | 18 +++--- components/uncap/TranscendenceStar/index.tsx | 11 ++-- package-lock.json | 14 +++++ package.json | 1 + public/locales/en/common.json | 13 ++++ public/locales/ja/common.json | 13 ++++ utils/api.tsx | 11 ++++ 17 files changed, 177 insertions(+), 49 deletions(-) diff --git a/components/common/Editor/index.module.scss b/components/common/Editor/index.module.scss index 0a2b476b..fef838f1 100644 --- a/components/common/Editor/index.module.scss +++ b/components/common/Editor/index.module.scss @@ -36,6 +36,14 @@ outline: none; } + p.empty:first-child::before { + color: var(--text-tertiary); + content: attr(data-placeholder); + float: left; + height: 0; + pointer-events: none; + } + &.bound { background-color: var(--input-bound-bg); diff --git a/components/common/Editor/index.tsx b/components/common/Editor/index.tsx index 00404ae2..f99c1d56 100644 --- a/components/common/Editor/index.tsx +++ b/components/common/Editor/index.tsx @@ -1,9 +1,12 @@ import { ComponentProps, useCallback, useEffect } from 'react' -import { useRouter } from 'next/router' import { useEditor, EditorContent } from '@tiptap/react' +import { useRouter } from 'next/router' +import { useTranslation } from 'next-i18next' + import StarterKit from '@tiptap/starter-kit' import Link from '@tiptap/extension-link' import Highlight from '@tiptap/extension-highlight' +import Placeholder from '@tiptap/extension-placeholder' import Typography from '@tiptap/extension-typography' import Youtube from '@tiptap/extension-youtube' import CustomMention from '~extensions/CustomMention' @@ -45,6 +48,8 @@ const Editor = ({ const router = useRouter() const locale = router.locale || 'en' + const { t } = useTranslation('common') + useEffect(() => { editor?.commands.setContent(formatContent(content)) }, [content]) @@ -72,6 +77,10 @@ const Editor = ({ }), Link, Highlight, + Placeholder.configure({ + emptyEditorClass: styles.empty, + placeholder: t('modals.edit_team.placeholders.description'), + }), Typography, CustomMention.configure({ renderLabel({ options, node }) { diff --git a/components/common/Popover/index.module.scss b/components/common/Popover/index.module.scss index 8096d900..67699f31 100644 --- a/components/common/Popover/index.module.scss +++ b/components/common/Popover/index.module.scss @@ -21,12 +21,6 @@ &.flush { padding: 0; } - - .Arrow { - fill: var(--dialog-bg); - filter: drop-shadow(0px 1px 1px rgb(0 0 0 / 0.18)); - margin-top: -1px; - } } .trigger { diff --git a/components/common/PopoverContent/index.module.scss b/components/common/PopoverContent/index.module.scss index e69de29b..31fd8e86 100644 --- a/components/common/PopoverContent/index.module.scss +++ b/components/common/PopoverContent/index.module.scss @@ -0,0 +1,5 @@ +.arrow { + fill: var(--dialog-bg); + filter: drop-shadow(0px 1px 1px rgb(0 0 0 / 0.18)); + margin-top: -1px; +} diff --git a/components/common/ToolbarButton/index.tsx b/components/common/ToolbarButton/index.tsx index 363d4187..7b780ac2 100644 --- a/components/common/ToolbarButton/index.tsx +++ b/components/common/ToolbarButton/index.tsx @@ -24,7 +24,13 @@ const ToolbarIcon = ({ editor, action, level, icon, onClick }: Props) => { }) return ( - + diff --git a/components/party/EditPartyModal/index.tsx b/components/party/EditPartyModal/index.tsx index e794fdca..26103c51 100644 --- a/components/party/EditPartyModal/index.tsx +++ b/components/party/EditPartyModal/index.tsx @@ -297,7 +297,8 @@ const EditPartyModal = ({ // Methods: Modification checking function hasBeenModified() { const nameChanged = - name !== party.name && !(name === '' && party.name === undefined) + name !== party.name && + !(name === '' && (party.name === undefined || party.name === null)) const descriptionChanged = description !== party.description && !(description === '' && party.description === undefined) @@ -433,7 +434,7 @@ const EditPartyModal = ({ const nameField = ( { try { if (stage != previousTranscendenceStages[position]) - await api.endpoints.grid_summons - .update(id, payload) - .then((response) => { - storeGridSummon(response.data.grid_summon) - }) + await api.updateTranscendence('summon', id, stage).then((response) => { + storeGridSummon(response.data.grid_summon) + }) } catch (error) { console.error(error) diff --git a/components/uncap/TranscendenceFragment/index.module.scss b/components/uncap/TranscendenceFragment/index.module.scss index bab27223..8562c6b2 100644 --- a/components/uncap/TranscendenceFragment/index.module.scss +++ b/components/uncap/TranscendenceFragment/index.module.scss @@ -1,4 +1,4 @@ -.Fragment { +.fragment { $degrees: 72deg; $origWidth: 29px; @@ -28,11 +28,11 @@ cursor: pointer; } - &.Visible { + &.visible { opacity: 1; } - &.Stage1 { + &.stage1 { top: 3px; left: 18px; @@ -41,7 +41,7 @@ // } } - &.Stage2 { + &.stage2 { top: 10px; left: 27px; transform: rotate($degrees); @@ -51,7 +51,7 @@ // } } - &.Stage3 { + &.stage3 { top: 21px; left: 24px; transform: rotate($degrees * 2); @@ -61,7 +61,7 @@ // } } - &.Stage4 { + &.stage4 { top: 21px; left: 12px; transform: rotate($degrees * 3); @@ -71,7 +71,7 @@ // } } - &.Stage5 { + &.stage5 { top: 10px; left: 8px; transform: rotate($degrees * 4); diff --git a/components/uncap/TranscendenceFragment/index.tsx b/components/uncap/TranscendenceFragment/index.tsx index 769b3696..852353d5 100644 --- a/components/uncap/TranscendenceFragment/index.tsx +++ b/components/uncap/TranscendenceFragment/index.tsx @@ -1,5 +1,5 @@ import React from 'react' -import classnames from 'classnames' +import classNames from 'classnames' import styles from './index.module.scss' @@ -18,14 +18,14 @@ const TranscendenceFragment = ({ onClick, onHover, }: Props) => { - const classes = classnames({ - Fragment: true, - Visible: visible, - Stage1: stage === 1, - Stage2: stage === 2, - Stage3: stage === 3, - Stage4: stage === 4, - Stage5: stage === 5, + const classes = classNames({ + [styles.fragment]: true, + [styles.visible]: visible, + [styles.stage1]: stage === 1, + [styles.stage2]: stage === 2, + [styles.stage3]: stage === 3, + [styles.stage4]: stage === 4, + [styles.stage5]: stage === 5, }) function handleClick() { diff --git a/components/uncap/TranscendencePopover/index.module.scss b/components/uncap/TranscendencePopover/index.module.scss index fb09e919..311138fe 100644 --- a/components/uncap/TranscendencePopover/index.module.scss +++ b/components/uncap/TranscendencePopover/index.module.scss @@ -1,11 +1,20 @@ -.Transcendence.Popover { - align-items: center; +.transcendence { + display: flex; flex-direction: column; gap: $unit-half; - display: flex; + align-items: center; + justify-content: center; width: $unit-10x; height: $unit-10x; - justify-content: center; + + animation: scaleIn $duration-zoom ease-out; + background: var(--dialog-bg); + border-radius: $card-corner; + border: 0.5px solid rgba(0, 0, 0, 0.18); + box-shadow: 0 1px 4px rgba(0, 0, 0, 0.24); + outline: none; + padding: $unit; + transform-origin: var(--radix-popover-content-transform-origin); z-index: 32; &.open { @@ -18,7 +27,50 @@ font-weight: $medium; } - .Pending { + .pending { color: $yellow; } } + +@keyframes scaleIn { + 0% { + opacity: 0; + transform: scale(0); + } + 20% { + opacity: 0.2; + transform: scale(0.4); + } + 40% { + opacity: 0.4; + transform: scale(0.8); + } + 60% { + opacity: 0.6; + transform: scale(1); + } + 65% { + opacity: 0.65; + transform: scale(1.1); + } + 70% { + opacity: 0.7; + transform: scale(1); + } + 75% { + opacity: 0.75; + transform: scale(0.98); + } + 80% { + opacity: 0.8; + transform: scale(1.02); + } + 90% { + opacity: 0.9; + transform: scale(0.96); + } + 100% { + opacity: 1; + transform: scale(1); + } +} diff --git a/components/uncap/TranscendencePopover/index.tsx b/components/uncap/TranscendencePopover/index.tsx index 69c8fe38..8d11b484 100644 --- a/components/uncap/TranscendencePopover/index.tsx +++ b/components/uncap/TranscendencePopover/index.tsx @@ -2,8 +2,8 @@ import React, { PropsWithChildren, useEffect, useState } from 'react' import { useTranslation } from 'next-i18next' import classNames from 'classnames' +import { Popover } from '@radix-ui/react-popover' import { - Popover, PopoverAnchor, PopoverContent, } from '~components/common/PopoverContent' @@ -40,12 +40,8 @@ const TranscendencePopover = ({ const popoverRef = React.createRef() - const classes = classNames({ - Transcendence: true, - }) - const levelClasses = classNames({ - Pending: stage != currentStage, + [styles.pending]: stage != currentStage, }) useEffect(() => { @@ -77,16 +73,20 @@ const TranscendencePopover = ({ return ( {children} - + -

+

{t('level')}  {baseLevel + 10 * currentStage}

diff --git a/components/uncap/TranscendenceStar/index.tsx b/components/uncap/TranscendenceStar/index.tsx index 8f426549..7c3b3fa0 100644 --- a/components/uncap/TranscendenceStar/index.tsx +++ b/components/uncap/TranscendenceStar/index.tsx @@ -46,9 +46,12 @@ const TranscendenceStar = ({ [styles.stage5]: stage === 5, }) - const baseImageClasses = classnames(className, { - [styles.figure]: true, - }) + const baseImageClasses = classnames( + { + [styles.figure]: true, + }, + className?.split(' ').map((c) => styles[c]) + ) useEffect(() => { setVisibleStage(stage) @@ -87,7 +90,7 @@ const TranscendenceStar = ({ onMouseLeave={interactive ? handleMouseLeave : () => {}} tabIndex={tabIndex} > -
+
{[...Array(NUM_FRAGMENTS)].map((e, i) => { const loopStage = i + 1 return interactive ? ( diff --git a/package-lock.json b/package-lock.json index 27b232b2..f3cf9fe4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -23,6 +23,7 @@ "@tiptap/extension-highlight": "^2.0.3", "@tiptap/extension-link": "^2.0.3", "@tiptap/extension-mention": "^2.0.3", + "@tiptap/extension-placeholder": "^2.0.3", "@tiptap/extension-typography": "^2.0.3", "@tiptap/extension-youtube": "^2.0.3", "@tiptap/pm": "^2.0.3", @@ -7348,6 +7349,19 @@ "@tiptap/core": "^2.0.0" } }, + "node_modules/@tiptap/extension-placeholder": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@tiptap/extension-placeholder/-/extension-placeholder-2.0.3.tgz", + "integrity": "sha512-Z42jo0termRAf0S0L8oxrts94IWX5waU4isS2CUw8xCUigYyCFslkhQXkWATO1qRbjNFLKN2C9qvCgGf4UeBrw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/ueberdosis" + }, + "peerDependencies": { + "@tiptap/core": "^2.0.0", + "@tiptap/pm": "^2.0.0" + } + }, "node_modules/@tiptap/extension-strike": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/@tiptap/extension-strike/-/extension-strike-2.0.3.tgz", diff --git a/package.json b/package.json index 202aa676..840c3cef 100644 --- a/package.json +++ b/package.json @@ -30,6 +30,7 @@ "@tiptap/extension-highlight": "^2.0.3", "@tiptap/extension-link": "^2.0.3", "@tiptap/extension-mention": "^2.0.3", + "@tiptap/extension-placeholder": "^2.0.3", "@tiptap/extension-typography": "^2.0.3", "@tiptap/extension-youtube": "^2.0.3", "@tiptap/pm": "^2.0.3", diff --git a/public/locales/en/common.json b/public/locales/en/common.json index 149ded99..529fe5b0 100644 --- a/public/locales/en/common.json +++ b/public/locales/en/common.json @@ -557,6 +557,19 @@ "tokens": { "remix": "Remixed" }, + "toolbar": { + "tooltips": { + "bold": "Bold", + "italic": "Italic", + "strike": "Strikethrough", + "highlight": "Highlight", + "link": "Add a link", + "youtube": "Add a Youtube video", + "heading": "Heading {{level}}", + "bulletList": "Bullet list", + "orderedList": "Numbered list" + } + }, "tooltips": { "copy_url": "Copy the URL to this team", "new": "Create a new team", diff --git a/public/locales/ja/common.json b/public/locales/ja/common.json index 94169382..8c9fe7e4 100644 --- a/public/locales/ja/common.json +++ b/public/locales/ja/common.json @@ -555,6 +555,19 @@ "tokens": { "remix": "リミックスされた" }, + "toolbar": { + "tooltips": { + "bold": "太字", + "italic": "斜体", + "strike": "取り消し線", + "highlight": "ハイライト", + "link": "リンクを挿入", + "youtube": "Youtube動画を埋め込む", + "heading": "見出し {{level}}", + "bulletList": "箇条書き", + "orderedList": "番号リスト" + } + }, "tooltips": { "copy_url": "この編成のURLをコピーする", "new": "新しい編成を作成する", diff --git a/utils/api.tsx b/utils/api.tsx index bd55cd0b..63ac5ba4 100644 --- a/utils/api.tsx +++ b/utils/api.tsx @@ -179,6 +179,17 @@ class Api { } }) } + + updateTranscendence(resource: 'character'|'summon', id: string, value: number) { + const pluralized = resource + 's' + const resourceUrl = `${this.url}/${pluralized}/update_uncap` + return axios.post(resourceUrl, { + [resource]: { + id: id, + transcendence_step: value + } + }) + } userInfo(id: string) { const resourceUrl = `${this.url}/users/info/${id}` From f7f723b3f406d3971bf5c3cd49344e5805813920 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Thu, 6 Jul 2023 19:23:40 -0700 Subject: [PATCH 05/15] Tactical mobile fixes (#352) * Rich text editor and support for tagging objects (#340) * Preliminary work around making an Element type * Disabled Youtube code for now * Clean description with DOMPurify * Update GranblueElement with slug * Add new api endpoint for searching all resources * Add new variables and themes * Remove fixed height on html tag for now * Update README.md We renamed the folders for character images from `chara-` to `character-` * Add no results string * Add tiptap and associated packages * Update .gitignore * Update components that use character images * Add Editor component This commit adds the bulk of the code for our new rich-text editor. The Editor component will be used to edit and display rich text via Tiptap. * Add mention components This adds the code required for us to mention objects in rich text fields like team descriptions. The mentionSuggestion util fetches data from the server and serves it to MentionList for the user to select, then inserts it into the Editor as a token. * Implements Editor in edit team and team footer This implements the Editor component in EditPartyModal and PartyFooter. In PartyFooter, it is read-only. * Remove min-width on tokens * Add rudimentary conversion for old descriptions Old descriptions just translate as a blob of text, so we try to insert some paragraphs and newlines to keep things presentable and lessen the load if users decide to update * Add support for displaying jobs in MentionList * Handle numbers and value=0 better * Keep description reactive This shouldn't work? The snapshot should be the reactive one? I don't fucking know * Send locale to api with search query * Delete getLocale.tsx We didn't actually use this * Fix build errors * Override peer dependencies for tiptap mentions They haven't fixed the suggestion plugin, so we have to use a beta version * Fix background-color on CharacterRep * Tiptap updates (#343) * Reinstantiate editor on changes We can't dynamically update the content, so we have to recreate the Editor whenever something changes (page loads and updates) * Fix import @tiptap/core is different than @tiptap/react, who knew * Added several Tiptap components * Added a Remix icon that isn't in remixicon-react * Add colors for highlights * Add ToolbarButton component This is to standardize adding Toolbar icons so it wasn't a miserable mess in the Editor file * Add extensions and implement ToolbarButton * Remove unused code * Use party prop and add keys We always want to use the party in props until the transformer work is done and our source of truth is more reliable. Also, we are using keys to ensure that the component reloads on new page. * Component cleanup * Always use props.party * Ensure content gets reset when edits are committed Here, we do some tactical bandaid fixes to ensure that when the user saves data to the server, the editor will show the freshest data in both editable and read-only mode. In the Editor, its as easy as calling the setContent command in a useEffect hook when the content changes. In the party, we are saving party in a state and passing it down to the components via props. This is because the party prop we get from pages is only from the first time the server loaded data, so any edits are not reflected. The app state should have the latest updates, but due to reasons I don't completely understand, it is showing the old state first and then the one we want, causing the Editor to get stuck on old data. By storing the party in a state, we can populate the state from the server when the component mounts, then update it whenever the user saves data since all party data is saved in that component. * Fix build errors * Fix icon path * Remove duplicate binding * Fix styles * Update transcendence components to work with CSS modules (#350) * Update transcendence components to use CSS modules * Fix summon transcendence Summon transcendence was doing something wonky. This adapts the updateUncap endpoint method to make it a little bit clearer whats going on. * Add toolbar localizations * Allow translation of Heading icons * Show localized placeholder for team name * Add placeholder extension * Add placeholder to party description * Ensure name modification works right Needed a null check? for some reason? * Small fix for some modals on mobile This fixes the slide up animation and the end point so that modals are actually visible on mobile. Ones that scroll still don't work great. * Fix TableField components on mobile * Put viewport meta tag in _app * Some fixes for scrollable dialogs on mobile This is 100% not going to scale to devices that are not my iPhone 14 Pro Max, but I can't get env variables working in CSS and something is better than nothing for right now. --- components/about/AboutHead/index.tsx | 2 +- .../common/DialogContent/index.module.scss | 131 +++--------------- components/common/DialogContent/index.tsx | 12 +- .../common/DialogFooter/index.module.scss | 7 + components/common/Select/index.module.scss | 4 + components/common/Slider/index.module.scss | 4 + components/common/SliderTableField/index.tsx | 1 + .../common/TableField/index.module.scss | 8 ++ .../filters/FilterModal/index.module.scss | 1 + components/filters/FilterModal/index.tsx | 3 +- components/head/NewHead/index.tsx | 2 +- components/head/ProfileHead/index.tsx | 2 +- components/head/SavedHead/index.tsx | 2 +- components/head/TeamsHead/index.tsx | 1 - components/party/PartyHead/index.tsx | 2 +- pages/_app.tsx | 37 +++-- 16 files changed, 88 insertions(+), 131 deletions(-) diff --git a/components/about/AboutHead/index.tsx b/components/about/AboutHead/index.tsx index 0aa45ec7..e4092694 100644 --- a/components/about/AboutHead/index.tsx +++ b/components/about/AboutHead/index.tsx @@ -26,7 +26,7 @@ const AboutHead = ({ page }: Props) => { name="description" content={t(`page.descriptions.${currentPage}`)} /> - + {/* OpenGraph */} diff --git a/components/common/DialogContent/index.module.scss b/components/common/DialogContent/index.module.scss index 375acb76..92df55c2 100644 --- a/components/common/DialogContent/index.module.scss +++ b/components/common/DialogContent/index.module.scss @@ -13,6 +13,14 @@ color: inherit; z-index: 10; + @include breakpoint(phone) { + place-items: flex-end; + overflow-y: hidden; + + &.filter { + } + } + .dialogContent { $multiplier: 4; @@ -51,11 +59,11 @@ border-bottom-left-radius: 0; border-bottom-right-radius: 0; min-width: inherit; - min-height: 90vh; + min-height: inherit; transform: initial; left: 0; right: 0; - top: 5vh; + top: $unit-10x; height: auto; width: 100%; } @@ -101,110 +109,6 @@ overflow-y: auto; } } - - &.Conflict { - $weapon-diameter: 14rem; - - .Content { - display: flex; - flex-direction: column; - gap: $unit-4x; - padding: $unit-4x $unit-4x $unit-2x $unit-4x; - - & > p { - font-size: $font-regular; - line-height: 1.4; - - strong { - font-weight: $bold; - } - - &:lang(ja) { - line-height: 1.4; - } - } - } - - .weapon, - .character { - display: flex; - flex-direction: column; - gap: $unit; - text-align: center; - width: $weapon-diameter; - font-weight: $medium; - - img { - border-radius: 1rem; - width: $weapon-diameter; - height: auto; - } - - span { - line-height: 1.3; - } - } - - .Diagram { - display: grid; - grid-template-columns: 1fr auto 1fr; - align-items: flex-start; - - &.CharacterDiagram { - align-items: center; - } - - ul { - align-items: center; - display: flex; - flex-direction: column; - gap: $unit-2x; - } - - .wrapper { - display: flex; - justify-content: center; - width: 100%; - } - - .arrow { - align-items: center; - color: $grey-55; - display: flex; - font-size: 4rem; - text-align: center; - height: $weapon-diameter; - justify-content: center; - } - } - - footer { - display: flex; - flex-direction: row; - gap: $unit; - - .Button { - font-size: $font-regular; - padding: ($unit * 1.5) ($unit * 2); - width: 100%; - - &.btn-disabled { - background: $grey-90; - color: $grey-70; - cursor: not-allowed; - } - - &:not(.btn-disabled) { - background: $grey-90; - color: $grey-50; - - &:hover { - background: $grey-80; - } - } - } - } - } } @keyframes openModalDesktop { @@ -221,11 +125,20 @@ @keyframes slideUp { 0% { - transform: translate(0%, 100%); + transform: translateY(400px); + animation-timing-function: ease-out; + } + 60% { + transform: translateY(-30px); + animation-timing-function: ease-in; + } + 80% { + transform: translateY(10px); + animation-timing-function: ease-out; } - 100% { - transform: translate(0, 0%); + transform: translateY(0px); + animation-timing-function: ease-in; } } } diff --git a/components/common/DialogContent/index.tsx b/components/common/DialogContent/index.tsx index 53703c7d..44823b3b 100644 --- a/components/common/DialogContent/index.tsx +++ b/components/common/DialogContent/index.tsx @@ -11,6 +11,7 @@ interface Props React.DialogHTMLAttributes, HTMLDivElement > { + wrapperClassName?: string headerref?: React.RefObject footerref?: React.RefObject scrollable?: boolean @@ -127,7 +128,16 @@ const DialogContent = React.forwardRef(function Dialog( return ( - + styles[className]) + )} + > { max={props.max} step={props.step} value={[props.value ? props.value : 0]} + className="table" onValueChange={handleValueChange} onValueCommit={handleValueCommit} /> diff --git a/components/common/TableField/index.module.scss b/components/common/TableField/index.module.scss index de900793..e48b5328 100644 --- a/components/common/TableField/index.module.scss +++ b/components/common/TableField/index.module.scss @@ -36,6 +36,14 @@ } } + &.switch { + @include breakpoint(phone) { + align-items: center; + flex-direction: row; + justify-content: space-between; + } + } + .left { align-items: center; display: flex; diff --git a/components/filters/FilterModal/index.module.scss b/components/filters/FilterModal/index.module.scss index e2b68ed2..c1a55e87 100644 --- a/components/filters/FilterModal/index.module.scss +++ b/components/filters/FilterModal/index.module.scss @@ -39,5 +39,6 @@ @include breakpoint(phone) { gap: $unit-4x; + margin-bottom: $unit * 24; } } diff --git a/components/filters/FilterModal/index.tsx b/components/filters/FilterModal/index.tsx index d46cd0cb..ce73f588 100644 --- a/components/filters/FilterModal/index.tsx +++ b/components/filters/FilterModal/index.tsx @@ -402,7 +402,8 @@ const FilterModal = (props: Props) => { {props.children} { {/* HTML */} {t('page.titles.new')} - + {/* OpenGraph */} diff --git a/components/head/ProfileHead/index.tsx b/components/head/ProfileHead/index.tsx index 293cab5a..7e3b61a8 100644 --- a/components/head/ProfileHead/index.tsx +++ b/components/head/ProfileHead/index.tsx @@ -20,7 +20,7 @@ const ProfileHead = ({ user }: Props) => { username: user.username, })} /> - + {/* OpenGraph */} diff --git a/components/head/SavedHead/index.tsx b/components/head/SavedHead/index.tsx index 75821047..b87f349f 100644 --- a/components/head/SavedHead/index.tsx +++ b/components/head/SavedHead/index.tsx @@ -9,7 +9,7 @@ const SavedHead = () => { return ( {t('page.titles.saved')} - + diff --git a/components/head/TeamsHead/index.tsx b/components/head/TeamsHead/index.tsx index 66624a2f..a2aca1d2 100644 --- a/components/head/TeamsHead/index.tsx +++ b/components/head/TeamsHead/index.tsx @@ -11,7 +11,6 @@ const TeamsHead = () => { {/* HTML */} {t('page.titles.discover')} - {/* OpenGraph */} diff --git a/components/party/PartyHead/index.tsx b/components/party/PartyHead/index.tsx index 7971de81..34590904 100644 --- a/components/party/PartyHead/index.tsx +++ b/components/party/PartyHead/index.tsx @@ -32,7 +32,7 @@ const PartyHead = ({ party, meta }: Props) => { raidName: party.raid ? party.raid.name[locale] : '', })} /> - + {/* OpenGraph */} diff --git a/pages/_app.tsx b/pages/_app.tsx index 60381287..6f3c64eb 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -1,4 +1,5 @@ import { appWithTranslation } from 'next-i18next' +import Head from 'next/head' import Link from 'next/link' import { useTranslation } from 'next-i18next' import { get } from 'local-storage' @@ -131,20 +132,28 @@ function MyApp({ Component, pageProps }: AppProps) { } return ( - - - - - {!appState.version ? ( - serverUnavailable() - ) : ( - - )} - - - - - + <> + + + + + + + + {!appState.version ? ( + serverUnavailable() + ) : ( + + )} + + + + + + ) } From 19c852c13b9cfbe16f32d8a8b74ec5c84379986e Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Thu, 6 Jul 2023 22:28:41 -0700 Subject: [PATCH 06/15] Hotfix to disable page tabs (#354) * Rich text editor and support for tagging objects (#340) * Preliminary work around making an Element type * Disabled Youtube code for now * Clean description with DOMPurify * Update GranblueElement with slug * Add new api endpoint for searching all resources * Add new variables and themes * Remove fixed height on html tag for now * Update README.md We renamed the folders for character images from `chara-` to `character-` * Add no results string * Add tiptap and associated packages * Update .gitignore * Update components that use character images * Add Editor component This commit adds the bulk of the code for our new rich-text editor. The Editor component will be used to edit and display rich text via Tiptap. * Add mention components This adds the code required for us to mention objects in rich text fields like team descriptions. The mentionSuggestion util fetches data from the server and serves it to MentionList for the user to select, then inserts it into the Editor as a token. * Implements Editor in edit team and team footer This implements the Editor component in EditPartyModal and PartyFooter. In PartyFooter, it is read-only. * Remove min-width on tokens * Add rudimentary conversion for old descriptions Old descriptions just translate as a blob of text, so we try to insert some paragraphs and newlines to keep things presentable and lessen the load if users decide to update * Add support for displaying jobs in MentionList * Handle numbers and value=0 better * Keep description reactive This shouldn't work? The snapshot should be the reactive one? I don't fucking know * Send locale to api with search query * Delete getLocale.tsx We didn't actually use this * Fix build errors * Override peer dependencies for tiptap mentions They haven't fixed the suggestion plugin, so we have to use a beta version * Fix background-color on CharacterRep * Tiptap updates (#343) * Reinstantiate editor on changes We can't dynamically update the content, so we have to recreate the Editor whenever something changes (page loads and updates) * Fix import @tiptap/core is different than @tiptap/react, who knew * Added several Tiptap components * Added a Remix icon that isn't in remixicon-react * Add colors for highlights * Add ToolbarButton component This is to standardize adding Toolbar icons so it wasn't a miserable mess in the Editor file * Add extensions and implement ToolbarButton * Remove unused code * Use party prop and add keys We always want to use the party in props until the transformer work is done and our source of truth is more reliable. Also, we are using keys to ensure that the component reloads on new page. * Component cleanup * Always use props.party * Ensure content gets reset when edits are committed Here, we do some tactical bandaid fixes to ensure that when the user saves data to the server, the editor will show the freshest data in both editable and read-only mode. In the Editor, its as easy as calling the setContent command in a useEffect hook when the content changes. In the party, we are saving party in a state and passing it down to the components via props. This is because the party prop we get from pages is only from the first time the server loaded data, so any edits are not reflected. The app state should have the latest updates, but due to reasons I don't completely understand, it is showing the old state first and then the one we want, causing the Editor to get stuck on old data. By storing the party in a state, we can populate the state from the server when the component mounts, then update it whenever the user saves data since all party data is saved in that component. * Fix build errors * Fix icon path * Remove duplicate binding * Fix styles * Update transcendence components to work with CSS modules (#350) * Update transcendence components to use CSS modules * Fix summon transcendence Summon transcendence was doing something wonky. This adapts the updateUncap endpoint method to make it a little bit clearer whats going on. * Add toolbar localizations * Allow translation of Heading icons * Show localized placeholder for team name * Add placeholder extension * Add placeholder to party description * Ensure name modification works right Needed a null check? for some reason? * Small fix for some modals on mobile This fixes the slide up animation and the end point so that modals are actually visible on mobile. Ones that scroll still don't work great. * Fix TableField components on mobile * Put viewport meta tag in _app * Some fixes for scrollable dialogs on mobile This is 100% not going to scale to devices that are not my iPhone 14 Pro Max, but I can't get env variables working in CSS and something is better than nothing for right now. * Disable tab pages --- pages/p/[party].tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/p/[party].tsx b/pages/p/[party].tsx index 10b08b75..00bc379a 100644 --- a/pages/p/[party].tsx +++ b/pages/p/[party].tsx @@ -90,8 +90,8 @@ const PartyRoute: React.FC = ({ break } - if (router.asPath !== '/new' && router.asPath !== '/') - router.replace(path, undefined, { shallow: true }) + // if (router.asPath !== '/new' && router.asPath !== '/') + // router.replace(path, undefined, { shallow: true }) } // Set the initial data from props From d0b1b7fde2a75b12760a53bf5b00858289455eb5 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sun, 16 Jul 2023 01:43:40 -0700 Subject: [PATCH 07/15] Add items from July 2023 Flash Gala (#356) * Rich text editor and support for tagging objects (#340) * Preliminary work around making an Element type * Disabled Youtube code for now * Clean description with DOMPurify * Update GranblueElement with slug * Add new api endpoint for searching all resources * Add new variables and themes * Remove fixed height on html tag for now * Update README.md We renamed the folders for character images from `chara-` to `character-` * Add no results string * Add tiptap and associated packages * Update .gitignore * Update components that use character images * Add Editor component This commit adds the bulk of the code for our new rich-text editor. The Editor component will be used to edit and display rich text via Tiptap. * Add mention components This adds the code required for us to mention objects in rich text fields like team descriptions. The mentionSuggestion util fetches data from the server and serves it to MentionList for the user to select, then inserts it into the Editor as a token. * Implements Editor in edit team and team footer This implements the Editor component in EditPartyModal and PartyFooter. In PartyFooter, it is read-only. * Remove min-width on tokens * Add rudimentary conversion for old descriptions Old descriptions just translate as a blob of text, so we try to insert some paragraphs and newlines to keep things presentable and lessen the load if users decide to update * Add support for displaying jobs in MentionList * Handle numbers and value=0 better * Keep description reactive This shouldn't work? The snapshot should be the reactive one? I don't fucking know * Send locale to api with search query * Delete getLocale.tsx We didn't actually use this * Fix build errors * Override peer dependencies for tiptap mentions They haven't fixed the suggestion plugin, so we have to use a beta version * Fix background-color on CharacterRep * Tiptap updates (#343) * Reinstantiate editor on changes We can't dynamically update the content, so we have to recreate the Editor whenever something changes (page loads and updates) * Fix import @tiptap/core is different than @tiptap/react, who knew * Added several Tiptap components * Added a Remix icon that isn't in remixicon-react * Add colors for highlights * Add ToolbarButton component This is to standardize adding Toolbar icons so it wasn't a miserable mess in the Editor file * Add extensions and implement ToolbarButton * Remove unused code * Use party prop and add keys We always want to use the party in props until the transformer work is done and our source of truth is more reliable. Also, we are using keys to ensure that the component reloads on new page. * Component cleanup * Always use props.party * Ensure content gets reset when edits are committed Here, we do some tactical bandaid fixes to ensure that when the user saves data to the server, the editor will show the freshest data in both editable and read-only mode. In the Editor, its as easy as calling the setContent command in a useEffect hook when the content changes. In the party, we are saving party in a state and passing it down to the components via props. This is because the party prop we get from pages is only from the first time the server loaded data, so any edits are not reflected. The app state should have the latest updates, but due to reasons I don't completely understand, it is showing the old state first and then the one we want, causing the Editor to get stuck on old data. By storing the party in a state, we can populate the state from the server when the component mounts, then update it whenever the user saves data since all party data is saved in that component. * Fix build errors * Fix icon path * Remove duplicate binding * Fix styles * Update transcendence components to work with CSS modules (#350) * Update transcendence components to use CSS modules * Fix summon transcendence Summon transcendence was doing something wonky. This adapts the updateUncap endpoint method to make it a little bit clearer whats going on. * Add toolbar localizations * Allow translation of Heading icons * Show localized placeholder for team name * Add placeholder extension * Add placeholder to party description * Ensure name modification works right Needed a null check? for some reason? * Small fix for some modals on mobile This fixes the slide up animation and the end point so that modals are actually visible on mobile. Ones that scroll still don't work great. * Fix TableField components on mobile * Put viewport meta tag in _app * Some fixes for scrollable dialogs on mobile This is 100% not going to scale to devices that are not my iPhone 14 Pro Max, but I can't get env variables working in CSS and something is better than nothing for right now. * Disable tab pages * Update with items from July 2023 Flash Gala ### Weapons - Beach Grynoth - Splash Howl ### Characters - Vaseraga (Summer) - Enyo (Summer) * Correct version * Add uncap event --- components/about/UpdatesPage/index.tsx | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/components/about/UpdatesPage/index.tsx b/components/about/UpdatesPage/index.tsx index 7fe4ee3e..f1d44f0f 100644 --- a/components/about/UpdatesPage/index.tsx +++ b/components/about/UpdatesPage/index.tsx @@ -57,6 +57,26 @@ const UpdatesPage = () => { return (

{common('about.segmented_control.updates')}

+ + Date: Sun, 30 Jul 2023 21:34:05 -0700 Subject: [PATCH 08/15] Add items from the July 2023 Legend Festival (#360) * Rich text editor and support for tagging objects (#340) * Preliminary work around making an Element type * Disabled Youtube code for now * Clean description with DOMPurify * Update GranblueElement with slug * Add new api endpoint for searching all resources * Add new variables and themes * Remove fixed height on html tag for now * Update README.md We renamed the folders for character images from `chara-` to `character-` * Add no results string * Add tiptap and associated packages * Update .gitignore * Update components that use character images * Add Editor component This commit adds the bulk of the code for our new rich-text editor. The Editor component will be used to edit and display rich text via Tiptap. * Add mention components This adds the code required for us to mention objects in rich text fields like team descriptions. The mentionSuggestion util fetches data from the server and serves it to MentionList for the user to select, then inserts it into the Editor as a token. * Implements Editor in edit team and team footer This implements the Editor component in EditPartyModal and PartyFooter. In PartyFooter, it is read-only. * Remove min-width on tokens * Add rudimentary conversion for old descriptions Old descriptions just translate as a blob of text, so we try to insert some paragraphs and newlines to keep things presentable and lessen the load if users decide to update * Add support for displaying jobs in MentionList * Handle numbers and value=0 better * Keep description reactive This shouldn't work? The snapshot should be the reactive one? I don't fucking know * Send locale to api with search query * Delete getLocale.tsx We didn't actually use this * Fix build errors * Override peer dependencies for tiptap mentions They haven't fixed the suggestion plugin, so we have to use a beta version * Fix background-color on CharacterRep * Tiptap updates (#343) * Reinstantiate editor on changes We can't dynamically update the content, so we have to recreate the Editor whenever something changes (page loads and updates) * Fix import @tiptap/core is different than @tiptap/react, who knew * Added several Tiptap components * Added a Remix icon that isn't in remixicon-react * Add colors for highlights * Add ToolbarButton component This is to standardize adding Toolbar icons so it wasn't a miserable mess in the Editor file * Add extensions and implement ToolbarButton * Remove unused code * Use party prop and add keys We always want to use the party in props until the transformer work is done and our source of truth is more reliable. Also, we are using keys to ensure that the component reloads on new page. * Component cleanup * Always use props.party * Ensure content gets reset when edits are committed Here, we do some tactical bandaid fixes to ensure that when the user saves data to the server, the editor will show the freshest data in both editable and read-only mode. In the Editor, its as easy as calling the setContent command in a useEffect hook when the content changes. In the party, we are saving party in a state and passing it down to the components via props. This is because the party prop we get from pages is only from the first time the server loaded data, so any edits are not reflected. The app state should have the latest updates, but due to reasons I don't completely understand, it is showing the old state first and then the one we want, causing the Editor to get stuck on old data. By storing the party in a state, we can populate the state from the server when the component mounts, then update it whenever the user saves data since all party data is saved in that component. * Fix build errors * Fix icon path * Remove duplicate binding * Fix styles * Update transcendence components to work with CSS modules (#350) * Update transcendence components to use CSS modules * Fix summon transcendence Summon transcendence was doing something wonky. This adapts the updateUncap endpoint method to make it a little bit clearer whats going on. * Add toolbar localizations * Allow translation of Heading icons * Show localized placeholder for team name * Add placeholder extension * Add placeholder to party description * Ensure name modification works right Needed a null check? for some reason? * Small fix for some modals on mobile This fixes the slide up animation and the end point so that modals are actually visible on mobile. Ones that scroll still don't work great. * Fix TableField components on mobile * Put viewport meta tag in _app * Some fixes for scrollable dialogs on mobile This is 100% not going to scale to devices that are not my iPhone 14 Pro Max, but I can't get env variables working in CSS and something is better than nothing for right now. * Disable tab pages * Update with items from July 2023 Flash Gala ### Weapons - Beach Grynoth - Splash Howl ### Characters - Vaseraga (Summer) - Enyo (Summer) * Correct version * Add uncap event * Add units from the July 2023 Legfest Characters: * Fediel (Summer) * Aliza (Summer) * Claudia and Dorothy (Summer) * Yurius (Summer) Weapons * Fediel Float * Sunset Blaze * Shine and Silence * Tentacular Javelin * King's Thruster * Konbu Dashi Summons: * Cerberus (Summer) --- components/about/UpdatesPage/index.tsx | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/components/about/UpdatesPage/index.tsx b/components/about/UpdatesPage/index.tsx index f1d44f0f..b80f6e2d 100644 --- a/components/about/UpdatesPage/index.tsx +++ b/components/about/UpdatesPage/index.tsx @@ -57,6 +57,23 @@ const UpdatesPage = () => { return (

{common('about.segmented_control.updates')}

+ Date: Wed, 16 Aug 2023 04:08:43 -0700 Subject: [PATCH 09/15] Add updates from 2023/08/16 Flash Gala (and more) (#361) I'm not writing notes for this, sorry --- components/about/UpdatesPage/index.tsx | 24 ++++++++++++++++++++++++ public/locales/en/updates.json | 3 +++ public/locales/ja/updates.json | 3 +++ 3 files changed, 30 insertions(+) diff --git a/components/about/UpdatesPage/index.tsx b/components/about/UpdatesPage/index.tsx index b80f6e2d..a9565363 100644 --- a/components/about/UpdatesPage/index.tsx +++ b/components/about/UpdatesPage/index.tsx @@ -57,6 +57,30 @@ const UpdatesPage = () => { return (

{common('about.segmented_control.updates')}

+ + Date: Wed, 16 Aug 2023 04:38:17 -0700 Subject: [PATCH 10/15] Fix typo (#362) --- public/locales/en/updates.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/locales/en/updates.json b/public/locales/en/updates.json index b18914e3..d5f11b50 100644 --- a/public/locales/en/updates.json +++ b/public/locales/en/updates.json @@ -20,7 +20,7 @@ }, "versions": { "2023-08F": { - "features": "Added new class \"Street King\"" + "features": ["Added new class \"Street King\""] }, "2023-05L": { "features": ["A large update is in the works. Stay tuned!"] From e37495072db6d340d3ba42b9c3b6b7f987ebac3d Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sun, 20 Aug 2023 04:04:51 -0700 Subject: [PATCH 11/15] Update to Nextjs 13 to use next/font --- package-lock.json | 993 ++++++++++++++++++++++++---------------------- package.json | 10 +- 2 files changed, 514 insertions(+), 489 deletions(-) diff --git a/package-lock.json b/package-lock.json index f3cf9fe4..bf7ee3bf 100644 --- a/package-lock.json +++ b/package-lock.json @@ -6,6 +6,7 @@ "": { "name": "grid-web", "dependencies": { + "@next/font": "^13.4.19", "@radix-ui/react-alert-dialog": "^1.0.2", "@radix-ui/react-dialog": "^1.0.2", "@radix-ui/react-dropdown-menu": "^2.0.1", @@ -46,19 +47,20 @@ "lodash.debounce": "^4.0.8", "lodash.isequal": "^4.5.0", "meyer-reset-scss": "^2.0.4", - "next": "12.0.8", + "next": "^13.4.19", "next-i18next": "^10.5.0", "next-themes": "^0.2.1", "next-usequerystate": "^1.7.0", "pluralize": "^8.0.0", - "react": "^18.0.0", - "react-dom": "^18.0.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", "react-i18next": "^11.15.5", "react-infinite-scroll-component": "^6.1.0", "react-linkify": "^1.0.0-alpha", "react-lite-youtube-embed": "^2.3.52", "react-scroll": "^1.8.5", "react-string-replace": "^1.1.0", + "react-use": "^17.4.0", "remixicon-react": "^1.0.0", "resolve-url-loader": "^5.0.0", "sanitize-html": "^2.8.1", @@ -92,7 +94,7 @@ "@types/sanitize-html": "^2.8.0", "@types/uuid": "^9.0.0", "eslint": "8.7.0", - "eslint-config-next": "12.0.8", + "eslint-config-next": "^13.4.19", "eslint-plugin-storybook": "^0.6.11", "eslint-plugin-valtio": "^0.4.1", "sass-loader": "^13.2.2", @@ -3073,7 +3075,7 @@ "version": "0.3.3", "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.3.tgz", "integrity": "sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg==", - "devOptional": true, + "dev": true, "dependencies": { "@jridgewell/gen-mapping": "^0.3.0", "@jridgewell/trace-mapping": "^0.3.9" @@ -3189,14 +3191,14 @@ } }, "node_modules/@next/env": { - "version": "12.0.8", - "resolved": "https://registry.npmjs.org/@next/env/-/env-12.0.8.tgz", - "integrity": "sha512-Wa0gOeioB9PHap9wtZDZEhgOSE3/+qE/UALWjJHuNvH4J3oE+13EjVOiEsr1JcPCXUN8ESQE+phDKlo6qJ8P9g==" + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.19.tgz", + "integrity": "sha512-FsAT5x0jF2kkhNkKkukhsyYOrRqtSxrEhfliniIq0bwWbuXLgyt3Gv0Ml+b91XwjwArmuP7NxCiGd++GGKdNMQ==" }, "node_modules/@next/eslint-plugin-next": { - "version": "12.0.8", - "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-12.0.8.tgz", - "integrity": "sha512-bf7O0Mvs1h3vIdbbi0hijG+6YG3ED/ebQfmUltrQSgGtHVKGADDoE2qQhwE+mrvxuz9BD8y3mJDOSy0PBLKGBA==", + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.4.19.tgz", + "integrity": "sha512-N/O+zGb6wZQdwu6atMZHbR7T9Np5SUFUjZqCbj0sXm+MwQO35M8TazVB4otm87GkXYs2l6OPwARd3/PUWhZBVQ==", "dev": true, "dependencies": { "glob": "7.1.7" @@ -3222,25 +3224,15 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/@next/swc-android-arm64": { - "version": "12.0.8", - "resolved": "https://registry.npmjs.org/@next/swc-android-arm64/-/swc-android-arm64-12.0.8.tgz", - "integrity": "sha512-BiXMcOZNnXSIXv+FQvbRgbMb+iYayLX/Sb2MwR0wja+eMs46BY1x/ssXDwUBADP1M8YtrGTlSPHZqUiCU94+Mg==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">= 10" - } + "node_modules/@next/font": { + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/@next/font/-/font-13.4.19.tgz", + "integrity": "sha512-yOuSRYfqksWcaG/sATr1/DEGvvI8gnmAAnQCCZ0+L9p4Pio3/DMu71J56YHh9Hz84LDN4tMVzuux0ssCuM50sA==" }, "node_modules/@next/swc-darwin-arm64": { - "version": "12.0.8", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-12.0.8.tgz", - "integrity": "sha512-6EGMmvcIwPpwt0/iqLbXDGx6oKHAXzbowyyVXK8cqmIvhoghRFjqfiNGBs+ar6wEBGt68zhwn/77vE3iQWoFJw==", + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.19.tgz", + "integrity": "sha512-vv1qrjXeGbuF2mOkhkdxMDtv9np7W4mcBtaDnHU+yJG+bBwa6rYsYSCI/9Xm5+TuF5SbZbrWO6G1NfTh1TMjvQ==", "cpu": [ "arm64" ], @@ -3253,9 +3245,9 @@ } }, "node_modules/@next/swc-darwin-x64": { - "version": "12.0.8", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-12.0.8.tgz", - "integrity": "sha512-todxgQOGP/ucz5UH2kKR3XGDdkWmWr0VZAAbzgTbiFm45Ol4ih602k2nNR3xSbza9IqNhxNuUVsMpBgeo19CFQ==", + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.19.tgz", + "integrity": "sha512-jyzO6wwYhx6F+7gD8ddZfuqO4TtpJdw3wyOduR4fxTUCm3aLw7YmHGYNjS0xRSYGAkLpBkH1E0RcelyId6lNsw==", "cpu": [ "x64" ], @@ -3267,25 +3259,10 @@ "node": ">= 10" } }, - "node_modules/@next/swc-linux-arm-gnueabihf": { - "version": "12.0.8", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-12.0.8.tgz", - "integrity": "sha512-KULmdrfI+DJxBuhEyV47MQllB/WpC3P2xbwhHezxL/LkC2nkz5SbV4k432qpx2ebjIRf9SjdQ5Oz1FjD8Urayw==", - "cpu": [ - "arm" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, "node_modules/@next/swc-linux-arm64-gnu": { - "version": "12.0.8", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-12.0.8.tgz", - "integrity": "sha512-1XO87wgIVPvt5fx5i8CqdhksRdcpqyzCOLW4KrE0f9pUCIT04EbsFiKdmsH9c73aqjNZMnCMXpbV+cn4hN8x1w==", + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.19.tgz", + "integrity": "sha512-vdlnIlaAEh6H+G6HrKZB9c2zJKnpPVKnA6LBwjwT2BTjxI7e0Hx30+FoWCgi50e+YO49p6oPOtesP9mXDRiiUg==", "cpu": [ "arm64" ], @@ -3298,9 +3275,9 @@ } }, "node_modules/@next/swc-linux-arm64-musl": { - "version": "12.0.8", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-12.0.8.tgz", - "integrity": "sha512-NStRZEy/rkk2G18Yhc/Jzi1Q2Dv+zH176oO8479zlDQ5syRfc6AvRHVV4iNRc8Pai58If83r/nOJkwFgGwkKLw==", + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.19.tgz", + "integrity": "sha512-aU0HkH2XPgxqrbNRBFb3si9Ahu/CpaR5RPmN2s9GiM9qJCiBBlZtRTiEca+DC+xRPyCThTtWYgxjWHgU7ZkyvA==", "cpu": [ "arm64" ], @@ -3313,9 +3290,9 @@ } }, "node_modules/@next/swc-linux-x64-gnu": { - "version": "12.0.8", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-12.0.8.tgz", - "integrity": "sha512-rHxTGtTEDFsdT9/VjewzxE19S7W1NE+aZpm4TwbT1pSNGK9KQxQGcXjqoHMeB+VZCFknzNEoIU/vydbjZMlAuw==", + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.19.tgz", + "integrity": "sha512-htwOEagMa/CXNykFFeAHHvMJeqZfNQEoQvHfsA4wgg5QqGNqD5soeCer4oGlCol6NGUxknrQO6VEustcv+Md+g==", "cpu": [ "x64" ], @@ -3328,9 +3305,9 @@ } }, "node_modules/@next/swc-linux-x64-musl": { - "version": "12.0.8", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-12.0.8.tgz", - "integrity": "sha512-1F4kuFRQE10GSx7LMSvRmjMXFGpxT30g8rZzq9r/p/WKdErA4WB4uxaKEX0P8AINfuN63i4luKdR+LoacgBhYw==", + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.19.tgz", + "integrity": "sha512-4Gj4vvtbK1JH8ApWTT214b3GwUh9EKKQjY41hH/t+u55Knxi/0wesMzwQRhppK6Ddalhu0TEttbiJ+wRcoEj5Q==", "cpu": [ "x64" ], @@ -3343,9 +3320,9 @@ } }, "node_modules/@next/swc-win32-arm64-msvc": { - "version": "12.0.8", - "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-12.0.8.tgz", - "integrity": "sha512-QuRe49jqCV61TysGopC1P0HPqFAMZMWe1nbIQLyOkDLkULmZR8N2eYZq7fwqvZE5YwhMmJA/grwWFVBqSEh5Kg==", + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.19.tgz", + "integrity": "sha512-bUfDevQK4NsIAHXs3/JNgnvEY+LRyneDN788W2NYiRIIzmILjba7LaQTfihuFawZDhRtkYCv3JDC3B4TwnmRJw==", "cpu": [ "arm64" ], @@ -3358,9 +3335,9 @@ } }, "node_modules/@next/swc-win32-ia32-msvc": { - "version": "12.0.8", - "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-12.0.8.tgz", - "integrity": "sha512-0RV3/julybJr1IlPCowIWrJJZyAl+sOakJEM15y1NOOsbwTQ5eKZZXSi+7e23TN4wmy5HwNvn2dKzgOEVJ+jbA==", + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.19.tgz", + "integrity": "sha512-Y5kikILFAr81LYIFaw6j/NrOtmiM4Sf3GtOc0pn50ez2GCkr+oejYuKGcwAwq3jiTKuzF6OF4iT2INPoxRycEA==", "cpu": [ "ia32" ], @@ -3373,9 +3350,9 @@ } }, "node_modules/@next/swc-win32-x64-msvc": { - "version": "12.0.8", - "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-12.0.8.tgz", - "integrity": "sha512-tTga6OFfO2JS+Yt5hdryng259c/tzNgSWkdiU2E+RBHiysAIOta57n4PJ8iPahOSqEqjaToPI76wM+o441GaNQ==", + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.19.tgz", + "integrity": "sha512-YzA78jBDXMYiINdPdJJwGgPNT3YqBNNGhsthsDoWHL9p24tEJn9ViQf/ZqTbwSpX/RrkPupLfuuTH2sf73JBAw==", "cpu": [ "x64" ], @@ -6979,6 +6956,14 @@ "url": "https://github.com/sponsors/gregberge" } }, + "node_modules/@swc/helpers": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", + "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", + "dependencies": { + "tslib": "^2.4.0" + } + }, "node_modules/@testing-library/dom": { "version": "8.20.0", "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-8.20.0.tgz", @@ -7633,7 +7618,7 @@ "version": "8.40.0", "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.40.0.tgz", "integrity": "sha512-nbq2mvc/tBrK9zQQuItvjJl++GTN5j06DaPtp3hZCpngmG6Q3xoyEmd0TwZI0gAy/G1X0zhGBbr2imsGFdFV0g==", - "devOptional": true, + "dev": true, "dependencies": { "@types/estree": "*", "@types/json-schema": "*" @@ -7643,7 +7628,7 @@ "version": "3.7.4", "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", - "devOptional": true, + "dev": true, "dependencies": { "@types/eslint": "*", "@types/estree": "*" @@ -7653,7 +7638,7 @@ "version": "0.0.51", "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==", - "devOptional": true + "dev": true }, "node_modules/@types/express": { "version": "4.17.17", @@ -7743,11 +7728,16 @@ "@types/istanbul-lib-report": "*" } }, + "node_modules/@types/js-cookie": { + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/@types/js-cookie/-/js-cookie-2.2.7.tgz", + "integrity": "sha512-aLkWa0C0vO5b4Sr798E26QgOkss68Un0bLjs7u9qxzPT5CG+8DuNTffWES58YzJs3hrVAOs1wonycqEBqNJubA==" + }, "node_modules/@types/json-schema": { "version": "7.0.12", "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz", "integrity": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==", - "devOptional": true + "dev": true }, "node_modules/@types/json5": { "version": "0.0.29", @@ -7821,7 +7811,8 @@ "node_modules/@types/node": { "version": "17.0.11", "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.11.tgz", - "integrity": "sha512-TgLsFcuinMobmML3PsILoRJq/h11/qS7UDlak1LUsazJcvJeKejEBuI1m5X2pBnMBF5T5HRAvtcnr4cV5nvc8Q==" + "integrity": "sha512-TgLsFcuinMobmML3PsILoRJq/h11/qS7UDlak1LUsazJcvJeKejEBuI1m5X2pBnMBF5T5HRAvtcnr4cV5nvc8Q==", + "dev": true }, "node_modules/@types/node-fetch": { "version": "2.6.4", @@ -8232,7 +8223,7 @@ "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", - "devOptional": true, + "dev": true, "dependencies": { "@webassemblyjs/helper-numbers": "1.11.6", "@webassemblyjs/helper-wasm-bytecode": "1.11.6" @@ -8242,25 +8233,25 @@ "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", - "devOptional": true + "dev": true }, "node_modules/@webassemblyjs/helper-api-error": { "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", - "devOptional": true + "dev": true }, "node_modules/@webassemblyjs/helper-buffer": { "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==", - "devOptional": true + "dev": true }, "node_modules/@webassemblyjs/helper-numbers": { "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", - "devOptional": true, + "dev": true, "dependencies": { "@webassemblyjs/floating-point-hex-parser": "1.11.6", "@webassemblyjs/helper-api-error": "1.11.6", @@ -8271,13 +8262,13 @@ "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", - "devOptional": true + "dev": true }, "node_modules/@webassemblyjs/helper-wasm-section": { "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", - "devOptional": true, + "dev": true, "dependencies": { "@webassemblyjs/ast": "1.11.6", "@webassemblyjs/helper-buffer": "1.11.6", @@ -8289,7 +8280,7 @@ "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", - "devOptional": true, + "dev": true, "dependencies": { "@xtuc/ieee754": "^1.2.0" } @@ -8298,7 +8289,7 @@ "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", - "devOptional": true, + "dev": true, "dependencies": { "@xtuc/long": "4.2.2" } @@ -8307,13 +8298,13 @@ "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", - "devOptional": true + "dev": true }, "node_modules/@webassemblyjs/wasm-edit": { "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", - "devOptional": true, + "dev": true, "dependencies": { "@webassemblyjs/ast": "1.11.6", "@webassemblyjs/helper-buffer": "1.11.6", @@ -8329,7 +8320,7 @@ "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", - "devOptional": true, + "dev": true, "dependencies": { "@webassemblyjs/ast": "1.11.6", "@webassemblyjs/helper-wasm-bytecode": "1.11.6", @@ -8342,7 +8333,7 @@ "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", - "devOptional": true, + "dev": true, "dependencies": { "@webassemblyjs/ast": "1.11.6", "@webassemblyjs/helper-buffer": "1.11.6", @@ -8354,7 +8345,7 @@ "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", - "devOptional": true, + "dev": true, "dependencies": { "@webassemblyjs/ast": "1.11.6", "@webassemblyjs/helper-api-error": "1.11.6", @@ -8368,23 +8359,28 @@ "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", - "devOptional": true, + "dev": true, "dependencies": { "@webassemblyjs/ast": "1.11.6", "@xtuc/long": "4.2.2" } }, + "node_modules/@xobotyi/scrollbar-width": { + "version": "1.9.5", + "resolved": "https://registry.npmjs.org/@xobotyi/scrollbar-width/-/scrollbar-width-1.9.5.tgz", + "integrity": "sha512-N8tkAACJx2ww8vFMneJmaAgmjAG1tnVBZJRLRcx061tmsLRZHSEZSLuGWnwPtunsSLvSqXQ2wfp7Mgqg1I+2dQ==" + }, "node_modules/@xtuc/ieee754": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", - "devOptional": true + "dev": true }, "node_modules/@xtuc/long": { "version": "4.2.2", "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", - "devOptional": true + "dev": true }, "node_modules/@yarnpkg/esbuild-plugin-pnp": { "version": "3.0.0-rc.15", @@ -8519,7 +8515,7 @@ "version": "6.12.6", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "devOptional": true, + "dev": true, "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", @@ -8574,7 +8570,7 @@ "version": "3.5.2", "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", - "devOptional": true, + "dev": true, "peerDependencies": { "ajv": "^6.9.1" } @@ -8760,6 +8756,25 @@ "node": ">=8" } }, + "node_modules/array.prototype.findlastindex": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.2.tgz", + "integrity": "sha512-tb5thFFlUcp7NdNF6/MpDk/1r/4awWG1FIz3YqDf+/zJSTezBb+/5WViH41obXULHVpDzoiCLpJ/ZO9YbJMsdw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/array.prototype.flat": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", @@ -9585,7 +9600,7 @@ "version": "1.1.2", "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "devOptional": true + "dev": true }, "node_modules/buffer-xor": { "version": "1.0.3", @@ -9599,6 +9614,17 @@ "integrity": "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==", "dev": true }, + "node_modules/busboy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "dependencies": { + "streamsearch": "^1.1.0" + }, + "engines": { + "node": ">=10.16.0" + } + }, "node_modules/bytes": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", @@ -9798,7 +9824,7 @@ "version": "1.0.3", "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", - "devOptional": true, + "dev": true, "engines": { "node": ">=6.0" } @@ -9917,8 +9943,7 @@ "node_modules/client-only": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", - "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==", - "dev": true + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" }, "node_modules/cliui": { "version": "7.0.4", @@ -10486,6 +10511,14 @@ "url": "https://github.com/sponsors/mesqueeb" } }, + "node_modules/copy-to-clipboard": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.3.tgz", + "integrity": "sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==", + "dependencies": { + "toggle-selection": "^1.0.6" + } + }, "node_modules/core-js": { "version": "3.30.2", "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.30.2.tgz", @@ -10641,6 +10674,14 @@ "node": ">=8" } }, + "node_modules/css-in-js-utils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/css-in-js-utils/-/css-in-js-utils-3.1.0.tgz", + "integrity": "sha512-fJAcud6B3rRu+KHYk+Bwf+WFL2MDCJJ1XG9x137tJQ0xYxor7XziQtuGFbWNdqrvF4Tk26O3H73nfVqXt/fW1A==", + "dependencies": { + "hyphenate-style-name": "^1.0.3" + } + }, "node_modules/css-loader": { "version": "6.8.1", "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.8.1.tgz", @@ -11406,7 +11447,7 @@ "version": "5.14.1", "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.14.1.tgz", "integrity": "sha512-Vklwq2vDKtl0y/vtwjSesgJ5MYS7Etuk5txS8VdKL4AOS1aUlD96zqIfsOSLQsdv3xgMRbtkWM8eG9XDfKUPow==", - "devOptional": true, + "dev": true, "dependencies": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" @@ -11464,7 +11505,6 @@ "version": "2.1.4", "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", - "dev": true, "dependencies": { "stackframe": "^1.3.4" } @@ -11541,7 +11581,7 @@ "version": "1.2.1", "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.2.1.tgz", "integrity": "sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==", - "devOptional": true + "dev": true }, "node_modules/es-set-tostringtag": { "version": "2.0.1", @@ -11751,24 +11791,23 @@ } }, "node_modules/eslint-config-next": { - "version": "12.0.8", - "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-12.0.8.tgz", - "integrity": "sha512-H40jvqy/yeku3r9D556ALLaM3ZmS55hj9/MTK59fWbzsqTaYlybSkUmIBG0ZFEnBazr0NnBGwrYA5cnsFYR7RQ==", + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.4.19.tgz", + "integrity": "sha512-WE8367sqMnjhWHvR5OivmfwENRQ1ixfNE9hZwQqNCsd+iM3KnuMc1V8Pt6ytgjxjf23D+xbesADv9x3xaKfT3g==", "dev": true, "dependencies": { - "@next/eslint-plugin-next": "12.0.8", - "@rushstack/eslint-patch": "^1.0.8", - "@typescript-eslint/parser": "^5.0.0", - "eslint-import-resolver-node": "^0.3.4", - "eslint-import-resolver-typescript": "^2.4.0", - "eslint-plugin-import": "^2.25.2", + "@next/eslint-plugin-next": "13.4.19", + "@rushstack/eslint-patch": "^1.1.3", + "@typescript-eslint/parser": "^5.4.2 || ^6.0.0", + "eslint-import-resolver-node": "^0.3.6", + "eslint-import-resolver-typescript": "^3.5.2", + "eslint-plugin-import": "^2.26.0", "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-react": "^7.27.0", - "eslint-plugin-react-hooks": "^4.3.0" + "eslint-plugin-react": "^7.31.7", + "eslint-plugin-react-hooks": "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705" }, "peerDependencies": { "eslint": "^7.23.0 || ^8.0.0", - "next": ">=10.2.0", "typescript": ">=3.3.1" }, "peerDependenciesMeta": { @@ -11778,14 +11817,14 @@ } }, "node_modules/eslint-import-resolver-node": { - "version": "0.3.7", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", - "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", "dev": true, "dependencies": { "debug": "^3.2.7", - "is-core-module": "^2.11.0", - "resolve": "^1.22.1" + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" } }, "node_modules/eslint-import-resolver-node/node_modules/debug": { @@ -11798,69 +11837,30 @@ } }, "node_modules/eslint-import-resolver-typescript": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.7.1.tgz", - "integrity": "sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ==", + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.6.0.tgz", + "integrity": "sha512-QTHR9ddNnn35RTxlaEnx2gCxqFlF2SEN0SE2d17SqwyM7YOSI2GHWRYp5BiRkObTUNYPupC/3Fq2a0PpT+EKpg==", "dev": true, "dependencies": { "debug": "^4.3.4", - "glob": "^7.2.0", - "is-glob": "^4.0.3", - "resolve": "^1.22.0", - "tsconfig-paths": "^3.14.1" + "enhanced-resolve": "^5.12.0", + "eslint-module-utils": "^2.7.4", + "fast-glob": "^3.3.1", + "get-tsconfig": "^4.5.0", + "is-core-module": "^2.11.0", + "is-glob": "^4.0.3" }, "engines": { - "node": ">=4" + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts" }, "peerDependencies": { "eslint": "*", "eslint-plugin-import": "*" } }, - "node_modules/eslint-import-resolver-typescript/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/eslint-import-resolver-typescript/node_modules/json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dev": true, - "dependencies": { - "minimist": "^1.2.0" - }, - "bin": { - "json5": "lib/cli.js" - } - }, - "node_modules/eslint-import-resolver-typescript/node_modules/tsconfig-paths": { - "version": "3.14.2", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", - "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", - "dev": true, - "dependencies": { - "@types/json5": "^0.0.29", - "json5": "^1.0.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - } - }, "node_modules/eslint-module-utils": { "version": "2.8.0", "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", @@ -11888,26 +11888,28 @@ } }, "node_modules/eslint-plugin-import": { - "version": "2.27.5", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", - "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", + "version": "2.28.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.28.1.tgz", + "integrity": "sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==", "dev": true, "dependencies": { "array-includes": "^3.1.6", + "array.prototype.findlastindex": "^1.2.2", "array.prototype.flat": "^1.3.1", "array.prototype.flatmap": "^1.3.1", "debug": "^3.2.7", "doctrine": "^2.1.0", "eslint-import-resolver-node": "^0.3.7", - "eslint-module-utils": "^2.7.4", + "eslint-module-utils": "^2.8.0", "has": "^1.0.3", - "is-core-module": "^2.11.0", + "is-core-module": "^2.13.0", "is-glob": "^4.0.3", "minimatch": "^3.1.2", + "object.fromentries": "^2.0.6", + "object.groupby": "^1.0.0", "object.values": "^1.1.6", - "resolve": "^1.22.1", - "semver": "^6.3.0", - "tsconfig-paths": "^3.14.1" + "semver": "^6.3.1", + "tsconfig-paths": "^3.14.2" }, "engines": { "node": ">=4" @@ -12336,7 +12338,7 @@ "version": "4.3.0", "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "devOptional": true, + "dev": true, "dependencies": { "estraverse": "^5.2.0" }, @@ -12348,7 +12350,7 @@ "version": "5.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "devOptional": true, + "dev": true, "engines": { "node": ">=4.0" } @@ -12397,7 +12399,7 @@ "version": "3.3.0", "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", - "devOptional": true, + "dev": true, "engines": { "node": ">=0.8.x" } @@ -12558,9 +12560,9 @@ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" }, "node_modules/fast-glob": { - "version": "3.2.12", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", - "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", "dev": true, "dependencies": { "@nodelib/fs.stat": "^2.0.2", @@ -12595,7 +12597,7 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "devOptional": true + "dev": true }, "node_modules/fast-levenshtein": { "version": "2.0.6", @@ -12603,6 +12605,21 @@ "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", "dev": true }, + "node_modules/fast-loops": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/fast-loops/-/fast-loops-1.1.3.tgz", + "integrity": "sha512-8EZzEP0eKkEEVX+drtd9mtuQ+/QrlfW/5MlwcwK5Nds6EkZ/tRzEexkzUY2mIssnAyVLT+TKHuRXmFNNXYUd6g==" + }, + "node_modules/fast-shallow-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fast-shallow-equal/-/fast-shallow-equal-1.0.0.tgz", + "integrity": "sha512-HPtaa38cPgWvaCFmRNhlc6NG7pv6NUHqjPgVAkWGoB9mQMwYB27/K0CvOM5Czy+qpT3e8XJ6Q4aPAnzpNpzNaw==" + }, + "node_modules/fastest-stable-stringify": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fastest-stable-stringify/-/fastest-stable-stringify-2.0.2.tgz", + "integrity": "sha512-bijHueCGd0LqqNK9b5oCMHc0MluJAx0cwqASgbWMvkO01lCYgIhacVRLcaDz3QnyYIRNJRDwMb41VuT6pHJ91Q==" + }, "node_modules/fastq": { "version": "1.15.0", "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", @@ -13308,6 +13325,18 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/get-tsconfig": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.7.0.tgz", + "integrity": "sha512-pmjiZ7xtB8URYm74PlGJozDNyhvsVLUcpBa8DZBG3bWHwaHa9bPiRpiSfovw+fjhwONSCWKRyk+JQHEGZmMrzw==", + "dev": true, + "dependencies": { + "resolve-pkg-maps": "^1.0.0" + }, + "funding": { + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" + } + }, "node_modules/giget": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/giget/-/giget-1.1.2.tgz", @@ -13385,8 +13414,7 @@ "node_modules/glob-to-regexp": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", - "devOptional": true + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" }, "node_modules/glob/node_modules/brace-expansion": { "version": "2.0.1", @@ -13467,8 +13495,7 @@ "node_modules/graceful-fs": { "version": "4.2.11", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", - "devOptional": true + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" }, "node_modules/gunzip-maybe": { "version": "1.4.2", @@ -13832,6 +13859,11 @@ "node": ">=10.17.0" } }, + "node_modules/hyphenate-style-name": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz", + "integrity": "sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==" + }, "node_modules/i18next": { "version": "21.10.0", "resolved": "https://registry.npmjs.org/i18next/-/i18next-21.10.0.tgz", @@ -14002,7 +14034,17 @@ "node_modules/inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/inline-style-prefixer": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/inline-style-prefixer/-/inline-style-prefixer-6.0.4.tgz", + "integrity": "sha512-FwXmZC2zbeeS7NzGjJ6pAiqRhXR0ugUShSNb6GApMl6da0/XGc4MOJsoWAywia52EEWbXNSy0pzkwz/+Y+swSg==", + "dependencies": { + "css-in-js-utils": "^3.1.0", + "fast-loops": "^1.1.3" + } }, "node_modules/internal-slot": { "version": "1.0.5", @@ -14169,9 +14211,9 @@ } }, "node_modules/is-core-module": { - "version": "2.12.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", - "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", + "version": "2.13.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", + "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", "dependencies": { "has": "^1.0.3" }, @@ -14973,6 +15015,11 @@ "jiti": "bin/jiti.js" } }, + "node_modules/js-cookie": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/js-cookie/-/js-cookie-2.2.1.tgz", + "integrity": "sha512-HvdH2LzI/EAZcUwA8+0nKNtWHqS+ZmijLA30RwZA0bo7ToCckjK5MkGhjED9KoRcXO6BaGI3I9UIzSA1FKFPOQ==" + }, "node_modules/js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", @@ -15143,7 +15190,7 @@ "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "devOptional": true + "dev": true }, "node_modules/json-stable-stringify-without-jsonify": { "version": "1.0.1", @@ -15385,7 +15432,7 @@ "version": "4.3.0", "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", - "devOptional": true, + "dev": true, "engines": { "node": ">=6.11.5" } @@ -15943,7 +15990,8 @@ "node_modules/merge-stream": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true }, "node_modules/merge2": { "version": "1.4.1", @@ -16579,7 +16627,7 @@ "version": "1.52.0", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "devOptional": true, + "dev": true, "engines": { "node": ">= 0.6" } @@ -16588,7 +16636,7 @@ "version": "2.1.35", "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "devOptional": true, + "dev": true, "dependencies": { "mime-db": "1.52.0" }, @@ -16642,6 +16690,7 @@ "version": "1.2.8", "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -16718,6 +16767,25 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, + "node_modules/nano-css": { + "version": "5.3.5", + "resolved": "https://registry.npmjs.org/nano-css/-/nano-css-5.3.5.tgz", + "integrity": "sha512-vSB9X12bbNu4ALBu7nigJgRViZ6ja3OU7CeuiV1zMIbXOdmkLahgtPmh3GBOlDxbKY0CitqlPdOReGlBLSp+yg==", + "dependencies": { + "css-tree": "^1.1.2", + "csstype": "^3.0.6", + "fastest-stable-stringify": "^2.0.2", + "inline-style-prefixer": "^6.0.0", + "rtl-css-js": "^1.14.0", + "sourcemap-codec": "^1.4.8", + "stacktrace-js": "^2.0.2", + "stylis": "^4.0.6" + }, + "peerDependencies": { + "react": "*", + "react-dom": "*" + } + }, "node_modules/nanoid": { "version": "3.3.6", "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", @@ -16798,56 +16866,47 @@ "version": "2.6.2", "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", - "devOptional": true + "dev": true }, "node_modules/next": { - "version": "12.0.8", - "resolved": "https://registry.npmjs.org/next/-/next-12.0.8.tgz", - "integrity": "sha512-g5c1Kuh1F8tSXJn2rVvzYBzqe9EXaR6+rY3/KrQ7y0D9FueRLfHI35wM0DRadDcPSc3+vncspfhYH3jnYE/KjA==", + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/next/-/next-13.4.19.tgz", + "integrity": "sha512-HuPSzzAbJ1T4BD8e0bs6B9C1kWQ6gv8ykZoRWs5AQoiIuqbGHHdQO7Ljuvg05Q0Z24E2ABozHe6FxDvI6HfyAw==", "dependencies": { - "@next/env": "12.0.8", - "@next/react-refresh-utils": "12.0.8", - "caniuse-lite": "^1.0.30001283", - "jest-worker": "27.0.0-next.5", - "node-fetch": "2.6.1", - "postcss": "8.2.15", - "react-is": "17.0.2", - "react-refresh": "0.8.3", - "stream-browserify": "3.0.0", - "styled-jsx": "5.0.0-beta.6", - "use-subscription": "1.5.1" + "@next/env": "13.4.19", + "@swc/helpers": "0.5.1", + "busboy": "1.6.0", + "caniuse-lite": "^1.0.30001406", + "postcss": "8.4.14", + "styled-jsx": "5.1.1", + "watchpack": "2.4.0", + "zod": "3.21.4" }, "bin": { "next": "dist/bin/next" }, "engines": { - "node": ">=12.22.0" + "node": ">=16.8.0" }, "optionalDependencies": { - "@next/swc-android-arm64": "12.0.8", - "@next/swc-darwin-arm64": "12.0.8", - "@next/swc-darwin-x64": "12.0.8", - "@next/swc-linux-arm-gnueabihf": "12.0.8", - "@next/swc-linux-arm64-gnu": "12.0.8", - "@next/swc-linux-arm64-musl": "12.0.8", - "@next/swc-linux-x64-gnu": "12.0.8", - "@next/swc-linux-x64-musl": "12.0.8", - "@next/swc-win32-arm64-msvc": "12.0.8", - "@next/swc-win32-ia32-msvc": "12.0.8", - "@next/swc-win32-x64-msvc": "12.0.8" + "@next/swc-darwin-arm64": "13.4.19", + "@next/swc-darwin-x64": "13.4.19", + "@next/swc-linux-arm64-gnu": "13.4.19", + "@next/swc-linux-arm64-musl": "13.4.19", + "@next/swc-linux-x64-gnu": "13.4.19", + "@next/swc-linux-x64-musl": "13.4.19", + "@next/swc-win32-arm64-msvc": "13.4.19", + "@next/swc-win32-ia32-msvc": "13.4.19", + "@next/swc-win32-x64-msvc": "13.4.19" }, "peerDependencies": { - "fibers": ">= 3.1.0", - "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0", - "react": "^17.0.2 || ^18.0.0-0", - "react-dom": "^17.0.2 || ^18.0.0-0", + "@opentelemetry/api": "^1.1.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", "sass": "^1.3.0" }, "peerDependenciesMeta": { - "fibers": { - "optional": true - }, - "node-sass": { + "@opentelemetry/api": { "optional": true }, "sass": { @@ -16900,215 +16959,27 @@ "react-dom": "*" } }, - "node_modules/next/node_modules/@babel/plugin-syntax-jsx": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.14.5.tgz", - "integrity": "sha512-ohuFIsOMXJnbOMRfX7/w7LocdR6R7whhuRD4ax8IipLcLPlZGJKkBxgHp++U4N/vKyU16/YDQr2f5seajD3jIw==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/next/node_modules/@babel/types": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.15.0.tgz", - "integrity": "sha512-OBvfqnllOIdX4ojTHpwZbpvz4j3EWyjkZEdmjH0/cgsd6QOdSgU8rLSk6ard/pcW7rlmjdVSX/AWOaORR1uNOQ==", - "dependencies": { - "@babel/helper-validator-identifier": "^7.14.9", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/next/node_modules/@next/react-refresh-utils": { - "version": "12.0.8", - "resolved": "https://registry.npmjs.org/@next/react-refresh-utils/-/react-refresh-utils-12.0.8.tgz", - "integrity": "sha512-Bq4T/aOOFQUkCF9b8k9x+HpjOevu65ZPxsYJOpgEtBuJyvb+sZREtDDLKb/RtjUeLMrWrsGD0aLteyFFtiS8Og==", - "peerDependencies": { - "react-refresh": "0.8.3", - "webpack": "^4 || ^5" - }, - "peerDependenciesMeta": { - "webpack": { - "optional": true - } - } - }, - "node_modules/next/node_modules/colorette": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz", - "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==" - }, - "node_modules/next/node_modules/convert-source-map": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", - "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==", - "dependencies": { - "safe-buffer": "~5.1.1" - } - }, - "node_modules/next/node_modules/emojis-list": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", - "integrity": "sha512-knHEZMgs8BB+MInokmNTg/OyPlAddghe1YBgNwJBc5zsJi/uyIcXoSDsL/W9ymOsBoBGdPIHXYJ9+qKFwRwDng==", - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/next/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/next/node_modules/jest-worker": { - "version": "27.0.0-next.5", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.0.0-next.5.tgz", - "integrity": "sha512-mk0umAQ5lT+CaOJ+Qp01N6kz48sJG2kr2n1rX0koqKf6FIygQV0qLOdN9SCYID4IVeSigDOcPeGLozdMLYfb5g==", - "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/next/node_modules/json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dependencies": { - "minimist": "^1.2.0" - }, - "bin": { - "json5": "lib/cli.js" - } - }, - "node_modules/next/node_modules/loader-utils": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", - "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", - "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^2.0.0", - "json5": "^1.0.1" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/next/node_modules/node-fetch": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz", - "integrity": "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==", - "engines": { - "node": "4.x || >=6.0.0" - } - }, "node_modules/next/node_modules/postcss": { - "version": "8.2.15", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.2.15.tgz", - "integrity": "sha512-2zO3b26eJD/8rb106Qu2o7Qgg52ND5HPjcyQiK2B98O388h43A448LCslC0dI2P97wCAQRJsFvwTRcXxTKds+Q==", + "version": "8.4.14", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", + "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + } + ], "dependencies": { - "colorette": "^1.2.2", - "nanoid": "^3.1.23", - "source-map": "^0.6.1" + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" }, "engines": { "node": "^10 || ^12 || >=14" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - } - }, - "node_modules/next/node_modules/react-refresh": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.8.3.tgz", - "integrity": "sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/next/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "node_modules/next/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/next/node_modules/styled-jsx": { - "version": "5.0.0-beta.6", - "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.0.0-beta.6.tgz", - "integrity": "sha512-b1cM7Xyp2r1lsNpvoZ6wmTI8qxD0557vH2feHakNU8LMkzfJDgTQMul6O7sSYY0GxQ73pKEN69hCDp71w6Q0nA==", - "dependencies": { - "@babel/plugin-syntax-jsx": "7.14.5", - "@babel/types": "7.15.0", - "convert-source-map": "1.7.0", - "loader-utils": "1.2.3", - "source-map": "0.7.3", - "string-hash": "1.1.3", - "stylis": "3.5.4", - "stylis-rule-sheet": "0.0.10" - }, - "engines": { - "node": ">= 12.0.0" - }, - "peerDependencies": { - "react": ">= 16.8.0 || 17.x.x || 18.x.x" - }, - "peerDependenciesMeta": { - "@babel/core": { - "optional": true - } - } - }, - "node_modules/next/node_modules/styled-jsx/node_modules/source-map": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", - "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", - "engines": { - "node": ">= 8" - } - }, - "node_modules/next/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/next/node_modules/use-subscription": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/use-subscription/-/use-subscription-1.5.1.tgz", - "integrity": "sha512-Xv2a1P/yReAjAbhylMfFplFKj9GssgTwN7RlcTxBujFQcloStWNDQdc4g4NRWH9xS4i/FDk04vQBptAXoF3VcA==", - "dependencies": { - "object-assign": "^4.1.1" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0" } }, "node_modules/no-case": { @@ -17369,6 +17240,18 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/object.groupby": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.0.tgz", + "integrity": "sha512-70MWG6NfRH9GnbZOikuhPPYzpUpof9iW2J9E4dW7FXTqPNb6rllE6u39SKwwiNh8lCwX3DDb5OgcKGiEBrTTyw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.21.2", + "get-intrinsic": "^1.2.1" + } + }, "node_modules/object.hasown": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", @@ -18534,7 +18417,7 @@ "version": "2.3.0", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", - "devOptional": true, + "dev": true, "engines": { "node": ">=6" } @@ -18712,7 +18595,7 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "devOptional": true, + "dev": true, "dependencies": { "safe-buffer": "^5.1.0" } @@ -18888,7 +18771,8 @@ "node_modules/react-is": { "version": "17.0.2", "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", - "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "dev": true }, "node_modules/react-linkify": { "version": "1.0.0-alpha", @@ -19005,6 +18889,48 @@ } } }, + "node_modules/react-universal-interface": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/react-universal-interface/-/react-universal-interface-0.6.2.tgz", + "integrity": "sha512-dg8yXdcQmvgR13RIlZbTRQOoUrDciFVoSBZILwjE2LFISxZZ8loVJKAkuzswl5js8BHda79bIb2b84ehU8IjXw==", + "peerDependencies": { + "react": "*", + "tslib": "*" + } + }, + "node_modules/react-use": { + "version": "17.4.0", + "resolved": "https://registry.npmjs.org/react-use/-/react-use-17.4.0.tgz", + "integrity": "sha512-TgbNTCA33Wl7xzIJegn1HndB4qTS9u03QUwyNycUnXaweZkE4Kq2SB+Yoxx8qbshkZGYBDvUXbXWRUmQDcZZ/Q==", + "dependencies": { + "@types/js-cookie": "^2.2.6", + "@xobotyi/scrollbar-width": "^1.9.5", + "copy-to-clipboard": "^3.3.1", + "fast-deep-equal": "^3.1.3", + "fast-shallow-equal": "^1.0.0", + "js-cookie": "^2.2.1", + "nano-css": "^5.3.1", + "react-universal-interface": "^0.6.2", + "resize-observer-polyfill": "^1.5.1", + "screenfull": "^5.1.0", + "set-harmonic-interval": "^1.0.1", + "throttle-debounce": "^3.0.1", + "ts-easing": "^0.2.0", + "tslib": "^2.1.0" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/react-use/node_modules/throttle-debounce": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/throttle-debounce/-/throttle-debounce-3.0.1.tgz", + "integrity": "sha512-dTEWWNu6JmeVXY0ZYoPuH5cRIwc0MeGbJwah9KUNYSJwommQpCzTySTpEe8Gs1J23aeWEuAobe4Ag7EHVt/LOg==", + "engines": { + "node": ">=10" + } + }, "node_modules/read-pkg": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", @@ -19466,12 +19392,17 @@ "node": ">=0.10.5" } }, + "node_modules/resize-observer-polyfill": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz", + "integrity": "sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==" + }, "node_modules/resolve": { - "version": "1.22.2", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", - "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", + "version": "1.22.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz", + "integrity": "sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==", "dependencies": { - "is-core-module": "^2.11.0", + "is-core-module": "^2.13.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, @@ -19491,6 +19422,15 @@ "node": ">=8" } }, + "node_modules/resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", + "dev": true, + "funding": { + "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" + } + }, "node_modules/resolve-url-loader": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-5.0.0.tgz", @@ -19600,6 +19540,14 @@ "resolved": "https://registry.npmjs.org/rope-sequence/-/rope-sequence-1.3.4.tgz", "integrity": "sha512-UT5EDe2cu2E/6O4igUr5PSFs23nvvukicWHx6GnOPlHAiiYbzNuCRQCuiUdHJQcqKalLKlrYJnjY0ySGsXNQXQ==" }, + "node_modules/rtl-css-js": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/rtl-css-js/-/rtl-css-js-1.16.1.tgz", + "integrity": "sha512-lRQgou1mu19e+Ya0LsTvKrVJ5TYUbqCVPAiImX3UfLTenarvPUl1QFdvu5Z3PYmHT9RCcwIfbjRQBntExyj3Zg==", + "dependencies": { + "@babel/runtime": "^7.1.2" + } + }, "node_modules/run-parallel": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", @@ -19639,6 +19587,7 @@ "version": "5.2.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, "funding": [ { "type": "github", @@ -19772,7 +19721,7 @@ "version": "3.1.2", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.2.tgz", "integrity": "sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==", - "devOptional": true, + "dev": true, "dependencies": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", @@ -19786,10 +19735,21 @@ "url": "https://opencollective.com/webpack" } }, + "node_modules/screenfull": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/screenfull/-/screenfull-5.2.0.tgz", + "integrity": "sha512-9BakfsO2aUQN2K9Fdbj87RJIEZ82Q9IGim7FqM5OsebfoFC6ZHXgDq/KvniuLTPdeM8wY2o6Dj3WQ7KeQCj3cA==", + "engines": { + "node": ">=0.10.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "bin": { "semver": "bin/semver.js" } @@ -19843,7 +19803,7 @@ "version": "6.0.1", "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", - "devOptional": true, + "dev": true, "dependencies": { "randombytes": "^2.1.0" } @@ -19897,6 +19857,14 @@ "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", "dev": true }, + "node_modules/set-harmonic-interval": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/set-harmonic-interval/-/set-harmonic-interval-1.0.1.tgz", + "integrity": "sha512-AhICkFV84tBP1aWqPwLZqFvAwqEoVA9kxNMniGEUvzOlm4vLmOFLiTT3UZ6bziJTy4bOVpzWGTfSCbmaayGx8g==", + "engines": { + "node": ">=6.9" + } + }, "node_modules/setimmediate": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", @@ -20069,7 +20037,7 @@ "version": "0.5.21", "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", - "devOptional": true, + "dev": true, "dependencies": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" @@ -20079,11 +20047,17 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "devOptional": true, + "dev": true, "engines": { "node": ">=0.10.0" } }, + "node_modules/sourcemap-codec": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", + "deprecated": "Please use @jridgewell/sourcemap-codec instead" + }, "node_modules/space-separated-tokens": { "version": "1.1.5", "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz", @@ -20138,11 +20112,45 @@ "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility" }, + "node_modules/stack-generator": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/stack-generator/-/stack-generator-2.0.10.tgz", + "integrity": "sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ==", + "dependencies": { + "stackframe": "^1.3.4" + } + }, "node_modules/stackframe": { "version": "1.3.4", "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", - "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==", - "dev": true + "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==" + }, + "node_modules/stacktrace-gps": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/stacktrace-gps/-/stacktrace-gps-3.1.2.tgz", + "integrity": "sha512-GcUgbO4Jsqqg6RxfyTHFiPxdPqF+3LFmQhm7MgCuYQOYuWyqxo5pwRPz5d/u6/WYJdEnWfK4r+jGbyD8TSggXQ==", + "dependencies": { + "source-map": "0.5.6", + "stackframe": "^1.3.4" + } + }, + "node_modules/stacktrace-gps/node_modules/source-map": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", + "integrity": "sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stacktrace-js": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/stacktrace-js/-/stacktrace-js-2.0.2.tgz", + "integrity": "sha512-Je5vBeY4S1r/RnLydLl0TBTi3F2qdfWmYsGvtfZgEI+SCprPppaIhQf5nGcal4gI4cGpCV/duLcAzT1np6sQqg==", + "dependencies": { + "error-stack-parser": "^2.0.6", + "stack-generator": "^2.0.5", + "stacktrace-gps": "^3.0.4" + } }, "node_modules/statuses": { "version": "2.0.1", @@ -20192,6 +20200,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-3.0.0.tgz", "integrity": "sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==", + "dev": true, "dependencies": { "inherits": "~2.0.4", "readable-stream": "^3.5.0" @@ -20201,6 +20210,7 @@ "version": "3.6.2", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", @@ -20242,19 +20252,23 @@ "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", "dev": true }, + "node_modules/streamsearch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", + "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", + "engines": { + "node": ">=10.0.0" + } + }, "node_modules/string_decoder": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, "dependencies": { "safe-buffer": "~5.2.0" } }, - "node_modules/string-hash": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz", - "integrity": "sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==" - }, "node_modules/string-width": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", @@ -20413,7 +20427,6 @@ "version": "5.1.1", "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", - "dev": true, "dependencies": { "client-only": "0.0.1" }, @@ -20433,17 +20446,9 @@ } }, "node_modules/stylis": { - "version": "3.5.4", - "resolved": "https://registry.npmjs.org/stylis/-/stylis-3.5.4.tgz", - "integrity": "sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==" - }, - "node_modules/stylis-rule-sheet": { - "version": "0.0.10", - "resolved": "https://registry.npmjs.org/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz", - "integrity": "sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw==", - "peerDependencies": { - "stylis": "^3.5.0" - } + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.3.0.tgz", + "integrity": "sha512-E87pIogpwUsUwXw7dNyU4QDjdgVMy52m+XEOPEKUn161cCzWjjhPSQhByfd1CcNvrOLnXQ6OnnZDwnJrz/Z4YQ==" }, "node_modules/supports-color": { "version": "5.5.0", @@ -20510,7 +20515,7 @@ "version": "2.2.1", "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", - "devOptional": true, + "dev": true, "engines": { "node": ">=6" } @@ -20695,7 +20700,7 @@ "version": "5.17.7", "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.7.tgz", "integrity": "sha512-/bi0Zm2C6VAexlGgLlVxA0P2lru/sdLyfCVaRMfKVo9nWxbmz7f/sD8VPybPeSUJaJcwmCJis9pBIhcVcG1QcQ==", - "devOptional": true, + "dev": true, "dependencies": { "@jridgewell/source-map": "^0.3.3", "acorn": "^8.8.2", @@ -20713,7 +20718,7 @@ "version": "5.3.9", "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", - "devOptional": true, + "dev": true, "dependencies": { "@jridgewell/trace-mapping": "^0.3.17", "jest-worker": "^27.4.5", @@ -20747,7 +20752,7 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "devOptional": true, + "dev": true, "engines": { "node": ">=8" } @@ -20756,7 +20761,7 @@ "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", - "devOptional": true, + "dev": true, "dependencies": { "@types/node": "*", "merge-stream": "^2.0.0", @@ -20770,7 +20775,7 @@ "version": "8.1.1", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "devOptional": true, + "dev": true, "dependencies": { "has-flag": "^4.0.0" }, @@ -20785,7 +20790,7 @@ "version": "8.8.2", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", - "devOptional": true, + "dev": true, "bin": { "acorn": "bin/acorn" }, @@ -20797,7 +20802,7 @@ "version": "2.20.3", "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", - "devOptional": true + "dev": true }, "node_modules/test-exclude": { "version": "6.0.0", @@ -20946,6 +20951,11 @@ "node": ">=8.0" } }, + "node_modules/toggle-selection": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz", + "integrity": "sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==" + }, "node_modules/toidentifier": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", @@ -20979,6 +20989,11 @@ "node": ">=6.10" } }, + "node_modules/ts-easing": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/ts-easing/-/ts-easing-0.2.0.tgz", + "integrity": "sha512-Z86EW+fFFh/IFB1fqQ3/+7Zpf9t2ebOAxNI/V6Wo7r5gqiqtxmgTlQ1qbqQcjLKYeSHPTsEmvlJUDg/EuL0uHQ==" + }, "node_modules/ts-pnp": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz", @@ -21464,7 +21479,7 @@ "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "devOptional": true, + "dev": true, "dependencies": { "punycode": "^2.1.0" } @@ -21576,7 +21591,8 @@ "node_modules/util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true }, "node_modules/utila": { "version": "0.4.0", @@ -21749,7 +21765,6 @@ "version": "2.4.0", "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", - "devOptional": true, "dependencies": { "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.1.2" @@ -21776,7 +21791,7 @@ "version": "5.85.0", "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.85.0.tgz", "integrity": "sha512-7gazTiYqwo5OSqwH1tigLDL2r3qDeP2dOKYgd+LlXpsUMqDTklg6tOghexqky0/+6QY38kb/R/uRPUleuL43zg==", - "devOptional": true, + "dev": true, "dependencies": { "@types/eslint-scope": "^3.7.3", "@types/estree": "^1.0.0", @@ -21910,7 +21925,7 @@ "version": "3.2.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", - "devOptional": true, + "dev": true, "engines": { "node": ">=10.13.0" } @@ -21925,13 +21940,13 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", "integrity": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==", - "devOptional": true + "dev": true }, "node_modules/webpack/node_modules/acorn": { "version": "8.8.2", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", - "devOptional": true, + "dev": true, "bin": { "acorn": "bin/acorn" }, @@ -21943,7 +21958,7 @@ "version": "1.9.0", "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", - "devOptional": true, + "dev": true, "peerDependencies": { "acorn": "^8" } @@ -21952,7 +21967,7 @@ "version": "5.1.1", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "devOptional": true, + "dev": true, "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^4.1.1" @@ -21965,7 +21980,7 @@ "version": "4.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "devOptional": true, + "dev": true, "engines": { "node": ">=4.0" } @@ -22238,6 +22253,14 @@ "resolved": "https://registry.npmjs.org/youtube-api-v3-wrapper/-/youtube-api-v3-wrapper-2.3.0.tgz", "integrity": "sha512-/c4B0BSe2BEElGHO/VJt4KCqrScl7R7xG44BugvuGsBciP+fF03JN7gS/X0jnaGHOnng7GP1n320hDjwquZOgA==" }, + "node_modules/zod": { + "version": "3.21.4", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz", + "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + }, "node_modules/zwitch": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", diff --git a/package.json b/package.json index 840c3cef..eeea6e24 100644 --- a/package.json +++ b/package.json @@ -13,6 +13,7 @@ "build-storybook": "storybook build" }, "dependencies": { + "@next/font": "^13.4.19", "@radix-ui/react-alert-dialog": "^1.0.2", "@radix-ui/react-dialog": "^1.0.2", "@radix-ui/react-dropdown-menu": "^2.0.1", @@ -53,19 +54,20 @@ "lodash.debounce": "^4.0.8", "lodash.isequal": "^4.5.0", "meyer-reset-scss": "^2.0.4", - "next": "12.0.8", + "next": "^13.4.19", "next-i18next": "^10.5.0", "next-themes": "^0.2.1", "next-usequerystate": "^1.7.0", "pluralize": "^8.0.0", - "react": "^18.0.0", - "react-dom": "^18.0.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", "react-i18next": "^11.15.5", "react-infinite-scroll-component": "^6.1.0", "react-linkify": "^1.0.0-alpha", "react-lite-youtube-embed": "^2.3.52", "react-scroll": "^1.8.5", "react-string-replace": "^1.1.0", + "react-use": "^17.4.0", "remixicon-react": "^1.0.0", "resolve-url-loader": "^5.0.0", "sanitize-html": "^2.8.1", @@ -99,7 +101,7 @@ "@types/sanitize-html": "^2.8.0", "@types/uuid": "^9.0.0", "eslint": "8.7.0", - "eslint-config-next": "12.0.8", + "eslint-config-next": "^13.4.19", "eslint-plugin-storybook": "^0.6.11", "eslint-plugin-valtio": "^0.4.1", "sass-loader": "^13.2.2", From 67b7e3eb7357e6f07cc9e13b5b47584af8314f55 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sun, 20 Aug 2023 04:06:26 -0700 Subject: [PATCH 12/15] Add legacyBehavior flag to Links with nested a We'll fix this later --- components/GridRep/index.tsx | 2 +- components/about/LinkItem/index.tsx | 2 +- components/party/PartyHeader/index.tsx | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/components/GridRep/index.tsx b/components/GridRep/index.tsx index 11220f95..d720fe25 100644 --- a/components/GridRep/index.tsx +++ b/components/GridRep/index.tsx @@ -248,7 +248,7 @@ const GridRep = (props: Props) => { ) return ( - + {detailsWithUsername}
diff --git a/components/about/LinkItem/index.tsx b/components/about/LinkItem/index.tsx index e9114c34..ccd40c66 100644 --- a/components/about/LinkItem/index.tsx +++ b/components/about/LinkItem/index.tsx @@ -21,7 +21,7 @@ const LinkItem = ({ icon, title, link, className, ...props }: Props) => { return (
- +
{icon} diff --git a/components/party/PartyHeader/index.tsx b/components/party/PartyHeader/index.tsx index d394894d..4c889045 100644 --- a/components/party/PartyHeader/index.tsx +++ b/components/party/PartyHeader/index.tsx @@ -183,7 +183,7 @@ const PartyHeader = (props: Props) => { ) => { return ( @@ -193,7 +193,7 @@ const PartyHeader = (props: Props) => { const linkedRaidBlock = (raid: Raid) => { return ( From e9ead2c7b3a21d3524fe164b4f9182fc86e4bc4e Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sun, 20 Aug 2023 04:06:59 -0700 Subject: [PATCH 13/15] Implement custom font This implements our custom font at the tag level using useIsomorphicLayoutEffect --- pages/_app.tsx | 18 ++++++++++++++++-- pages/fonts/gk-variable.woff2 | Bin 0 -> 104108 bytes 2 files changed, 16 insertions(+), 2 deletions(-) create mode 100644 pages/fonts/gk-variable.woff2 diff --git a/pages/_app.tsx b/pages/_app.tsx index 6f3c64eb..d64c8bf9 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -1,6 +1,8 @@ import { appWithTranslation } from 'next-i18next' import Head from 'next/head' import Link from 'next/link' +import localFont from '@next/font/local' +import { useIsomorphicLayoutEffect } from 'react-use' import { useTranslation } from 'next-i18next' import { get } from 'local-storage' import { getCookie, setCookie } from 'cookies-next' @@ -22,6 +24,12 @@ import type { AppProps } from 'next/app' import DiscordIcon from '~public/icons/discord.svg' import ShareIcon from '~public/icons/Share.svg' + +const goalking = localFont({ + src: './fonts/gk-variable.woff2', + fallback: ['system-ui', 'inter', 'helvetica neue', 'sans-serif'], + variable: '--font-goalking', +}) import '../styles/globals.scss' function MyApp({ Component, pageProps }: AppProps) { @@ -29,6 +37,10 @@ function MyApp({ Component, pageProps }: AppProps) { const [mounted, setMounted] = useState(false) const [refresh, setRefresh] = useState(false) + useIsomorphicLayoutEffect(() => { + document.body.style.setProperty('--font-family', goalking.style.fontFamily) + }, []) + // Subscribe to app state to listen for account changes and // unsubscribe when component is unmounted const unsubscribe = subscribe(accountState, () => { @@ -111,7 +123,7 @@ function MyApp({ Component, pageProps }: AppProps) {

{t('errors.server_unavailable.discord')}

- + +
+ +
)} diff --git a/pages/fonts/gk-variable.woff2 b/pages/fonts/gk-variable.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..7504f57b5eaf1e37a3ab63027dfb5870a2110cae GIT binary patch literal 104108 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 Date: Sun, 20 Aug 2023 04:07:52 -0700 Subject: [PATCH 14/15] Implement custom font in styles --- components/common/Editor/index.module.scss | 2 -- styles/globals.scss | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/components/common/Editor/index.module.scss b/components/common/Editor/index.module.scss index fef838f1..186140fd 100644 --- a/components/common/Editor/index.module.scss +++ b/components/common/Editor/index.module.scss @@ -22,8 +22,6 @@ color: var(--text-primary); display: block; flex-grow: 1; - font-family: system-ui, -apple-system, 'Helvetica Neue', Helvetica, Arial, - sans-serif; font-size: $font-regular; line-height: 1.4; overflow: scroll; diff --git a/styles/globals.scss b/styles/globals.scss index a32a947a..39920e01 100644 --- a/styles/globals.scss +++ b/styles/globals.scss @@ -10,8 +10,7 @@ html { body { -webkit-font-smoothing: antialiased; box-sizing: border-box; - font-family: system-ui, -apple-system, 'Helvetica Neue', Helvetica, Arial, - sans-serif; + font-family: var(--font-family); font-size: 1.4rem; height: 100%; padding: $unit-2x !important; @@ -26,6 +25,7 @@ body { } main { + font-family: var(--font-goalking); min-height: 90%; } From 99c7eb73c16eafed13ffae97f75442d724ad19c6 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sun, 20 Aug 2023 04:08:28 -0700 Subject: [PATCH 15/15] Explicitly set on buttons, inputs and textareas --- styles/globals.scss | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/styles/globals.scss b/styles/globals.scss index 39920e01..02b079ad 100644 --- a/styles/globals.scss +++ b/styles/globals.scss @@ -66,8 +66,7 @@ button, input, textarea { border: 2px solid transparent; - font-family: system-ui, -apple-system, 'Helvetica Neue', Helvetica, Arial, - sans-serif; + font-family: var(--font-family); font-size: $font-regular; }