├── .dockerignore ├── .env.development ├── .env.e2e ├── .env.production ├── .eslintrc.json ├── .github ├── FUNDING.yml ├── release.yml └── workflows │ ├── ci.yml │ ├── claude-code-review.yml │ ├── create-release.yml │ ├── docker.yml │ └── tag.yml ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── config ├── Caddyfile └── entrypoint.sh ├── cypress.config.js ├── cypress ├── e2e │ └── pages │ │ ├── AcceptInvite.spec.cy.js │ │ ├── Billing.spec.cy.js │ │ ├── Demo.spec.cy.js │ │ ├── ForgotPassword.spec.cy.js │ │ ├── Login.spec.cy.js │ │ ├── RecoverAccount.spec.cy.js │ │ ├── Register.spec.cy.js │ │ ├── ResetPassword.spec.cy.js │ │ └── Verify2FA.spec.cy.js ├── fixtures │ └── responses │ │ ├── auth │ │ ├── dev.json │ │ ├── owner.json │ │ └── register.json │ │ ├── billing │ │ ├── free-plan.json │ │ ├── invoice.json │ │ ├── plans.json │ │ └── usage.json │ │ └── game-stats │ │ └── global.json └── support │ ├── commands.js │ └── e2e.js ├── index.html ├── package.json ├── public ├── favicon.ico └── robots.txt ├── renovate.json ├── setup-tests.js ├── src ├── App.tsx ├── Router.tsx ├── __mocks__ │ ├── gameFeedbackCategoryMock.ts │ ├── gameMock.ts │ ├── gameStatMock.ts │ ├── leaderboardMock.ts │ ├── organisationMock.ts │ ├── playerAliasMock.ts │ ├── playerMock.ts │ ├── pricingPlanMock.ts │ └── userMock.ts ├── api │ ├── api.ts │ ├── changePassword.ts │ ├── confirmEmail.ts │ ├── confirmEnable2FA.ts │ ├── confirmPlan.ts │ ├── createAPIKey.ts │ ├── createChannel.ts │ ├── createCheckoutSession.ts │ ├── createDataExport.ts │ ├── createDemo.ts │ ├── createFeedbackCategory.ts │ ├── createGame.ts │ ├── createGroup.ts │ ├── createInvite.ts │ ├── createLeaderboard.ts │ ├── createPortalSession.ts │ ├── createRecoveryCodes.ts │ ├── createStat.ts │ ├── deleteAPIKey.ts │ ├── deleteChannel.ts │ ├── deleteFeedbackCategory.ts │ ├── deleteGroup.ts │ ├── deleteLeaderboard.ts │ ├── deletePlayer.ts │ ├── deleteStat.ts │ ├── disable2FA.ts │ ├── disableIntegration.ts │ ├── enable2FA.ts │ ├── enableIntegration.ts │ ├── findLeaderboard.ts │ ├── getInvite.ts │ ├── login.ts │ ├── logout.ts │ ├── makeValidatedGetRequest.ts │ ├── makeValidatedRequest.ts │ ├── recoverAccount.ts │ ├── refreshAccess.ts │ ├── register.ts │ ├── requestNewPassword.ts │ ├── resetLeaderboard.ts │ ├── resetPassword.ts │ ├── resetStat.ts │ ├── syncLeaderboards.ts │ ├── syncStats.ts │ ├── toggledPinnedGroup.ts │ ├── updateAPIKey.ts │ ├── updateChannel.ts │ ├── updateFeedbackCategory.ts │ ├── updateGame.ts │ ├── updateGroup.ts │ ├── updateIntegration.ts │ ├── updateLeaderboard.ts │ ├── updateLeaderboardEntry.ts │ ├── updatePlayer.ts │ ├── updateStat.ts │ ├── updateStatValue.ts │ ├── useAPIKeys.ts │ ├── useChannels.ts │ ├── useDataExportEntities.ts │ ├── useDataExports.ts │ ├── useEventBreakdown.ts │ ├── useEvents.ts │ ├── useFeedback.ts │ ├── useFeedbackCategories.ts │ ├── useFindPlayer.ts │ ├── useGameActivities.ts │ ├── useGameSettings.ts │ ├── useGroupPreviewCount.ts │ ├── useGroupRules.ts │ ├── useGroups.ts │ ├── useHeadlines.ts │ ├── useIntegrations.ts │ ├── useLeaderboardEntries.ts │ ├── useLeaderboards.ts │ ├── useOrganisation.ts │ ├── useOrganisationPricingPlan.ts │ ├── usePinnedGroups.ts │ ├── usePlayerAuthActivities.ts │ ├── usePlayerEvents.ts │ ├── usePlayerHeadlines.ts │ ├── usePlayerLeaderboardEntries.ts │ ├── usePlayerSaves.ts │ ├── usePlayerStats.ts │ ├── usePlayers.ts │ ├── usePricingPlanUsage.ts │ ├── usePricingPlans.ts │ ├── useStats.ts │ ├── verify2FA.ts │ └── viewRecoveryCodes.ts ├── assets │ ├── talo-icon.svg │ └── talo-service.svg ├── components │ ├── Account2FA.tsx │ ├── ActivityRenderer.tsx │ ├── AlertBanner.tsx │ ├── Button.tsx │ ├── Checkbox.tsx │ ├── CheckboxButton.tsx │ ├── ConfirmEmailBanner.tsx │ ├── DateInput.tsx │ ├── DevDataStatus.tsx │ ├── DropdownMenu.tsx │ ├── ErrorMessage.tsx │ ├── Footer.tsx │ ├── GameSwitcher.tsx │ ├── GlobalBanners.tsx │ ├── HeadlineStat.tsx │ ├── Identifier.tsx │ ├── IntendedRouteHandler.tsx │ ├── Link.tsx │ ├── LinkButton.tsx │ ├── Loading.tsx │ ├── MobileMenu.tsx │ ├── Modal.tsx │ ├── NavBar.tsx │ ├── Page.tsx │ ├── Pagination.tsx │ ├── PlayerAliases.tsx │ ├── PlayerIdentifier.tsx │ ├── PropBadges.tsx │ ├── PropBadgesGrid.tsx │ ├── PropsEditor.tsx │ ├── RadioGroup.tsx │ ├── RecoveryCodes.tsx │ ├── SecondaryNav.tsx │ ├── SecondaryTitle.tsx │ ├── Select.tsx │ ├── ServicesLink.tsx │ ├── TaloInfoCard.tsx │ ├── TextInput.tsx │ ├── Tile.tsx │ ├── TimePeriodPicker.tsx │ ├── Title.tsx │ ├── UsageWarningBanner.tsx │ ├── __tests__ │ │ ├── Account2FA.test.tsx │ │ ├── ConfirmEmailBanner.test.tsx │ │ ├── DateInput.test.tsx │ │ ├── DevDataStatus.test.tsx │ │ ├── DropdownMenu.test.tsx │ │ ├── ErrorMessage.test.tsx │ │ ├── GameSwitcher.test.tsx │ │ ├── GlobalBanners.test.tsx │ │ ├── Link.test.tsx │ │ ├── MobileMenu.test.tsx │ │ ├── Modal.test.tsx │ │ ├── NavBar.test.tsx │ │ ├── Pagination.test.tsx │ │ ├── PlayerAliases.test.tsx │ │ ├── PlayerIdentifier.test.tsx │ │ ├── RecoveryCodes.test.tsx │ │ ├── SecondaryNav.test.tsx │ │ ├── ServicesLink.test.tsx │ │ ├── TimePeriodPicker.test.tsx │ │ └── Title.test.tsx │ ├── billing │ │ ├── BillingPortalTile.tsx │ │ ├── BillingUsageTile.tsx │ │ ├── PaymentRequiredBanner.tsx │ │ ├── PricingPlanTile.tsx │ │ ├── RegisterPlanBanner.tsx │ │ └── __tests__ │ │ │ ├── BillingPortalTile.test.tsx │ │ │ ├── BillingUsageTile.test.tsx │ │ │ ├── PaymentRequiredBanner.test.tsx │ │ │ ├── PricingPlanTile.test.tsx │ │ │ └── RegisterPlanBanner.test.tsx │ ├── charts │ │ ├── ChartTick.tsx │ │ ├── ChartTooltip.tsx │ │ └── __tests__ │ │ │ ├── ChartTick.test.tsx │ │ │ └── ChartTooltip.test.tsx │ ├── events │ │ ├── EventsContext.tsx │ │ ├── EventsDisplay.tsx │ │ ├── EventsFilter.tsx │ │ ├── EventsFiltersSection.tsx │ │ └── useEventsTimePeriod.tsx │ ├── saves │ │ ├── SaveContentFitManager.tsx │ │ └── SaveDataNode.tsx │ ├── tables │ │ ├── Table.tsx │ │ ├── TableBody.tsx │ │ ├── TableCell.tsx │ │ ├── TableHeader.tsx │ │ └── cells │ │ │ ├── DateCell.tsx │ │ │ └── PropsCell.tsx │ ├── toast │ │ ├── ToastContext.ts │ │ ├── ToastProvider.test.tsx │ │ └── ToastProvider.tsx │ └── toggles │ │ ├── DevDataToggle.tsx │ │ ├── Toggle.tsx │ │ └── __tests__ │ │ ├── DevDataToggle.test.tsx │ │ └── Toggle.test.tsx ├── constants │ ├── metaProps.ts │ ├── resetMode.ts │ ├── routes.ts │ ├── secondaryNavRoutes.ts │ └── userTypeMap.ts ├── entities │ ├── apiKey.ts │ ├── dataExport.ts │ ├── event.ts │ ├── game.ts │ ├── gameActivity.ts │ ├── gameChannels.ts │ ├── gameFeedback.ts │ ├── gameFeedbackCategory.ts │ ├── gameSave.ts │ ├── gameStat.ts │ ├── headline.ts │ ├── integration.ts │ ├── invite.ts │ ├── invoice.ts │ ├── leaderboard.ts │ ├── leaderboardEntry.ts │ ├── organisation.ts │ ├── player.ts │ ├── playerAlias.ts │ ├── playerAuthActivity.ts │ ├── playerGameStat.ts │ ├── playerGroup.ts │ ├── playerHeadline.ts │ ├── playerPresence.ts │ ├── pricingPlan.ts │ ├── prop.ts │ └── user.ts ├── index.tsx ├── modals │ ├── ChannelDetails.tsx │ ├── ConfirmPlanChange.tsx │ ├── FeedbackCategoryDetails.tsx │ ├── IntegrationDetails.tsx │ ├── LeaderboardDetails.tsx │ ├── NewGame.tsx │ ├── NewInvite.tsx │ ├── ResetLeaderboardEntries.tsx │ ├── ResetStat.tsx │ ├── Scopes.tsx │ ├── StatDetails.tsx │ ├── UpdateEntryScore.tsx │ ├── UpdateStatValue.tsx │ ├── __tests__ │ │ ├── ConfirmPlanChange.test.tsx │ │ ├── FeedbackCategoryDetails.test.tsx │ │ ├── IntegrationDetails.test.tsx │ │ ├── LeaderboardDetails.test.tsx │ │ ├── NewGame.test.tsx │ │ ├── Scopes.test.tsx │ │ └── StatDetails.test.tsx │ └── groups │ │ ├── GroupDetails.tsx │ │ ├── GroupRules.tsx │ │ └── __tests__ │ │ ├── GroupDetails.test.tsx │ │ ├── GroupRules.test.tsx │ │ └── unpackRules.test.tsx ├── pages │ ├── APIKeys.tsx │ ├── AcceptInvite.tsx │ ├── Account.tsx │ ├── Activity.tsx │ ├── Billing.tsx │ ├── Channels.tsx │ ├── ConfirmPassword.tsx │ ├── Dashboard.tsx │ ├── DataExports.tsx │ ├── Demo.tsx │ ├── EventBreakdown.tsx │ ├── EventsOverview.tsx │ ├── Feedback.tsx │ ├── FeedbackCategories.tsx │ ├── ForgotPassword.tsx │ ├── GameProps.tsx │ ├── GameSettings.tsx │ ├── Groups.tsx │ ├── Integrations.tsx │ ├── LeaderboardEntries.tsx │ ├── Leaderboards.tsx │ ├── Login.tsx │ ├── NotFound.tsx │ ├── Organisation.tsx │ ├── PlayerEvents.tsx │ ├── PlayerLeaderboardEntries.tsx │ ├── PlayerProfile.tsx │ ├── PlayerProps.tsx │ ├── PlayerSaveContent.tsx │ ├── PlayerSaves.tsx │ ├── PlayerStats.tsx │ ├── Players.tsx │ ├── RecoverAccount.tsx │ ├── Register.tsx │ ├── ResetPassword.tsx │ ├── StatMetrics.tsx │ ├── Stats.tsx │ ├── Verify2FA.tsx │ └── __tests__ │ │ ├── Activity.test.tsx │ │ ├── Billing.test.tsx │ │ ├── Dashboard.test.tsx │ │ ├── ForgotPassword.test.tsx │ │ ├── Integrations.test.tsx │ │ ├── PlayerProps.test.tsx │ │ ├── Register.test.tsx │ │ └── ResetPassword.test.tsx ├── services │ ├── AuthService.ts │ └── __tests__ │ │ └── AuthService.test.ts ├── state │ ├── RecoilObserver.tsx │ ├── activeGameState.ts │ ├── devDataState.ts │ ├── gamesState.ts │ ├── justConfirmedEmailState.ts │ ├── organisationState.ts │ ├── saveDataNodeSizesState.ts │ └── userState.ts ├── styles │ ├── index.css │ └── theme.ts ├── utils │ ├── KitchenSink.tsx │ ├── __tests__ │ │ ├── buildError.test.ts │ │ ├── canPerformAction.test.ts │ │ ├── usePlayer.test.tsx │ │ ├── useSortedItems.test.tsx │ │ └── useTimePeriod.test.tsx │ ├── buildError.ts │ ├── canPerformAction.ts │ ├── canViewPage.ts │ ├── convertDateToUTC.ts │ ├── getEventColour.ts │ ├── group-rules │ │ ├── __tests__ │ │ │ ├── isGroupRuleValid.test.ts │ │ │ └── prepareRule.test.ts │ │ ├── isGroupRuleValid.ts │ │ ├── prepareRule.ts │ │ └── unpackRules.ts │ ├── useDaySections.ts │ ├── useIntendedRoute.ts │ ├── useLocalStorage.ts │ ├── useNodeGraph.ts │ ├── usePlayer.ts │ ├── useSearch.ts │ ├── useSortedItems.ts │ ├── useTimePeriod.ts │ ├── useTimePeriodAndDates.ts │ └── validation │ │ └── nullableNumber.ts └── vite-env.d.ts ├── tsconfig.build.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/.env.development -------------------------------------------------------------------------------- /.env.e2e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/.env.e2e -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/.env.production -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: TaloDev 2 | -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/claude-code-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/.github/workflows/claude-code-review.yml -------------------------------------------------------------------------------- /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.github/workflows/tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/.github/workflows/tag.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | *.log 4 | .DS_Store 5 | .eslintcache 6 | coverage 7 | -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npx lint-staged 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/README.md -------------------------------------------------------------------------------- /config/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/config/Caddyfile -------------------------------------------------------------------------------- /config/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/config/entrypoint.sh -------------------------------------------------------------------------------- /cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/cypress.config.js -------------------------------------------------------------------------------- /cypress/e2e/pages/AcceptInvite.spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/cypress/e2e/pages/AcceptInvite.spec.cy.js -------------------------------------------------------------------------------- /cypress/e2e/pages/Billing.spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/cypress/e2e/pages/Billing.spec.cy.js -------------------------------------------------------------------------------- /cypress/e2e/pages/Demo.spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/cypress/e2e/pages/Demo.spec.cy.js -------------------------------------------------------------------------------- /cypress/e2e/pages/ForgotPassword.spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/cypress/e2e/pages/ForgotPassword.spec.cy.js -------------------------------------------------------------------------------- /cypress/e2e/pages/Login.spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/cypress/e2e/pages/Login.spec.cy.js -------------------------------------------------------------------------------- /cypress/e2e/pages/RecoverAccount.spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/cypress/e2e/pages/RecoverAccount.spec.cy.js -------------------------------------------------------------------------------- /cypress/e2e/pages/Register.spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/cypress/e2e/pages/Register.spec.cy.js -------------------------------------------------------------------------------- /cypress/e2e/pages/ResetPassword.spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/cypress/e2e/pages/ResetPassword.spec.cy.js -------------------------------------------------------------------------------- /cypress/e2e/pages/Verify2FA.spec.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/cypress/e2e/pages/Verify2FA.spec.cy.js -------------------------------------------------------------------------------- /cypress/fixtures/responses/auth/dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/cypress/fixtures/responses/auth/dev.json -------------------------------------------------------------------------------- /cypress/fixtures/responses/auth/owner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/cypress/fixtures/responses/auth/owner.json -------------------------------------------------------------------------------- /cypress/fixtures/responses/auth/register.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/cypress/fixtures/responses/auth/register.json -------------------------------------------------------------------------------- /cypress/fixtures/responses/billing/free-plan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/cypress/fixtures/responses/billing/free-plan.json -------------------------------------------------------------------------------- /cypress/fixtures/responses/billing/invoice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/cypress/fixtures/responses/billing/invoice.json -------------------------------------------------------------------------------- /cypress/fixtures/responses/billing/plans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/cypress/fixtures/responses/billing/plans.json -------------------------------------------------------------------------------- /cypress/fixtures/responses/billing/usage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/cypress/fixtures/responses/billing/usage.json -------------------------------------------------------------------------------- /cypress/fixtures/responses/game-stats/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/cypress/fixtures/responses/game-stats/global.json -------------------------------------------------------------------------------- /cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/cypress/support/commands.js -------------------------------------------------------------------------------- /cypress/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/cypress/support/e2e.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/public/robots.txt -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/renovate.json -------------------------------------------------------------------------------- /setup-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/setup-tests.js -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/Router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/Router.tsx -------------------------------------------------------------------------------- /src/__mocks__/gameFeedbackCategoryMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/__mocks__/gameFeedbackCategoryMock.ts -------------------------------------------------------------------------------- /src/__mocks__/gameMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/__mocks__/gameMock.ts -------------------------------------------------------------------------------- /src/__mocks__/gameStatMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/__mocks__/gameStatMock.ts -------------------------------------------------------------------------------- /src/__mocks__/leaderboardMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/__mocks__/leaderboardMock.ts -------------------------------------------------------------------------------- /src/__mocks__/organisationMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/__mocks__/organisationMock.ts -------------------------------------------------------------------------------- /src/__mocks__/playerAliasMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/__mocks__/playerAliasMock.ts -------------------------------------------------------------------------------- /src/__mocks__/playerMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/__mocks__/playerMock.ts -------------------------------------------------------------------------------- /src/__mocks__/pricingPlanMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/__mocks__/pricingPlanMock.ts -------------------------------------------------------------------------------- /src/__mocks__/userMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/__mocks__/userMock.ts -------------------------------------------------------------------------------- /src/api/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/api.ts -------------------------------------------------------------------------------- /src/api/changePassword.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/changePassword.ts -------------------------------------------------------------------------------- /src/api/confirmEmail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/confirmEmail.ts -------------------------------------------------------------------------------- /src/api/confirmEnable2FA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/confirmEnable2FA.ts -------------------------------------------------------------------------------- /src/api/confirmPlan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/confirmPlan.ts -------------------------------------------------------------------------------- /src/api/createAPIKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/createAPIKey.ts -------------------------------------------------------------------------------- /src/api/createChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/createChannel.ts -------------------------------------------------------------------------------- /src/api/createCheckoutSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/createCheckoutSession.ts -------------------------------------------------------------------------------- /src/api/createDataExport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/createDataExport.ts -------------------------------------------------------------------------------- /src/api/createDemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/createDemo.ts -------------------------------------------------------------------------------- /src/api/createFeedbackCategory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/createFeedbackCategory.ts -------------------------------------------------------------------------------- /src/api/createGame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/createGame.ts -------------------------------------------------------------------------------- /src/api/createGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/createGroup.ts -------------------------------------------------------------------------------- /src/api/createInvite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/createInvite.ts -------------------------------------------------------------------------------- /src/api/createLeaderboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/createLeaderboard.ts -------------------------------------------------------------------------------- /src/api/createPortalSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/createPortalSession.ts -------------------------------------------------------------------------------- /src/api/createRecoveryCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/createRecoveryCodes.ts -------------------------------------------------------------------------------- /src/api/createStat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/createStat.ts -------------------------------------------------------------------------------- /src/api/deleteAPIKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/deleteAPIKey.ts -------------------------------------------------------------------------------- /src/api/deleteChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/deleteChannel.ts -------------------------------------------------------------------------------- /src/api/deleteFeedbackCategory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/deleteFeedbackCategory.ts -------------------------------------------------------------------------------- /src/api/deleteGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/deleteGroup.ts -------------------------------------------------------------------------------- /src/api/deleteLeaderboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/deleteLeaderboard.ts -------------------------------------------------------------------------------- /src/api/deletePlayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/deletePlayer.ts -------------------------------------------------------------------------------- /src/api/deleteStat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/deleteStat.ts -------------------------------------------------------------------------------- /src/api/disable2FA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/disable2FA.ts -------------------------------------------------------------------------------- /src/api/disableIntegration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/disableIntegration.ts -------------------------------------------------------------------------------- /src/api/enable2FA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/enable2FA.ts -------------------------------------------------------------------------------- /src/api/enableIntegration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/enableIntegration.ts -------------------------------------------------------------------------------- /src/api/findLeaderboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/findLeaderboard.ts -------------------------------------------------------------------------------- /src/api/getInvite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/getInvite.ts -------------------------------------------------------------------------------- /src/api/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/login.ts -------------------------------------------------------------------------------- /src/api/logout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/logout.ts -------------------------------------------------------------------------------- /src/api/makeValidatedGetRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/makeValidatedGetRequest.ts -------------------------------------------------------------------------------- /src/api/makeValidatedRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/makeValidatedRequest.ts -------------------------------------------------------------------------------- /src/api/recoverAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/recoverAccount.ts -------------------------------------------------------------------------------- /src/api/refreshAccess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/refreshAccess.ts -------------------------------------------------------------------------------- /src/api/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/register.ts -------------------------------------------------------------------------------- /src/api/requestNewPassword.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/requestNewPassword.ts -------------------------------------------------------------------------------- /src/api/resetLeaderboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/resetLeaderboard.ts -------------------------------------------------------------------------------- /src/api/resetPassword.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/resetPassword.ts -------------------------------------------------------------------------------- /src/api/resetStat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/resetStat.ts -------------------------------------------------------------------------------- /src/api/syncLeaderboards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/syncLeaderboards.ts -------------------------------------------------------------------------------- /src/api/syncStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/syncStats.ts -------------------------------------------------------------------------------- /src/api/toggledPinnedGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/toggledPinnedGroup.ts -------------------------------------------------------------------------------- /src/api/updateAPIKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/updateAPIKey.ts -------------------------------------------------------------------------------- /src/api/updateChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/updateChannel.ts -------------------------------------------------------------------------------- /src/api/updateFeedbackCategory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/updateFeedbackCategory.ts -------------------------------------------------------------------------------- /src/api/updateGame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/updateGame.ts -------------------------------------------------------------------------------- /src/api/updateGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/updateGroup.ts -------------------------------------------------------------------------------- /src/api/updateIntegration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/updateIntegration.ts -------------------------------------------------------------------------------- /src/api/updateLeaderboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/updateLeaderboard.ts -------------------------------------------------------------------------------- /src/api/updateLeaderboardEntry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/updateLeaderboardEntry.ts -------------------------------------------------------------------------------- /src/api/updatePlayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/updatePlayer.ts -------------------------------------------------------------------------------- /src/api/updateStat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/updateStat.ts -------------------------------------------------------------------------------- /src/api/updateStatValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/updateStatValue.ts -------------------------------------------------------------------------------- /src/api/useAPIKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/useAPIKeys.ts -------------------------------------------------------------------------------- /src/api/useChannels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/useChannels.ts -------------------------------------------------------------------------------- /src/api/useDataExportEntities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/useDataExportEntities.ts -------------------------------------------------------------------------------- /src/api/useDataExports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/useDataExports.ts -------------------------------------------------------------------------------- /src/api/useEventBreakdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/useEventBreakdown.ts -------------------------------------------------------------------------------- /src/api/useEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/useEvents.ts -------------------------------------------------------------------------------- /src/api/useFeedback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/useFeedback.ts -------------------------------------------------------------------------------- /src/api/useFeedbackCategories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/useFeedbackCategories.ts -------------------------------------------------------------------------------- /src/api/useFindPlayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/useFindPlayer.ts -------------------------------------------------------------------------------- /src/api/useGameActivities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/useGameActivities.ts -------------------------------------------------------------------------------- /src/api/useGameSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/useGameSettings.ts -------------------------------------------------------------------------------- /src/api/useGroupPreviewCount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/useGroupPreviewCount.ts -------------------------------------------------------------------------------- /src/api/useGroupRules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/useGroupRules.ts -------------------------------------------------------------------------------- /src/api/useGroups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/useGroups.ts -------------------------------------------------------------------------------- /src/api/useHeadlines.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/useHeadlines.ts -------------------------------------------------------------------------------- /src/api/useIntegrations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/useIntegrations.ts -------------------------------------------------------------------------------- /src/api/useLeaderboardEntries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/useLeaderboardEntries.ts -------------------------------------------------------------------------------- /src/api/useLeaderboards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/useLeaderboards.ts -------------------------------------------------------------------------------- /src/api/useOrganisation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/useOrganisation.ts -------------------------------------------------------------------------------- /src/api/useOrganisationPricingPlan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/useOrganisationPricingPlan.ts -------------------------------------------------------------------------------- /src/api/usePinnedGroups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/usePinnedGroups.ts -------------------------------------------------------------------------------- /src/api/usePlayerAuthActivities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/usePlayerAuthActivities.ts -------------------------------------------------------------------------------- /src/api/usePlayerEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/usePlayerEvents.ts -------------------------------------------------------------------------------- /src/api/usePlayerHeadlines.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/usePlayerHeadlines.ts -------------------------------------------------------------------------------- /src/api/usePlayerLeaderboardEntries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/usePlayerLeaderboardEntries.ts -------------------------------------------------------------------------------- /src/api/usePlayerSaves.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/usePlayerSaves.ts -------------------------------------------------------------------------------- /src/api/usePlayerStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/usePlayerStats.ts -------------------------------------------------------------------------------- /src/api/usePlayers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/usePlayers.ts -------------------------------------------------------------------------------- /src/api/usePricingPlanUsage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/usePricingPlanUsage.ts -------------------------------------------------------------------------------- /src/api/usePricingPlans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/usePricingPlans.ts -------------------------------------------------------------------------------- /src/api/useStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/useStats.ts -------------------------------------------------------------------------------- /src/api/verify2FA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/verify2FA.ts -------------------------------------------------------------------------------- /src/api/viewRecoveryCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/api/viewRecoveryCodes.ts -------------------------------------------------------------------------------- /src/assets/talo-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/assets/talo-icon.svg -------------------------------------------------------------------------------- /src/assets/talo-service.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/assets/talo-service.svg -------------------------------------------------------------------------------- /src/components/Account2FA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/Account2FA.tsx -------------------------------------------------------------------------------- /src/components/ActivityRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/ActivityRenderer.tsx -------------------------------------------------------------------------------- /src/components/AlertBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/AlertBanner.tsx -------------------------------------------------------------------------------- /src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/Button.tsx -------------------------------------------------------------------------------- /src/components/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/Checkbox.tsx -------------------------------------------------------------------------------- /src/components/CheckboxButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/CheckboxButton.tsx -------------------------------------------------------------------------------- /src/components/ConfirmEmailBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/ConfirmEmailBanner.tsx -------------------------------------------------------------------------------- /src/components/DateInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/DateInput.tsx -------------------------------------------------------------------------------- /src/components/DevDataStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/DevDataStatus.tsx -------------------------------------------------------------------------------- /src/components/DropdownMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/DropdownMenu.tsx -------------------------------------------------------------------------------- /src/components/ErrorMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/ErrorMessage.tsx -------------------------------------------------------------------------------- /src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/Footer.tsx -------------------------------------------------------------------------------- /src/components/GameSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/GameSwitcher.tsx -------------------------------------------------------------------------------- /src/components/GlobalBanners.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/GlobalBanners.tsx -------------------------------------------------------------------------------- /src/components/HeadlineStat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/HeadlineStat.tsx -------------------------------------------------------------------------------- /src/components/Identifier.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/Identifier.tsx -------------------------------------------------------------------------------- /src/components/IntendedRouteHandler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/IntendedRouteHandler.tsx -------------------------------------------------------------------------------- /src/components/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/Link.tsx -------------------------------------------------------------------------------- /src/components/LinkButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/LinkButton.tsx -------------------------------------------------------------------------------- /src/components/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/Loading.tsx -------------------------------------------------------------------------------- /src/components/MobileMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/MobileMenu.tsx -------------------------------------------------------------------------------- /src/components/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/Modal.tsx -------------------------------------------------------------------------------- /src/components/NavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/NavBar.tsx -------------------------------------------------------------------------------- /src/components/Page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/Page.tsx -------------------------------------------------------------------------------- /src/components/Pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/Pagination.tsx -------------------------------------------------------------------------------- /src/components/PlayerAliases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/PlayerAliases.tsx -------------------------------------------------------------------------------- /src/components/PlayerIdentifier.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/PlayerIdentifier.tsx -------------------------------------------------------------------------------- /src/components/PropBadges.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/PropBadges.tsx -------------------------------------------------------------------------------- /src/components/PropBadgesGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/PropBadgesGrid.tsx -------------------------------------------------------------------------------- /src/components/PropsEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/PropsEditor.tsx -------------------------------------------------------------------------------- /src/components/RadioGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/RadioGroup.tsx -------------------------------------------------------------------------------- /src/components/RecoveryCodes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/RecoveryCodes.tsx -------------------------------------------------------------------------------- /src/components/SecondaryNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/SecondaryNav.tsx -------------------------------------------------------------------------------- /src/components/SecondaryTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/SecondaryTitle.tsx -------------------------------------------------------------------------------- /src/components/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/Select.tsx -------------------------------------------------------------------------------- /src/components/ServicesLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/ServicesLink.tsx -------------------------------------------------------------------------------- /src/components/TaloInfoCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/TaloInfoCard.tsx -------------------------------------------------------------------------------- /src/components/TextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/TextInput.tsx -------------------------------------------------------------------------------- /src/components/Tile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/Tile.tsx -------------------------------------------------------------------------------- /src/components/TimePeriodPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/TimePeriodPicker.tsx -------------------------------------------------------------------------------- /src/components/Title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/Title.tsx -------------------------------------------------------------------------------- /src/components/UsageWarningBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/UsageWarningBanner.tsx -------------------------------------------------------------------------------- /src/components/__tests__/Account2FA.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/__tests__/Account2FA.test.tsx -------------------------------------------------------------------------------- /src/components/__tests__/ConfirmEmailBanner.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/__tests__/ConfirmEmailBanner.test.tsx -------------------------------------------------------------------------------- /src/components/__tests__/DateInput.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/__tests__/DateInput.test.tsx -------------------------------------------------------------------------------- /src/components/__tests__/DevDataStatus.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/__tests__/DevDataStatus.test.tsx -------------------------------------------------------------------------------- /src/components/__tests__/DropdownMenu.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/__tests__/DropdownMenu.test.tsx -------------------------------------------------------------------------------- /src/components/__tests__/ErrorMessage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/__tests__/ErrorMessage.test.tsx -------------------------------------------------------------------------------- /src/components/__tests__/GameSwitcher.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/__tests__/GameSwitcher.test.tsx -------------------------------------------------------------------------------- /src/components/__tests__/GlobalBanners.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/__tests__/GlobalBanners.test.tsx -------------------------------------------------------------------------------- /src/components/__tests__/Link.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/__tests__/Link.test.tsx -------------------------------------------------------------------------------- /src/components/__tests__/MobileMenu.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/__tests__/MobileMenu.test.tsx -------------------------------------------------------------------------------- /src/components/__tests__/Modal.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/__tests__/Modal.test.tsx -------------------------------------------------------------------------------- /src/components/__tests__/NavBar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/__tests__/NavBar.test.tsx -------------------------------------------------------------------------------- /src/components/__tests__/Pagination.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/__tests__/Pagination.test.tsx -------------------------------------------------------------------------------- /src/components/__tests__/PlayerAliases.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/__tests__/PlayerAliases.test.tsx -------------------------------------------------------------------------------- /src/components/__tests__/PlayerIdentifier.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/__tests__/PlayerIdentifier.test.tsx -------------------------------------------------------------------------------- /src/components/__tests__/RecoveryCodes.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/__tests__/RecoveryCodes.test.tsx -------------------------------------------------------------------------------- /src/components/__tests__/SecondaryNav.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/__tests__/SecondaryNav.test.tsx -------------------------------------------------------------------------------- /src/components/__tests__/ServicesLink.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/__tests__/ServicesLink.test.tsx -------------------------------------------------------------------------------- /src/components/__tests__/TimePeriodPicker.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/__tests__/TimePeriodPicker.test.tsx -------------------------------------------------------------------------------- /src/components/__tests__/Title.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/__tests__/Title.test.tsx -------------------------------------------------------------------------------- /src/components/billing/BillingPortalTile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/billing/BillingPortalTile.tsx -------------------------------------------------------------------------------- /src/components/billing/BillingUsageTile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/billing/BillingUsageTile.tsx -------------------------------------------------------------------------------- /src/components/billing/PaymentRequiredBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/billing/PaymentRequiredBanner.tsx -------------------------------------------------------------------------------- /src/components/billing/PricingPlanTile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/billing/PricingPlanTile.tsx -------------------------------------------------------------------------------- /src/components/billing/RegisterPlanBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/billing/RegisterPlanBanner.tsx -------------------------------------------------------------------------------- /src/components/billing/__tests__/BillingPortalTile.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/billing/__tests__/BillingPortalTile.test.tsx -------------------------------------------------------------------------------- /src/components/billing/__tests__/BillingUsageTile.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/billing/__tests__/BillingUsageTile.test.tsx -------------------------------------------------------------------------------- /src/components/billing/__tests__/PaymentRequiredBanner.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/billing/__tests__/PaymentRequiredBanner.test.tsx -------------------------------------------------------------------------------- /src/components/billing/__tests__/PricingPlanTile.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/billing/__tests__/PricingPlanTile.test.tsx -------------------------------------------------------------------------------- /src/components/billing/__tests__/RegisterPlanBanner.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/billing/__tests__/RegisterPlanBanner.test.tsx -------------------------------------------------------------------------------- /src/components/charts/ChartTick.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/charts/ChartTick.tsx -------------------------------------------------------------------------------- /src/components/charts/ChartTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/charts/ChartTooltip.tsx -------------------------------------------------------------------------------- /src/components/charts/__tests__/ChartTick.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/charts/__tests__/ChartTick.test.tsx -------------------------------------------------------------------------------- /src/components/charts/__tests__/ChartTooltip.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/charts/__tests__/ChartTooltip.test.tsx -------------------------------------------------------------------------------- /src/components/events/EventsContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/events/EventsContext.tsx -------------------------------------------------------------------------------- /src/components/events/EventsDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/events/EventsDisplay.tsx -------------------------------------------------------------------------------- /src/components/events/EventsFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/events/EventsFilter.tsx -------------------------------------------------------------------------------- /src/components/events/EventsFiltersSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/events/EventsFiltersSection.tsx -------------------------------------------------------------------------------- /src/components/events/useEventsTimePeriod.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/events/useEventsTimePeriod.tsx -------------------------------------------------------------------------------- /src/components/saves/SaveContentFitManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/saves/SaveContentFitManager.tsx -------------------------------------------------------------------------------- /src/components/saves/SaveDataNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/saves/SaveDataNode.tsx -------------------------------------------------------------------------------- /src/components/tables/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/tables/Table.tsx -------------------------------------------------------------------------------- /src/components/tables/TableBody.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/tables/TableBody.tsx -------------------------------------------------------------------------------- /src/components/tables/TableCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/tables/TableCell.tsx -------------------------------------------------------------------------------- /src/components/tables/TableHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/tables/TableHeader.tsx -------------------------------------------------------------------------------- /src/components/tables/cells/DateCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/tables/cells/DateCell.tsx -------------------------------------------------------------------------------- /src/components/tables/cells/PropsCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/tables/cells/PropsCell.tsx -------------------------------------------------------------------------------- /src/components/toast/ToastContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/toast/ToastContext.ts -------------------------------------------------------------------------------- /src/components/toast/ToastProvider.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/toast/ToastProvider.test.tsx -------------------------------------------------------------------------------- /src/components/toast/ToastProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/toast/ToastProvider.tsx -------------------------------------------------------------------------------- /src/components/toggles/DevDataToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/toggles/DevDataToggle.tsx -------------------------------------------------------------------------------- /src/components/toggles/Toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/toggles/Toggle.tsx -------------------------------------------------------------------------------- /src/components/toggles/__tests__/DevDataToggle.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/toggles/__tests__/DevDataToggle.test.tsx -------------------------------------------------------------------------------- /src/components/toggles/__tests__/Toggle.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/components/toggles/__tests__/Toggle.test.tsx -------------------------------------------------------------------------------- /src/constants/metaProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/constants/metaProps.ts -------------------------------------------------------------------------------- /src/constants/resetMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/constants/resetMode.ts -------------------------------------------------------------------------------- /src/constants/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/constants/routes.ts -------------------------------------------------------------------------------- /src/constants/secondaryNavRoutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/constants/secondaryNavRoutes.ts -------------------------------------------------------------------------------- /src/constants/userTypeMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/constants/userTypeMap.ts -------------------------------------------------------------------------------- /src/entities/apiKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/entities/apiKey.ts -------------------------------------------------------------------------------- /src/entities/dataExport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/entities/dataExport.ts -------------------------------------------------------------------------------- /src/entities/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/entities/event.ts -------------------------------------------------------------------------------- /src/entities/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/entities/game.ts -------------------------------------------------------------------------------- /src/entities/gameActivity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/entities/gameActivity.ts -------------------------------------------------------------------------------- /src/entities/gameChannels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/entities/gameChannels.ts -------------------------------------------------------------------------------- /src/entities/gameFeedback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/entities/gameFeedback.ts -------------------------------------------------------------------------------- /src/entities/gameFeedbackCategory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/entities/gameFeedbackCategory.ts -------------------------------------------------------------------------------- /src/entities/gameSave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/entities/gameSave.ts -------------------------------------------------------------------------------- /src/entities/gameStat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/entities/gameStat.ts -------------------------------------------------------------------------------- /src/entities/headline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/entities/headline.ts -------------------------------------------------------------------------------- /src/entities/integration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/entities/integration.ts -------------------------------------------------------------------------------- /src/entities/invite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/entities/invite.ts -------------------------------------------------------------------------------- /src/entities/invoice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/entities/invoice.ts -------------------------------------------------------------------------------- /src/entities/leaderboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/entities/leaderboard.ts -------------------------------------------------------------------------------- /src/entities/leaderboardEntry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/entities/leaderboardEntry.ts -------------------------------------------------------------------------------- /src/entities/organisation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/entities/organisation.ts -------------------------------------------------------------------------------- /src/entities/player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/entities/player.ts -------------------------------------------------------------------------------- /src/entities/playerAlias.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/entities/playerAlias.ts -------------------------------------------------------------------------------- /src/entities/playerAuthActivity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/entities/playerAuthActivity.ts -------------------------------------------------------------------------------- /src/entities/playerGameStat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/entities/playerGameStat.ts -------------------------------------------------------------------------------- /src/entities/playerGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/entities/playerGroup.ts -------------------------------------------------------------------------------- /src/entities/playerHeadline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/entities/playerHeadline.ts -------------------------------------------------------------------------------- /src/entities/playerPresence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/entities/playerPresence.ts -------------------------------------------------------------------------------- /src/entities/pricingPlan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/entities/pricingPlan.ts -------------------------------------------------------------------------------- /src/entities/prop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/entities/prop.ts -------------------------------------------------------------------------------- /src/entities/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/entities/user.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/modals/ChannelDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/modals/ChannelDetails.tsx -------------------------------------------------------------------------------- /src/modals/ConfirmPlanChange.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/modals/ConfirmPlanChange.tsx -------------------------------------------------------------------------------- /src/modals/FeedbackCategoryDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/modals/FeedbackCategoryDetails.tsx -------------------------------------------------------------------------------- /src/modals/IntegrationDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/modals/IntegrationDetails.tsx -------------------------------------------------------------------------------- /src/modals/LeaderboardDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/modals/LeaderboardDetails.tsx -------------------------------------------------------------------------------- /src/modals/NewGame.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/modals/NewGame.tsx -------------------------------------------------------------------------------- /src/modals/NewInvite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/modals/NewInvite.tsx -------------------------------------------------------------------------------- /src/modals/ResetLeaderboardEntries.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/modals/ResetLeaderboardEntries.tsx -------------------------------------------------------------------------------- /src/modals/ResetStat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/modals/ResetStat.tsx -------------------------------------------------------------------------------- /src/modals/Scopes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/modals/Scopes.tsx -------------------------------------------------------------------------------- /src/modals/StatDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/modals/StatDetails.tsx -------------------------------------------------------------------------------- /src/modals/UpdateEntryScore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/modals/UpdateEntryScore.tsx -------------------------------------------------------------------------------- /src/modals/UpdateStatValue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/modals/UpdateStatValue.tsx -------------------------------------------------------------------------------- /src/modals/__tests__/ConfirmPlanChange.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/modals/__tests__/ConfirmPlanChange.test.tsx -------------------------------------------------------------------------------- /src/modals/__tests__/FeedbackCategoryDetails.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/modals/__tests__/FeedbackCategoryDetails.test.tsx -------------------------------------------------------------------------------- /src/modals/__tests__/IntegrationDetails.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/modals/__tests__/IntegrationDetails.test.tsx -------------------------------------------------------------------------------- /src/modals/__tests__/LeaderboardDetails.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/modals/__tests__/LeaderboardDetails.test.tsx -------------------------------------------------------------------------------- /src/modals/__tests__/NewGame.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/modals/__tests__/NewGame.test.tsx -------------------------------------------------------------------------------- /src/modals/__tests__/Scopes.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/modals/__tests__/Scopes.test.tsx -------------------------------------------------------------------------------- /src/modals/__tests__/StatDetails.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/modals/__tests__/StatDetails.test.tsx -------------------------------------------------------------------------------- /src/modals/groups/GroupDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/modals/groups/GroupDetails.tsx -------------------------------------------------------------------------------- /src/modals/groups/GroupRules.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/modals/groups/GroupRules.tsx -------------------------------------------------------------------------------- /src/modals/groups/__tests__/GroupDetails.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/modals/groups/__tests__/GroupDetails.test.tsx -------------------------------------------------------------------------------- /src/modals/groups/__tests__/GroupRules.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/modals/groups/__tests__/GroupRules.test.tsx -------------------------------------------------------------------------------- /src/modals/groups/__tests__/unpackRules.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/modals/groups/__tests__/unpackRules.test.tsx -------------------------------------------------------------------------------- /src/pages/APIKeys.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/APIKeys.tsx -------------------------------------------------------------------------------- /src/pages/AcceptInvite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/AcceptInvite.tsx -------------------------------------------------------------------------------- /src/pages/Account.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/Account.tsx -------------------------------------------------------------------------------- /src/pages/Activity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/Activity.tsx -------------------------------------------------------------------------------- /src/pages/Billing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/Billing.tsx -------------------------------------------------------------------------------- /src/pages/Channels.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/Channels.tsx -------------------------------------------------------------------------------- /src/pages/ConfirmPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/ConfirmPassword.tsx -------------------------------------------------------------------------------- /src/pages/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/Dashboard.tsx -------------------------------------------------------------------------------- /src/pages/DataExports.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/DataExports.tsx -------------------------------------------------------------------------------- /src/pages/Demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/Demo.tsx -------------------------------------------------------------------------------- /src/pages/EventBreakdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/EventBreakdown.tsx -------------------------------------------------------------------------------- /src/pages/EventsOverview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/EventsOverview.tsx -------------------------------------------------------------------------------- /src/pages/Feedback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/Feedback.tsx -------------------------------------------------------------------------------- /src/pages/FeedbackCategories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/FeedbackCategories.tsx -------------------------------------------------------------------------------- /src/pages/ForgotPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/ForgotPassword.tsx -------------------------------------------------------------------------------- /src/pages/GameProps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/GameProps.tsx -------------------------------------------------------------------------------- /src/pages/GameSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/GameSettings.tsx -------------------------------------------------------------------------------- /src/pages/Groups.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/Groups.tsx -------------------------------------------------------------------------------- /src/pages/Integrations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/Integrations.tsx -------------------------------------------------------------------------------- /src/pages/LeaderboardEntries.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/LeaderboardEntries.tsx -------------------------------------------------------------------------------- /src/pages/Leaderboards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/Leaderboards.tsx -------------------------------------------------------------------------------- /src/pages/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/Login.tsx -------------------------------------------------------------------------------- /src/pages/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/NotFound.tsx -------------------------------------------------------------------------------- /src/pages/Organisation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/Organisation.tsx -------------------------------------------------------------------------------- /src/pages/PlayerEvents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/PlayerEvents.tsx -------------------------------------------------------------------------------- /src/pages/PlayerLeaderboardEntries.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/PlayerLeaderboardEntries.tsx -------------------------------------------------------------------------------- /src/pages/PlayerProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/PlayerProfile.tsx -------------------------------------------------------------------------------- /src/pages/PlayerProps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/PlayerProps.tsx -------------------------------------------------------------------------------- /src/pages/PlayerSaveContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/PlayerSaveContent.tsx -------------------------------------------------------------------------------- /src/pages/PlayerSaves.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/PlayerSaves.tsx -------------------------------------------------------------------------------- /src/pages/PlayerStats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/PlayerStats.tsx -------------------------------------------------------------------------------- /src/pages/Players.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/Players.tsx -------------------------------------------------------------------------------- /src/pages/RecoverAccount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/RecoverAccount.tsx -------------------------------------------------------------------------------- /src/pages/Register.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/Register.tsx -------------------------------------------------------------------------------- /src/pages/ResetPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/ResetPassword.tsx -------------------------------------------------------------------------------- /src/pages/StatMetrics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/StatMetrics.tsx -------------------------------------------------------------------------------- /src/pages/Stats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/Stats.tsx -------------------------------------------------------------------------------- /src/pages/Verify2FA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/Verify2FA.tsx -------------------------------------------------------------------------------- /src/pages/__tests__/Activity.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/__tests__/Activity.test.tsx -------------------------------------------------------------------------------- /src/pages/__tests__/Billing.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/__tests__/Billing.test.tsx -------------------------------------------------------------------------------- /src/pages/__tests__/Dashboard.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/__tests__/Dashboard.test.tsx -------------------------------------------------------------------------------- /src/pages/__tests__/ForgotPassword.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/__tests__/ForgotPassword.test.tsx -------------------------------------------------------------------------------- /src/pages/__tests__/Integrations.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/__tests__/Integrations.test.tsx -------------------------------------------------------------------------------- /src/pages/__tests__/PlayerProps.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/__tests__/PlayerProps.test.tsx -------------------------------------------------------------------------------- /src/pages/__tests__/Register.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/__tests__/Register.test.tsx -------------------------------------------------------------------------------- /src/pages/__tests__/ResetPassword.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/pages/__tests__/ResetPassword.test.tsx -------------------------------------------------------------------------------- /src/services/AuthService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/services/AuthService.ts -------------------------------------------------------------------------------- /src/services/__tests__/AuthService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/services/__tests__/AuthService.test.ts -------------------------------------------------------------------------------- /src/state/RecoilObserver.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/state/RecoilObserver.tsx -------------------------------------------------------------------------------- /src/state/activeGameState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/state/activeGameState.ts -------------------------------------------------------------------------------- /src/state/devDataState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/state/devDataState.ts -------------------------------------------------------------------------------- /src/state/gamesState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/state/gamesState.ts -------------------------------------------------------------------------------- /src/state/justConfirmedEmailState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/state/justConfirmedEmailState.ts -------------------------------------------------------------------------------- /src/state/organisationState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/state/organisationState.ts -------------------------------------------------------------------------------- /src/state/saveDataNodeSizesState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/state/saveDataNodeSizesState.ts -------------------------------------------------------------------------------- /src/state/userState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/state/userState.ts -------------------------------------------------------------------------------- /src/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/styles/index.css -------------------------------------------------------------------------------- /src/styles/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/styles/theme.ts -------------------------------------------------------------------------------- /src/utils/KitchenSink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/utils/KitchenSink.tsx -------------------------------------------------------------------------------- /src/utils/__tests__/buildError.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/utils/__tests__/buildError.test.ts -------------------------------------------------------------------------------- /src/utils/__tests__/canPerformAction.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/utils/__tests__/canPerformAction.test.ts -------------------------------------------------------------------------------- /src/utils/__tests__/usePlayer.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/utils/__tests__/usePlayer.test.tsx -------------------------------------------------------------------------------- /src/utils/__tests__/useSortedItems.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/utils/__tests__/useSortedItems.test.tsx -------------------------------------------------------------------------------- /src/utils/__tests__/useTimePeriod.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/utils/__tests__/useTimePeriod.test.tsx -------------------------------------------------------------------------------- /src/utils/buildError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/utils/buildError.ts -------------------------------------------------------------------------------- /src/utils/canPerformAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/utils/canPerformAction.ts -------------------------------------------------------------------------------- /src/utils/canViewPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/utils/canViewPage.ts -------------------------------------------------------------------------------- /src/utils/convertDateToUTC.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/utils/convertDateToUTC.ts -------------------------------------------------------------------------------- /src/utils/getEventColour.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/utils/getEventColour.ts -------------------------------------------------------------------------------- /src/utils/group-rules/__tests__/isGroupRuleValid.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/utils/group-rules/__tests__/isGroupRuleValid.test.ts -------------------------------------------------------------------------------- /src/utils/group-rules/__tests__/prepareRule.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/utils/group-rules/__tests__/prepareRule.test.ts -------------------------------------------------------------------------------- /src/utils/group-rules/isGroupRuleValid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/utils/group-rules/isGroupRuleValid.ts -------------------------------------------------------------------------------- /src/utils/group-rules/prepareRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/utils/group-rules/prepareRule.ts -------------------------------------------------------------------------------- /src/utils/group-rules/unpackRules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/utils/group-rules/unpackRules.ts -------------------------------------------------------------------------------- /src/utils/useDaySections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/utils/useDaySections.ts -------------------------------------------------------------------------------- /src/utils/useIntendedRoute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/utils/useIntendedRoute.ts -------------------------------------------------------------------------------- /src/utils/useLocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/utils/useLocalStorage.ts -------------------------------------------------------------------------------- /src/utils/useNodeGraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/utils/useNodeGraph.ts -------------------------------------------------------------------------------- /src/utils/usePlayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/utils/usePlayer.ts -------------------------------------------------------------------------------- /src/utils/useSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/utils/useSearch.ts -------------------------------------------------------------------------------- /src/utils/useSortedItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/utils/useSortedItems.ts -------------------------------------------------------------------------------- /src/utils/useTimePeriod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/utils/useTimePeriod.ts -------------------------------------------------------------------------------- /src/utils/useTimePeriodAndDates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/utils/useTimePeriodAndDates.ts -------------------------------------------------------------------------------- /src/utils/validation/nullableNumber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/src/utils/validation/nullableNumber.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaloDev/frontend/HEAD/vite.config.ts --------------------------------------------------------------------------------