├── .babelrc ├── .cursor └── rules │ ├── README.mdc │ ├── react-general-guidelines.mdc │ ├── react-state-management.mdc │ └── typescript-guidelines.mdc ├── .eslintrc.json ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE │ └── pull_request_template.md └── workflows │ ├── Jest.yml │ ├── lint.yml │ ├── playwright.yml │ └── tslint.yml ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .prettierrc ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── SECURITY.md ├── documentation ├── ADR │ ├── 000-template.md │ ├── 001-wasm-scheduler.md │ ├── 002-location-of-computation.md │ ├── 003-use-react-framework.md │ ├── 004-use-next-framework.md │ └── 005-use-RESTful-API.md ├── Readme.md ├── functional │ ├── Concepts.md │ ├── Design.md │ └── Readme.md └── technical │ ├── PRGuide.md │ ├── Readme.md │ ├── Setup.md │ └── conventions │ ├── Readme.md │ ├── code.md │ └── git.md ├── favicon.ico ├── i18next-parser.config.js ├── index.html ├── jest.config.js ├── mocks └── fileMock.js ├── package.json ├── pkg ├── LICENSE.md ├── README.md ├── package.json ├── scheduler.d.ts ├── scheduler.js ├── scheduler_bg.js ├── scheduler_bg.wasm └── scheduler_bg.wasm.d.ts ├── playwright.config.ts ├── playwright ├── config │ └── constants.ts ├── tests │ ├── bottom-nav │ │ ├── navigation.spec.ts │ │ └── switch-mode.spec.ts │ ├── collaboration-feature │ │ ├── three-user-collaboration.spec.ts │ │ ├── three-user-move-collaboration.spec.ts │ │ └── two-user-collaboration.spec.ts │ ├── config-goal-ui.spec.ts │ ├── faq-page.spec.ts │ ├── header-ui.spec.ts │ └── landing-page.spec.ts ├── userOnboarding.json └── utils │ ├── collaboration-feature-utils.ts │ └── move-feature-utils.ts ├── plugins └── generateVersion.js ├── public ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── mstile-150x150.png ├── pwa-192x192.png ├── pwa-512x512.png └── safari-pinned-tab.svg ├── src ├── App.tsx ├── Interfaces │ ├── ChangeAccept.ts │ ├── ExportStrategy.ts │ ├── IBuildInfo.ts │ ├── ICommon.ts │ ├── IContactMessages.ts │ ├── IDisplayChangesModal.ts │ ├── ILanguage.ts │ ├── IPages.ts │ ├── IPopupModals.ts │ ├── IScheduler.ts │ ├── Sharing.ts │ ├── Task.ts │ └── index.ts ├── Providers.tsx ├── Routes.tsx ├── __tests__ │ ├── FeedbackPage.test.tsx │ └── TrashApi │ │ └── index.test.ts ├── api │ ├── ContactsAPI │ │ └── index.ts │ ├── FeedbackAPI │ │ └── index.ts │ ├── FeelingsAPI │ │ └── index.ts │ ├── GCustomAPI │ │ └── index.ts │ ├── GoalsAPI │ │ └── index.ts │ ├── HintsAPI │ │ ├── ScheduledHintCall.ts │ │ └── index.ts │ ├── InboxAPI │ │ └── index.ts │ ├── SchedulerOutputCache │ │ └── index.ts │ ├── SharedGoalNotMoved │ │ └── index.ts │ ├── SharedWMAPI │ │ └── index.ts │ ├── TaskHistoryAPI │ │ └── index.ts │ ├── TasksAPI │ │ └── index.ts │ ├── TrashAPI │ │ └── index.ts │ └── index.ts ├── assets │ ├── CopyIcon.tsx │ ├── TriangleIcon.tsx │ ├── archive.mp3 │ ├── forget.mp3 │ ├── images │ │ ├── ArrowIcon.svg │ │ ├── LogoTextDark.svg │ │ ├── LogoTextLight.svg │ │ ├── addDark.svg │ │ ├── addLight.svg │ │ ├── backIcon.svg │ │ ├── bulbIcon.svg │ │ ├── chevronLeft.svg │ │ ├── collaborate.svg │ │ ├── configGoal.svg │ │ ├── correct.svg │ │ ├── darkModeIcon.svg │ │ ├── deleteIcon.svg │ │ ├── download.svg │ │ ├── emptySvg.svg │ │ ├── globalAdd.svg │ │ ├── goalsIcon.svg │ │ ├── ignore.svg │ │ ├── joinGroup.svg │ │ ├── leaveGroup.svg │ │ ├── lightModeIcon.svg │ │ ├── logo.svg │ │ ├── mainAvatarDark.svg │ │ ├── mainAvatarLight.svg │ │ ├── noteIcon.svg │ │ ├── pencil.svg │ │ ├── peopleIcon.svg │ │ ├── playIcon.svg │ │ ├── plus.svg │ │ ├── publicGoals.svg │ │ ├── searchIcon.svg │ │ ├── settings.svg │ │ ├── share.svg │ │ ├── shareAnonymous.svg │ │ ├── shareWithFriend.svg │ │ ├── trash.svg │ │ ├── verticalDots.svg │ │ ├── vote.svg │ │ ├── zinzenDarkLogo.svg │ │ └── zinzenLightLogo.svg │ ├── index.ts │ ├── page-crumpling-sound.mp3 │ ├── pling.mp3 │ ├── reschedule.mp3 │ └── zinzen.svg ├── common │ ├── Accordion.tsx │ ├── Backdrop.tsx │ ├── ConfirmationModal.tsx │ ├── DefaultButton.tsx │ ├── DefaultInput.tsx │ ├── Empty.tsx │ ├── Icon.tsx │ ├── Loader.tsx │ ├── LoadingContainer.tsx │ ├── NotificationSymbol.tsx │ ├── Search.scss │ ├── Search.tsx │ ├── SubHeader.tsx │ ├── ZButton.tsx │ └── ZModal.tsx ├── components │ ├── BackupRestoreModal.tsx │ ├── BottomNavbar │ │ ├── BottomNavbar.scss │ │ └── BottomNavbar.tsx │ ├── Buttons │ │ └── ModalActionButton.tsx │ ├── ConfigGoal │ │ ├── BetweenSlider.tsx │ │ ├── BudgetPerHr.tsx │ │ ├── BudgetPerWeek.tsx │ │ ├── ConfigGoal.helper.ts │ │ ├── ConfigGoal.scss │ │ ├── ConfigGoal.tsx │ │ ├── DueDate.tsx │ │ ├── Duration.tsx │ │ ├── OnDays.scss │ │ ├── OnDays.tsx │ │ └── components │ │ │ ├── ArchivedAutoComplete.tsx │ │ │ ├── AutoComplete.scss │ │ │ ├── AutoComplete.tsx │ │ │ ├── ColorPicker.scss │ │ │ ├── ColorPicker.tsx │ │ │ ├── ConfigGoalHeader.tsx │ │ │ ├── CustomDatePicker.tsx │ │ │ ├── HintToggle.tsx │ │ │ └── SimpleGoal.tsx │ ├── GlobalAddBtn.tsx │ ├── GoalItemSummary │ │ ├── BudgetSummary.tsx │ │ ├── GoalItemSummary.scss │ │ ├── GoalItemSummary.tsx │ │ ├── GoalSummary.helpers.ts │ │ ├── GoalSummary.tsx │ │ ├── useBudgetSummaryStore.ts │ │ ├── useGoalSummaryStore.ts │ │ └── useSublistSummary.ts │ ├── GoalsComponents │ │ ├── DisplayChangesModal │ │ │ ├── AcceptBtn.tsx │ │ │ ├── DisplayChangesModal.scss │ │ │ ├── DisplayChangesModal.tsx │ │ │ ├── Header.tsx │ │ │ ├── IgnoreBtn.tsx │ │ │ ├── ShowChanges.scss │ │ │ └── ShowChanges.tsx │ │ ├── GoalAvatar.tsx │ │ ├── GoalSublist │ │ │ ├── GoalSublist.scss │ │ │ ├── GoalSublist.tsx │ │ │ └── components │ │ │ │ ├── BreadcrumbItem.scss │ │ │ │ ├── BreadcrumbItem.tsx │ │ │ │ ├── GoalHistory.scss │ │ │ │ └── GoalHistory.tsx │ │ ├── GoalsList.tsx │ │ ├── MoveGoalButton.tsx │ │ ├── MyGoal │ │ │ ├── GoalTitleHandlers.tsx │ │ │ ├── MyGoal.tsx │ │ │ ├── SortableItem.tsx │ │ │ ├── components │ │ │ │ ├── GoalIcon.tsx │ │ │ │ └── GoalTitle.tsx │ │ │ └── index.scss │ │ ├── MyGoalActions │ │ │ ├── ActionDiv.tsx │ │ │ ├── MyGoalActions.scss │ │ │ └── RegularGoalActions.tsx │ │ ├── Participants.tsx │ │ ├── ZItemContainer.scss │ │ └── ZItemContainer.tsx │ ├── Header │ │ ├── Header.scss │ │ ├── Header.tsx │ │ ├── HeaderBtn.tsx │ │ └── Settings.tsx │ ├── HeaderDashboard │ │ ├── HeaderDashboard.scss │ │ └── LandingHeader.tsx │ ├── LanguageChangeModal │ │ ├── LanguageChangeModal.tsx │ │ └── index.scss │ ├── LanguageChoice │ │ └── LanguagesList.tsx │ ├── MoveGoal │ │ └── MoveGoalHelper.ts │ ├── MyTimeComponents │ │ ├── ColorBands.tsx │ │ ├── Focus.tsx │ │ │ ├── Focus.tsx │ │ │ └── focus.scss │ │ ├── MyTimeline │ │ │ ├── GoalTiming.tsx │ │ │ ├── MyTimeline.tsx │ │ │ ├── Reminders │ │ │ │ ├── ReminderOptions.tsx │ │ │ │ └── Reminders.tsx │ │ │ ├── TaskOptions.tsx │ │ │ ├── index.scss │ │ │ └── useMyTimelineStore.tsx │ │ ├── NotNow │ │ │ ├── NotNowModal.scss │ │ │ ├── NotNowModal.tsx │ │ │ └── ScheduledSlots.tsx │ │ └── SchedulerErrorModal.tsx │ ├── PartnerModeTour.tsx │ └── index.scss ├── constants │ ├── FeelingsList.ts │ ├── actions.ts │ ├── booleanScreen.ts │ ├── confirmationHeaders.ts │ ├── goals.ts │ ├── languages.ts │ ├── localStorageKeys.ts │ ├── pageTitle.ts │ ├── rescheduleOptions.ts │ ├── serverUrls.ts │ ├── starterGoals.ts │ └── vibrateCheck.ts ├── contexts │ ├── deletedGoal-context.tsx │ └── partner-context.tsx ├── controllers │ ├── GoalController.ts │ ├── NewUserController.ts │ ├── PartnerController.ts │ ├── PubSubController.ts │ └── TaskDoneTodayController.ts ├── customize.scss ├── factories │ └── queryKeyFactory.ts ├── global.d.ts ├── global.scss ├── helpers │ ├── BatchPublisher.ts │ ├── Contacts.tsx │ ├── GoalActionHelper.tsx │ ├── GoalLocStateHandler.tsx │ ├── GoalProcessor.ts │ ├── GoalStatsHelper.ts │ ├── InboxProcessor.ts │ ├── MyTimeHelper.ts │ └── strategies │ │ ├── ChangeStrategy.ts │ │ ├── SharedGoalChangeStrategies.ts │ │ └── SharedGoalChangesManager.ts ├── hooks │ ├── Reminders │ │ └── useGetRemindersForSeletedDay.ts │ ├── api │ │ ├── Contacts │ │ │ ├── mutations │ │ │ │ └── useUpdateContact.ts │ │ │ └── queries │ │ │ │ ├── useDeleteContact.ts │ │ │ │ ├── useGetAllContacts.ts │ │ │ │ └── useGetContactByPartnerId.ts │ │ ├── Goals │ │ │ ├── mutations │ │ │ │ ├── useAddGoal.ts │ │ │ │ ├── useArchiveGoal.ts │ │ │ │ ├── useDeleteGoal.ts │ │ │ │ ├── useEditGoal.ts │ │ │ │ ├── useGoalMoveMutation.tsx │ │ │ │ ├── useRestoreArchivedGoal.ts │ │ │ │ ├── useRestoreDeletedGoal.ts │ │ │ │ └── useUpdateGoalPositions.ts │ │ │ └── queries │ │ │ │ ├── useGetActiveGoals.ts │ │ │ │ ├── useGetArchivedGoals.ts │ │ │ │ ├── useGetDeletedGoals.ts │ │ │ │ └── useGetGoalById.ts │ │ ├── Hints │ │ │ └── mutations │ │ │ │ ├── useAddGoalHintsToMyGoal.ts │ │ │ │ ├── useDeleteGoalHint.ts │ │ │ │ └── useReportGoalHints.ts │ │ ├── SharedWMGoals │ │ │ ├── useConvertToNormalGoal.ts │ │ │ ├── useGetSharedWMActiveGoals.ts │ │ │ ├── useGetSharedWMGoalById.ts │ │ │ └── useGetSharedWMGoalsArchived.ts │ │ └── Tasks │ │ │ ├── useDoneTask.ts │ │ │ ├── useRescheduleTask.ts │ │ │ └── useSkipTask.ts │ ├── useApp.tsx │ ├── useDebounce.ts │ ├── useFeelingStore.tsx │ ├── useGetRelationshipStatus.ts │ ├── useGlobalStore.tsx │ ├── useGoalActions.tsx │ ├── useGoalSave.ts │ ├── useGoalSelection.ts │ ├── useGoalStore.tsx │ ├── useKeyPress.ts │ ├── useLanguageSelection.ts │ ├── useLongPress.tsx │ ├── useOnScreenKeyboardScrollFix.ts │ ├── useProcessSharedGoalData.ts │ ├── useScheduler.tsx │ ├── useVirtualKeyBoardOpen.tsx │ └── x.json ├── index.tsx ├── jest.setup.ts ├── layouts │ ├── AppLayout.tsx │ ├── BottomNavLayout.tsx │ └── OnboardingLayout.tsx ├── models │ ├── ContactItem.ts │ ├── FeelingItem.ts │ ├── GCustomItem.ts │ ├── GoalItem.ts │ ├── HintItem.ts │ ├── InboxItem.ts │ ├── SchedulerOutputCacheItem.ts │ ├── SharedGoalNotMoved.ts │ ├── SharedGoalNotMovedItem.ts │ ├── TaskHistoryItem.ts │ ├── TaskItem.ts │ ├── TasksDoneTodayItem.ts │ ├── TrashItem.ts │ ├── db.ts │ ├── dbSchema.ts │ └── index.ts ├── override.scss ├── pages │ ├── FAQPage │ │ ├── FAQPage.scss │ │ └── FAQPage.tsx │ ├── FeedbackPage │ │ ├── FeedbackPage.tsx │ │ └── feedbackpage.scss │ ├── FeelingsPage │ │ ├── FeelingsPage.scss │ │ ├── FeelingsPage.tsx │ │ └── components │ │ │ ├── AddFeeling.tsx │ │ │ ├── Feeling.tsx │ │ │ └── NoteModal.tsx │ ├── GoalsPage │ │ ├── ContactsPage.tsx │ │ ├── GoalModals.tsx │ │ ├── GoalsPage.scss │ │ ├── InvitationStatus.tsx │ │ ├── MyGoals.tsx │ │ ├── MyGoalsPage.tsx │ │ ├── PartnerGoals.tsx │ │ ├── SublistGoalsPage.tsx │ │ └── components │ │ │ ├── ArchivedGoals.tsx │ │ │ ├── AvailableGoalHints.tsx │ │ │ ├── DeletedGoals.tsx │ │ │ └── modals │ │ │ ├── AddContactModal.tsx │ │ │ ├── ContactActionModal.tsx │ │ │ ├── EditContactModal.tsx │ │ │ ├── ShareGoalModal.scss │ │ │ └── ShareGoalModal.tsx │ ├── InvestPage │ │ ├── InvestPage.scss │ │ └── InvestPage.tsx │ ├── InvitePage │ │ └── InvitePage.tsx │ ├── LandingPage │ │ ├── LandingPage.scss │ │ └── LandingPage.tsx │ └── MyTimePage │ │ ├── MyTimePage.scss │ │ └── MyTimePage.tsx ├── react-app-env.t.ts ├── service-worker │ ├── service-worker.ts │ └── serviceWorkerRegistration.ts ├── services │ ├── contact.service.ts │ └── goal.service.ts ├── short.scss ├── store │ ├── DarkModeState.ts │ ├── FeelingsState.ts │ ├── GlowGoalIdState.ts │ ├── GoalsState.ts │ ├── LanguageSelectionState.ts │ ├── SchedulerErrorState.ts │ ├── SidebarState.ts │ ├── SuggestedGoalState.ts │ ├── TaskState.ts │ ├── ThemeState.ts │ ├── TourState.ts │ ├── index.ts │ ├── moveGoalState.ts │ └── useNavigateToSubgoal.ts ├── strategies │ ├── ChangeAcceptStrategyContext.ts │ └── GoalChangeStrategies.ts ├── translations │ ├── de │ │ └── translation.json │ ├── en │ │ └── translation.json │ ├── es │ │ └── translation.json │ ├── fr │ │ └── translation.json │ ├── gt │ │ └── translation.json │ ├── he │ │ └── translation.json │ ├── hi │ │ └── translation.json │ ├── i18n.ts │ ├── mr │ │ └── translation.json │ ├── nl │ │ └── translation.json │ ├── pt │ │ └── translation.json │ └── ta │ │ └── translation.json ├── types │ └── index.ts ├── utils │ ├── BackupUtils.ts │ ├── ExportStrategies │ │ ├── CsvExportStrategy.ts │ │ ├── ExportManager.ts │ │ └── JsonExportStrategy.ts │ ├── SchedulerUtils.ts │ ├── defaultGenerators.ts │ ├── index.ts │ ├── journal.ts │ ├── patterns.ts │ ├── priotizeImpossibleGoals.ts │ ├── pubSubUtils.ts │ ├── rawDBScript.js │ ├── sharedGoalUtils.ts │ └── updateGoalsImpossibleStatus.ts └── version.json ├── tsconfig.jest.json ├── tsconfig.json ├── tsconfig.paths.json ├── update_artifact_script ├── .gitignore ├── README.md ├── artifact_id.txt ├── scope_screenshot.png └── update_artifacts.sh └── vite.config.ts /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/.babelrc -------------------------------------------------------------------------------- /.cursor/rules/README.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/.cursor/rules/README.mdc -------------------------------------------------------------------------------- /.cursor/rules/react-general-guidelines.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/.cursor/rules/react-general-guidelines.mdc -------------------------------------------------------------------------------- /.cursor/rules/react-state-management.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/.cursor/rules/react-state-management.mdc -------------------------------------------------------------------------------- /.cursor/rules/typescript-guidelines.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/.cursor/rules/typescript-guidelines.mdc -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/Jest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/.github/workflows/Jest.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/playwright.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/.github/workflows/playwright.yml -------------------------------------------------------------------------------- /.github/workflows/tslint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/.github/workflows/tslint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/.prettierrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/SECURITY.md -------------------------------------------------------------------------------- /documentation/ADR/000-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/documentation/ADR/000-template.md -------------------------------------------------------------------------------- /documentation/ADR/001-wasm-scheduler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/documentation/ADR/001-wasm-scheduler.md -------------------------------------------------------------------------------- /documentation/ADR/002-location-of-computation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/documentation/ADR/002-location-of-computation.md -------------------------------------------------------------------------------- /documentation/ADR/003-use-react-framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/documentation/ADR/003-use-react-framework.md -------------------------------------------------------------------------------- /documentation/ADR/004-use-next-framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/documentation/ADR/004-use-next-framework.md -------------------------------------------------------------------------------- /documentation/ADR/005-use-RESTful-API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/documentation/ADR/005-use-RESTful-API.md -------------------------------------------------------------------------------- /documentation/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/documentation/Readme.md -------------------------------------------------------------------------------- /documentation/functional/Concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/documentation/functional/Concepts.md -------------------------------------------------------------------------------- /documentation/functional/Design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/documentation/functional/Design.md -------------------------------------------------------------------------------- /documentation/functional/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/documentation/functional/Readme.md -------------------------------------------------------------------------------- /documentation/technical/PRGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/documentation/technical/PRGuide.md -------------------------------------------------------------------------------- /documentation/technical/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/documentation/technical/Readme.md -------------------------------------------------------------------------------- /documentation/technical/Setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/documentation/technical/Setup.md -------------------------------------------------------------------------------- /documentation/technical/conventions/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/documentation/technical/conventions/Readme.md -------------------------------------------------------------------------------- /documentation/technical/conventions/code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/documentation/technical/conventions/code.md -------------------------------------------------------------------------------- /documentation/technical/conventions/git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/documentation/technical/conventions/git.md -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/favicon.ico -------------------------------------------------------------------------------- /i18next-parser.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/i18next-parser.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/index.html -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/jest.config.js -------------------------------------------------------------------------------- /mocks/fileMock.js: -------------------------------------------------------------------------------- 1 | module.exports = ""; 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/package.json -------------------------------------------------------------------------------- /pkg/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/pkg/LICENSE.md -------------------------------------------------------------------------------- /pkg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/pkg/README.md -------------------------------------------------------------------------------- /pkg/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/pkg/package.json -------------------------------------------------------------------------------- /pkg/scheduler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/pkg/scheduler.d.ts -------------------------------------------------------------------------------- /pkg/scheduler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/pkg/scheduler.js -------------------------------------------------------------------------------- /pkg/scheduler_bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/pkg/scheduler_bg.js -------------------------------------------------------------------------------- /pkg/scheduler_bg.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/pkg/scheduler_bg.wasm -------------------------------------------------------------------------------- /pkg/scheduler_bg.wasm.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/pkg/scheduler_bg.wasm.d.ts -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /playwright/config/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/playwright/config/constants.ts -------------------------------------------------------------------------------- /playwright/tests/bottom-nav/navigation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/playwright/tests/bottom-nav/navigation.spec.ts -------------------------------------------------------------------------------- /playwright/tests/bottom-nav/switch-mode.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/playwright/tests/bottom-nav/switch-mode.spec.ts -------------------------------------------------------------------------------- /playwright/tests/collaboration-feature/three-user-collaboration.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/playwright/tests/collaboration-feature/three-user-collaboration.spec.ts -------------------------------------------------------------------------------- /playwright/tests/collaboration-feature/three-user-move-collaboration.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/playwright/tests/collaboration-feature/three-user-move-collaboration.spec.ts -------------------------------------------------------------------------------- /playwright/tests/collaboration-feature/two-user-collaboration.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/playwright/tests/collaboration-feature/two-user-collaboration.spec.ts -------------------------------------------------------------------------------- /playwright/tests/config-goal-ui.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/playwright/tests/config-goal-ui.spec.ts -------------------------------------------------------------------------------- /playwright/tests/faq-page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/playwright/tests/faq-page.spec.ts -------------------------------------------------------------------------------- /playwright/tests/header-ui.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/playwright/tests/header-ui.spec.ts -------------------------------------------------------------------------------- /playwright/tests/landing-page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/playwright/tests/landing-page.spec.ts -------------------------------------------------------------------------------- /playwright/userOnboarding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/playwright/userOnboarding.json -------------------------------------------------------------------------------- /playwright/utils/collaboration-feature-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/playwright/utils/collaboration-feature-utils.ts -------------------------------------------------------------------------------- /playwright/utils/move-feature-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/playwright/utils/move-feature-utils.ts -------------------------------------------------------------------------------- /plugins/generateVersion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/plugins/generateVersion.js -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/public/mstile-150x150.png -------------------------------------------------------------------------------- /public/pwa-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/public/pwa-192x192.png -------------------------------------------------------------------------------- /public/pwa-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/public/pwa-512x512.png -------------------------------------------------------------------------------- /public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/public/safari-pinned-tab.svg -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/Interfaces/ChangeAccept.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/Interfaces/ChangeAccept.ts -------------------------------------------------------------------------------- /src/Interfaces/ExportStrategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/Interfaces/ExportStrategy.ts -------------------------------------------------------------------------------- /src/Interfaces/IBuildInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/Interfaces/IBuildInfo.ts -------------------------------------------------------------------------------- /src/Interfaces/ICommon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/Interfaces/ICommon.ts -------------------------------------------------------------------------------- /src/Interfaces/IContactMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/Interfaces/IContactMessages.ts -------------------------------------------------------------------------------- /src/Interfaces/IDisplayChangesModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/Interfaces/IDisplayChangesModal.ts -------------------------------------------------------------------------------- /src/Interfaces/ILanguage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/Interfaces/ILanguage.ts -------------------------------------------------------------------------------- /src/Interfaces/IPages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/Interfaces/IPages.ts -------------------------------------------------------------------------------- /src/Interfaces/IPopupModals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/Interfaces/IPopupModals.ts -------------------------------------------------------------------------------- /src/Interfaces/IScheduler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/Interfaces/IScheduler.ts -------------------------------------------------------------------------------- /src/Interfaces/Sharing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/Interfaces/Sharing.ts -------------------------------------------------------------------------------- /src/Interfaces/Task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/Interfaces/Task.ts -------------------------------------------------------------------------------- /src/Interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/Interfaces/index.ts -------------------------------------------------------------------------------- /src/Providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/Providers.tsx -------------------------------------------------------------------------------- /src/Routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/Routes.tsx -------------------------------------------------------------------------------- /src/__tests__/FeedbackPage.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/__tests__/FeedbackPage.test.tsx -------------------------------------------------------------------------------- /src/__tests__/TrashApi/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/__tests__/TrashApi/index.test.ts -------------------------------------------------------------------------------- /src/api/ContactsAPI/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/api/ContactsAPI/index.ts -------------------------------------------------------------------------------- /src/api/FeedbackAPI/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/api/FeedbackAPI/index.ts -------------------------------------------------------------------------------- /src/api/FeelingsAPI/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/api/FeelingsAPI/index.ts -------------------------------------------------------------------------------- /src/api/GCustomAPI/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/api/GCustomAPI/index.ts -------------------------------------------------------------------------------- /src/api/GoalsAPI/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/api/GoalsAPI/index.ts -------------------------------------------------------------------------------- /src/api/HintsAPI/ScheduledHintCall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/api/HintsAPI/ScheduledHintCall.ts -------------------------------------------------------------------------------- /src/api/HintsAPI/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/api/HintsAPI/index.ts -------------------------------------------------------------------------------- /src/api/InboxAPI/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/api/InboxAPI/index.ts -------------------------------------------------------------------------------- /src/api/SchedulerOutputCache/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/api/SchedulerOutputCache/index.ts -------------------------------------------------------------------------------- /src/api/SharedGoalNotMoved/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/api/SharedGoalNotMoved/index.ts -------------------------------------------------------------------------------- /src/api/SharedWMAPI/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/api/SharedWMAPI/index.ts -------------------------------------------------------------------------------- /src/api/TaskHistoryAPI/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/api/TaskHistoryAPI/index.ts -------------------------------------------------------------------------------- /src/api/TasksAPI/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/api/TasksAPI/index.ts -------------------------------------------------------------------------------- /src/api/TrashAPI/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/api/TrashAPI/index.ts -------------------------------------------------------------------------------- /src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/api/index.ts -------------------------------------------------------------------------------- /src/assets/CopyIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/CopyIcon.tsx -------------------------------------------------------------------------------- /src/assets/TriangleIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/TriangleIcon.tsx -------------------------------------------------------------------------------- /src/assets/archive.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/archive.mp3 -------------------------------------------------------------------------------- /src/assets/forget.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/forget.mp3 -------------------------------------------------------------------------------- /src/assets/images/ArrowIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/ArrowIcon.svg -------------------------------------------------------------------------------- /src/assets/images/LogoTextDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/LogoTextDark.svg -------------------------------------------------------------------------------- /src/assets/images/LogoTextLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/LogoTextLight.svg -------------------------------------------------------------------------------- /src/assets/images/addDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/addDark.svg -------------------------------------------------------------------------------- /src/assets/images/addLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/addLight.svg -------------------------------------------------------------------------------- /src/assets/images/backIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/backIcon.svg -------------------------------------------------------------------------------- /src/assets/images/bulbIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/bulbIcon.svg -------------------------------------------------------------------------------- /src/assets/images/chevronLeft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/chevronLeft.svg -------------------------------------------------------------------------------- /src/assets/images/collaborate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/collaborate.svg -------------------------------------------------------------------------------- /src/assets/images/configGoal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/configGoal.svg -------------------------------------------------------------------------------- /src/assets/images/correct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/correct.svg -------------------------------------------------------------------------------- /src/assets/images/darkModeIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/darkModeIcon.svg -------------------------------------------------------------------------------- /src/assets/images/deleteIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/deleteIcon.svg -------------------------------------------------------------------------------- /src/assets/images/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/download.svg -------------------------------------------------------------------------------- /src/assets/images/emptySvg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/emptySvg.svg -------------------------------------------------------------------------------- /src/assets/images/globalAdd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/globalAdd.svg -------------------------------------------------------------------------------- /src/assets/images/goalsIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/goalsIcon.svg -------------------------------------------------------------------------------- /src/assets/images/ignore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/ignore.svg -------------------------------------------------------------------------------- /src/assets/images/joinGroup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/joinGroup.svg -------------------------------------------------------------------------------- /src/assets/images/leaveGroup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/leaveGroup.svg -------------------------------------------------------------------------------- /src/assets/images/lightModeIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/lightModeIcon.svg -------------------------------------------------------------------------------- /src/assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/logo.svg -------------------------------------------------------------------------------- /src/assets/images/mainAvatarDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/mainAvatarDark.svg -------------------------------------------------------------------------------- /src/assets/images/mainAvatarLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/mainAvatarLight.svg -------------------------------------------------------------------------------- /src/assets/images/noteIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/noteIcon.svg -------------------------------------------------------------------------------- /src/assets/images/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/pencil.svg -------------------------------------------------------------------------------- /src/assets/images/peopleIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/peopleIcon.svg -------------------------------------------------------------------------------- /src/assets/images/playIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/playIcon.svg -------------------------------------------------------------------------------- /src/assets/images/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/plus.svg -------------------------------------------------------------------------------- /src/assets/images/publicGoals.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/publicGoals.svg -------------------------------------------------------------------------------- /src/assets/images/searchIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/searchIcon.svg -------------------------------------------------------------------------------- /src/assets/images/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/settings.svg -------------------------------------------------------------------------------- /src/assets/images/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/share.svg -------------------------------------------------------------------------------- /src/assets/images/shareAnonymous.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/shareAnonymous.svg -------------------------------------------------------------------------------- /src/assets/images/shareWithFriend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/shareWithFriend.svg -------------------------------------------------------------------------------- /src/assets/images/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/trash.svg -------------------------------------------------------------------------------- /src/assets/images/verticalDots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/verticalDots.svg -------------------------------------------------------------------------------- /src/assets/images/vote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/vote.svg -------------------------------------------------------------------------------- /src/assets/images/zinzenDarkLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/zinzenDarkLogo.svg -------------------------------------------------------------------------------- /src/assets/images/zinzenLightLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/images/zinzenLightLogo.svg -------------------------------------------------------------------------------- /src/assets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/index.ts -------------------------------------------------------------------------------- /src/assets/page-crumpling-sound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/page-crumpling-sound.mp3 -------------------------------------------------------------------------------- /src/assets/pling.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/pling.mp3 -------------------------------------------------------------------------------- /src/assets/reschedule.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/reschedule.mp3 -------------------------------------------------------------------------------- /src/assets/zinzen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/assets/zinzen.svg -------------------------------------------------------------------------------- /src/common/Accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/common/Accordion.tsx -------------------------------------------------------------------------------- /src/common/Backdrop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/common/Backdrop.tsx -------------------------------------------------------------------------------- /src/common/ConfirmationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/common/ConfirmationModal.tsx -------------------------------------------------------------------------------- /src/common/DefaultButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/common/DefaultButton.tsx -------------------------------------------------------------------------------- /src/common/DefaultInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/common/DefaultInput.tsx -------------------------------------------------------------------------------- /src/common/Empty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/common/Empty.tsx -------------------------------------------------------------------------------- /src/common/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/common/Icon.tsx -------------------------------------------------------------------------------- /src/common/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/common/Loader.tsx -------------------------------------------------------------------------------- /src/common/LoadingContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/common/LoadingContainer.tsx -------------------------------------------------------------------------------- /src/common/NotificationSymbol.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/common/NotificationSymbol.tsx -------------------------------------------------------------------------------- /src/common/Search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/common/Search.scss -------------------------------------------------------------------------------- /src/common/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/common/Search.tsx -------------------------------------------------------------------------------- /src/common/SubHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/common/SubHeader.tsx -------------------------------------------------------------------------------- /src/common/ZButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/common/ZButton.tsx -------------------------------------------------------------------------------- /src/common/ZModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/common/ZModal.tsx -------------------------------------------------------------------------------- /src/components/BackupRestoreModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/BackupRestoreModal.tsx -------------------------------------------------------------------------------- /src/components/BottomNavbar/BottomNavbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/BottomNavbar/BottomNavbar.scss -------------------------------------------------------------------------------- /src/components/BottomNavbar/BottomNavbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/BottomNavbar/BottomNavbar.tsx -------------------------------------------------------------------------------- /src/components/Buttons/ModalActionButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/Buttons/ModalActionButton.tsx -------------------------------------------------------------------------------- /src/components/ConfigGoal/BetweenSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/ConfigGoal/BetweenSlider.tsx -------------------------------------------------------------------------------- /src/components/ConfigGoal/BudgetPerHr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/ConfigGoal/BudgetPerHr.tsx -------------------------------------------------------------------------------- /src/components/ConfigGoal/BudgetPerWeek.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/ConfigGoal/BudgetPerWeek.tsx -------------------------------------------------------------------------------- /src/components/ConfigGoal/ConfigGoal.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/ConfigGoal/ConfigGoal.helper.ts -------------------------------------------------------------------------------- /src/components/ConfigGoal/ConfigGoal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/ConfigGoal/ConfigGoal.scss -------------------------------------------------------------------------------- /src/components/ConfigGoal/ConfigGoal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/ConfigGoal/ConfigGoal.tsx -------------------------------------------------------------------------------- /src/components/ConfigGoal/DueDate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/ConfigGoal/DueDate.tsx -------------------------------------------------------------------------------- /src/components/ConfigGoal/Duration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/ConfigGoal/Duration.tsx -------------------------------------------------------------------------------- /src/components/ConfigGoal/OnDays.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/ConfigGoal/OnDays.scss -------------------------------------------------------------------------------- /src/components/ConfigGoal/OnDays.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/ConfigGoal/OnDays.tsx -------------------------------------------------------------------------------- /src/components/ConfigGoal/components/ArchivedAutoComplete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/ConfigGoal/components/ArchivedAutoComplete.tsx -------------------------------------------------------------------------------- /src/components/ConfigGoal/components/AutoComplete.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/ConfigGoal/components/AutoComplete.scss -------------------------------------------------------------------------------- /src/components/ConfigGoal/components/AutoComplete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/ConfigGoal/components/AutoComplete.tsx -------------------------------------------------------------------------------- /src/components/ConfigGoal/components/ColorPicker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/ConfigGoal/components/ColorPicker.scss -------------------------------------------------------------------------------- /src/components/ConfigGoal/components/ColorPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/ConfigGoal/components/ColorPicker.tsx -------------------------------------------------------------------------------- /src/components/ConfigGoal/components/ConfigGoalHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/ConfigGoal/components/ConfigGoalHeader.tsx -------------------------------------------------------------------------------- /src/components/ConfigGoal/components/CustomDatePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/ConfigGoal/components/CustomDatePicker.tsx -------------------------------------------------------------------------------- /src/components/ConfigGoal/components/HintToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/ConfigGoal/components/HintToggle.tsx -------------------------------------------------------------------------------- /src/components/ConfigGoal/components/SimpleGoal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/ConfigGoal/components/SimpleGoal.tsx -------------------------------------------------------------------------------- /src/components/GlobalAddBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/GlobalAddBtn.tsx -------------------------------------------------------------------------------- /src/components/GoalItemSummary/BudgetSummary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/GoalItemSummary/BudgetSummary.tsx -------------------------------------------------------------------------------- /src/components/GoalItemSummary/GoalItemSummary.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/GoalItemSummary/GoalItemSummary.scss -------------------------------------------------------------------------------- /src/components/GoalItemSummary/GoalItemSummary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/GoalItemSummary/GoalItemSummary.tsx -------------------------------------------------------------------------------- /src/components/GoalItemSummary/GoalSummary.helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/GoalItemSummary/GoalSummary.helpers.ts -------------------------------------------------------------------------------- /src/components/GoalItemSummary/GoalSummary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/GoalItemSummary/GoalSummary.tsx -------------------------------------------------------------------------------- /src/components/GoalItemSummary/useBudgetSummaryStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/GoalItemSummary/useBudgetSummaryStore.ts -------------------------------------------------------------------------------- /src/components/GoalItemSummary/useGoalSummaryStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/GoalItemSummary/useGoalSummaryStore.ts -------------------------------------------------------------------------------- /src/components/GoalItemSummary/useSublistSummary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/GoalItemSummary/useSublistSummary.ts -------------------------------------------------------------------------------- /src/components/GoalsComponents/DisplayChangesModal/AcceptBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/GoalsComponents/DisplayChangesModal/AcceptBtn.tsx -------------------------------------------------------------------------------- /src/components/GoalsComponents/DisplayChangesModal/DisplayChangesModal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/GoalsComponents/DisplayChangesModal/DisplayChangesModal.scss -------------------------------------------------------------------------------- /src/components/GoalsComponents/DisplayChangesModal/DisplayChangesModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/GoalsComponents/DisplayChangesModal/DisplayChangesModal.tsx -------------------------------------------------------------------------------- /src/components/GoalsComponents/DisplayChangesModal/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/GoalsComponents/DisplayChangesModal/Header.tsx -------------------------------------------------------------------------------- /src/components/GoalsComponents/DisplayChangesModal/IgnoreBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/GoalsComponents/DisplayChangesModal/IgnoreBtn.tsx -------------------------------------------------------------------------------- /src/components/GoalsComponents/DisplayChangesModal/ShowChanges.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/GoalsComponents/DisplayChangesModal/ShowChanges.scss -------------------------------------------------------------------------------- /src/components/GoalsComponents/DisplayChangesModal/ShowChanges.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/GoalsComponents/DisplayChangesModal/ShowChanges.tsx -------------------------------------------------------------------------------- /src/components/GoalsComponents/GoalAvatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/GoalsComponents/GoalAvatar.tsx -------------------------------------------------------------------------------- /src/components/GoalsComponents/GoalSublist/GoalSublist.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/GoalsComponents/GoalSublist/GoalSublist.scss -------------------------------------------------------------------------------- /src/components/GoalsComponents/GoalSublist/GoalSublist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/GoalsComponents/GoalSublist/GoalSublist.tsx -------------------------------------------------------------------------------- /src/components/GoalsComponents/GoalSublist/components/BreadcrumbItem.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/GoalsComponents/GoalSublist/components/BreadcrumbItem.scss -------------------------------------------------------------------------------- /src/components/GoalsComponents/GoalSublist/components/BreadcrumbItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/GoalsComponents/GoalSublist/components/BreadcrumbItem.tsx -------------------------------------------------------------------------------- /src/components/GoalsComponents/GoalSublist/components/GoalHistory.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/GoalsComponents/GoalSublist/components/GoalHistory.scss -------------------------------------------------------------------------------- /src/components/GoalsComponents/GoalSublist/components/GoalHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/GoalsComponents/GoalSublist/components/GoalHistory.tsx -------------------------------------------------------------------------------- /src/components/GoalsComponents/GoalsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/GoalsComponents/GoalsList.tsx -------------------------------------------------------------------------------- /src/components/GoalsComponents/MoveGoalButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/GoalsComponents/MoveGoalButton.tsx -------------------------------------------------------------------------------- /src/components/GoalsComponents/MyGoal/GoalTitleHandlers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/GoalsComponents/MyGoal/GoalTitleHandlers.tsx -------------------------------------------------------------------------------- /src/components/GoalsComponents/MyGoal/MyGoal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/GoalsComponents/MyGoal/MyGoal.tsx -------------------------------------------------------------------------------- /src/components/GoalsComponents/MyGoal/SortableItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/GoalsComponents/MyGoal/SortableItem.tsx -------------------------------------------------------------------------------- /src/components/GoalsComponents/MyGoal/components/GoalIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/GoalsComponents/MyGoal/components/GoalIcon.tsx -------------------------------------------------------------------------------- /src/components/GoalsComponents/MyGoal/components/GoalTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/GoalsComponents/MyGoal/components/GoalTitle.tsx -------------------------------------------------------------------------------- /src/components/GoalsComponents/MyGoal/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/GoalsComponents/MyGoal/index.scss -------------------------------------------------------------------------------- /src/components/GoalsComponents/MyGoalActions/ActionDiv.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/GoalsComponents/MyGoalActions/ActionDiv.tsx -------------------------------------------------------------------------------- /src/components/GoalsComponents/MyGoalActions/MyGoalActions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/GoalsComponents/MyGoalActions/MyGoalActions.scss -------------------------------------------------------------------------------- /src/components/GoalsComponents/MyGoalActions/RegularGoalActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/GoalsComponents/MyGoalActions/RegularGoalActions.tsx -------------------------------------------------------------------------------- /src/components/GoalsComponents/Participants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/GoalsComponents/Participants.tsx -------------------------------------------------------------------------------- /src/components/GoalsComponents/ZItemContainer.scss: -------------------------------------------------------------------------------- 1 | .goal-to-move-selected { 2 | pointer-events: none; 3 | opacity: 0.5; 4 | } 5 | -------------------------------------------------------------------------------- /src/components/GoalsComponents/ZItemContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/GoalsComponents/ZItemContainer.tsx -------------------------------------------------------------------------------- /src/components/Header/Header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/Header/Header.scss -------------------------------------------------------------------------------- /src/components/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/Header/Header.tsx -------------------------------------------------------------------------------- /src/components/Header/HeaderBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/Header/HeaderBtn.tsx -------------------------------------------------------------------------------- /src/components/Header/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/Header/Settings.tsx -------------------------------------------------------------------------------- /src/components/HeaderDashboard/HeaderDashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/HeaderDashboard/HeaderDashboard.scss -------------------------------------------------------------------------------- /src/components/HeaderDashboard/LandingHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/HeaderDashboard/LandingHeader.tsx -------------------------------------------------------------------------------- /src/components/LanguageChangeModal/LanguageChangeModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/LanguageChangeModal/LanguageChangeModal.tsx -------------------------------------------------------------------------------- /src/components/LanguageChangeModal/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/LanguageChangeModal/index.scss -------------------------------------------------------------------------------- /src/components/LanguageChoice/LanguagesList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/LanguageChoice/LanguagesList.tsx -------------------------------------------------------------------------------- /src/components/MoveGoal/MoveGoalHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/MoveGoal/MoveGoalHelper.ts -------------------------------------------------------------------------------- /src/components/MyTimeComponents/ColorBands.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/MyTimeComponents/ColorBands.tsx -------------------------------------------------------------------------------- /src/components/MyTimeComponents/Focus.tsx/Focus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/MyTimeComponents/Focus.tsx/Focus.tsx -------------------------------------------------------------------------------- /src/components/MyTimeComponents/Focus.tsx/focus.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/MyTimeComponents/Focus.tsx/focus.scss -------------------------------------------------------------------------------- /src/components/MyTimeComponents/MyTimeline/GoalTiming.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/MyTimeComponents/MyTimeline/GoalTiming.tsx -------------------------------------------------------------------------------- /src/components/MyTimeComponents/MyTimeline/MyTimeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/MyTimeComponents/MyTimeline/MyTimeline.tsx -------------------------------------------------------------------------------- /src/components/MyTimeComponents/MyTimeline/Reminders/ReminderOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/MyTimeComponents/MyTimeline/Reminders/ReminderOptions.tsx -------------------------------------------------------------------------------- /src/components/MyTimeComponents/MyTimeline/Reminders/Reminders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/MyTimeComponents/MyTimeline/Reminders/Reminders.tsx -------------------------------------------------------------------------------- /src/components/MyTimeComponents/MyTimeline/TaskOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/MyTimeComponents/MyTimeline/TaskOptions.tsx -------------------------------------------------------------------------------- /src/components/MyTimeComponents/MyTimeline/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/MyTimeComponents/MyTimeline/index.scss -------------------------------------------------------------------------------- /src/components/MyTimeComponents/MyTimeline/useMyTimelineStore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/MyTimeComponents/MyTimeline/useMyTimelineStore.tsx -------------------------------------------------------------------------------- /src/components/MyTimeComponents/NotNow/NotNowModal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/MyTimeComponents/NotNow/NotNowModal.scss -------------------------------------------------------------------------------- /src/components/MyTimeComponents/NotNow/NotNowModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/MyTimeComponents/NotNow/NotNowModal.tsx -------------------------------------------------------------------------------- /src/components/MyTimeComponents/NotNow/ScheduledSlots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/MyTimeComponents/NotNow/ScheduledSlots.tsx -------------------------------------------------------------------------------- /src/components/MyTimeComponents/SchedulerErrorModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/MyTimeComponents/SchedulerErrorModal.tsx -------------------------------------------------------------------------------- /src/components/PartnerModeTour.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/PartnerModeTour.tsx -------------------------------------------------------------------------------- /src/components/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/components/index.scss -------------------------------------------------------------------------------- /src/constants/FeelingsList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/constants/FeelingsList.ts -------------------------------------------------------------------------------- /src/constants/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/constants/actions.ts -------------------------------------------------------------------------------- /src/constants/booleanScreen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/constants/booleanScreen.ts -------------------------------------------------------------------------------- /src/constants/confirmationHeaders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/constants/confirmationHeaders.ts -------------------------------------------------------------------------------- /src/constants/goals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/constants/goals.ts -------------------------------------------------------------------------------- /src/constants/languages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/constants/languages.ts -------------------------------------------------------------------------------- /src/constants/localStorageKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/constants/localStorageKeys.ts -------------------------------------------------------------------------------- /src/constants/pageTitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/constants/pageTitle.ts -------------------------------------------------------------------------------- /src/constants/rescheduleOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/constants/rescheduleOptions.ts -------------------------------------------------------------------------------- /src/constants/serverUrls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/constants/serverUrls.ts -------------------------------------------------------------------------------- /src/constants/starterGoals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/constants/starterGoals.ts -------------------------------------------------------------------------------- /src/constants/vibrateCheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/constants/vibrateCheck.ts -------------------------------------------------------------------------------- /src/contexts/deletedGoal-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/contexts/deletedGoal-context.tsx -------------------------------------------------------------------------------- /src/contexts/partner-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/contexts/partner-context.tsx -------------------------------------------------------------------------------- /src/controllers/GoalController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/controllers/GoalController.ts -------------------------------------------------------------------------------- /src/controllers/NewUserController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/controllers/NewUserController.ts -------------------------------------------------------------------------------- /src/controllers/PartnerController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/controllers/PartnerController.ts -------------------------------------------------------------------------------- /src/controllers/PubSubController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/controllers/PubSubController.ts -------------------------------------------------------------------------------- /src/controllers/TaskDoneTodayController.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/customize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/customize.scss -------------------------------------------------------------------------------- /src/factories/queryKeyFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/factories/queryKeyFactory.ts -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/global.d.ts -------------------------------------------------------------------------------- /src/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/global.scss -------------------------------------------------------------------------------- /src/helpers/BatchPublisher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/helpers/BatchPublisher.ts -------------------------------------------------------------------------------- /src/helpers/Contacts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/helpers/Contacts.tsx -------------------------------------------------------------------------------- /src/helpers/GoalActionHelper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/helpers/GoalActionHelper.tsx -------------------------------------------------------------------------------- /src/helpers/GoalLocStateHandler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/helpers/GoalLocStateHandler.tsx -------------------------------------------------------------------------------- /src/helpers/GoalProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/helpers/GoalProcessor.ts -------------------------------------------------------------------------------- /src/helpers/GoalStatsHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/helpers/GoalStatsHelper.ts -------------------------------------------------------------------------------- /src/helpers/InboxProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/helpers/InboxProcessor.ts -------------------------------------------------------------------------------- /src/helpers/MyTimeHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/helpers/MyTimeHelper.ts -------------------------------------------------------------------------------- /src/helpers/strategies/ChangeStrategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/helpers/strategies/ChangeStrategy.ts -------------------------------------------------------------------------------- /src/helpers/strategies/SharedGoalChangeStrategies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/helpers/strategies/SharedGoalChangeStrategies.ts -------------------------------------------------------------------------------- /src/helpers/strategies/SharedGoalChangesManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/helpers/strategies/SharedGoalChangesManager.ts -------------------------------------------------------------------------------- /src/hooks/Reminders/useGetRemindersForSeletedDay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/Reminders/useGetRemindersForSeletedDay.ts -------------------------------------------------------------------------------- /src/hooks/api/Contacts/mutations/useUpdateContact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/api/Contacts/mutations/useUpdateContact.ts -------------------------------------------------------------------------------- /src/hooks/api/Contacts/queries/useDeleteContact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/api/Contacts/queries/useDeleteContact.ts -------------------------------------------------------------------------------- /src/hooks/api/Contacts/queries/useGetAllContacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/api/Contacts/queries/useGetAllContacts.ts -------------------------------------------------------------------------------- /src/hooks/api/Contacts/queries/useGetContactByPartnerId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/api/Contacts/queries/useGetContactByPartnerId.ts -------------------------------------------------------------------------------- /src/hooks/api/Goals/mutations/useAddGoal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/api/Goals/mutations/useAddGoal.ts -------------------------------------------------------------------------------- /src/hooks/api/Goals/mutations/useArchiveGoal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/api/Goals/mutations/useArchiveGoal.ts -------------------------------------------------------------------------------- /src/hooks/api/Goals/mutations/useDeleteGoal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/api/Goals/mutations/useDeleteGoal.ts -------------------------------------------------------------------------------- /src/hooks/api/Goals/mutations/useEditGoal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/api/Goals/mutations/useEditGoal.ts -------------------------------------------------------------------------------- /src/hooks/api/Goals/mutations/useGoalMoveMutation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/api/Goals/mutations/useGoalMoveMutation.tsx -------------------------------------------------------------------------------- /src/hooks/api/Goals/mutations/useRestoreArchivedGoal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/api/Goals/mutations/useRestoreArchivedGoal.ts -------------------------------------------------------------------------------- /src/hooks/api/Goals/mutations/useRestoreDeletedGoal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/api/Goals/mutations/useRestoreDeletedGoal.ts -------------------------------------------------------------------------------- /src/hooks/api/Goals/mutations/useUpdateGoalPositions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/api/Goals/mutations/useUpdateGoalPositions.ts -------------------------------------------------------------------------------- /src/hooks/api/Goals/queries/useGetActiveGoals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/api/Goals/queries/useGetActiveGoals.ts -------------------------------------------------------------------------------- /src/hooks/api/Goals/queries/useGetArchivedGoals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/api/Goals/queries/useGetArchivedGoals.ts -------------------------------------------------------------------------------- /src/hooks/api/Goals/queries/useGetDeletedGoals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/api/Goals/queries/useGetDeletedGoals.ts -------------------------------------------------------------------------------- /src/hooks/api/Goals/queries/useGetGoalById.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/api/Goals/queries/useGetGoalById.ts -------------------------------------------------------------------------------- /src/hooks/api/Hints/mutations/useAddGoalHintsToMyGoal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/api/Hints/mutations/useAddGoalHintsToMyGoal.ts -------------------------------------------------------------------------------- /src/hooks/api/Hints/mutations/useDeleteGoalHint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/api/Hints/mutations/useDeleteGoalHint.ts -------------------------------------------------------------------------------- /src/hooks/api/Hints/mutations/useReportGoalHints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/api/Hints/mutations/useReportGoalHints.ts -------------------------------------------------------------------------------- /src/hooks/api/SharedWMGoals/useConvertToNormalGoal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/api/SharedWMGoals/useConvertToNormalGoal.ts -------------------------------------------------------------------------------- /src/hooks/api/SharedWMGoals/useGetSharedWMActiveGoals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/api/SharedWMGoals/useGetSharedWMActiveGoals.ts -------------------------------------------------------------------------------- /src/hooks/api/SharedWMGoals/useGetSharedWMGoalById.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/api/SharedWMGoals/useGetSharedWMGoalById.ts -------------------------------------------------------------------------------- /src/hooks/api/SharedWMGoals/useGetSharedWMGoalsArchived.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/api/SharedWMGoals/useGetSharedWMGoalsArchived.ts -------------------------------------------------------------------------------- /src/hooks/api/Tasks/useDoneTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/api/Tasks/useDoneTask.ts -------------------------------------------------------------------------------- /src/hooks/api/Tasks/useRescheduleTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/api/Tasks/useRescheduleTask.ts -------------------------------------------------------------------------------- /src/hooks/api/Tasks/useSkipTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/api/Tasks/useSkipTask.ts -------------------------------------------------------------------------------- /src/hooks/useApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/useApp.tsx -------------------------------------------------------------------------------- /src/hooks/useDebounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/useDebounce.ts -------------------------------------------------------------------------------- /src/hooks/useFeelingStore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/useFeelingStore.tsx -------------------------------------------------------------------------------- /src/hooks/useGetRelationshipStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/useGetRelationshipStatus.ts -------------------------------------------------------------------------------- /src/hooks/useGlobalStore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/useGlobalStore.tsx -------------------------------------------------------------------------------- /src/hooks/useGoalActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/useGoalActions.tsx -------------------------------------------------------------------------------- /src/hooks/useGoalSave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/useGoalSave.ts -------------------------------------------------------------------------------- /src/hooks/useGoalSelection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/useGoalSelection.ts -------------------------------------------------------------------------------- /src/hooks/useGoalStore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/useGoalStore.tsx -------------------------------------------------------------------------------- /src/hooks/useKeyPress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/useKeyPress.ts -------------------------------------------------------------------------------- /src/hooks/useLanguageSelection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/useLanguageSelection.ts -------------------------------------------------------------------------------- /src/hooks/useLongPress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/useLongPress.tsx -------------------------------------------------------------------------------- /src/hooks/useOnScreenKeyboardScrollFix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/useOnScreenKeyboardScrollFix.ts -------------------------------------------------------------------------------- /src/hooks/useProcessSharedGoalData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/useProcessSharedGoalData.ts -------------------------------------------------------------------------------- /src/hooks/useScheduler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/useScheduler.tsx -------------------------------------------------------------------------------- /src/hooks/useVirtualKeyBoardOpen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/hooks/useVirtualKeyBoardOpen.tsx -------------------------------------------------------------------------------- /src/hooks/x.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/jest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/jest.setup.ts -------------------------------------------------------------------------------- /src/layouts/AppLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/layouts/AppLayout.tsx -------------------------------------------------------------------------------- /src/layouts/BottomNavLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/layouts/BottomNavLayout.tsx -------------------------------------------------------------------------------- /src/layouts/OnboardingLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/layouts/OnboardingLayout.tsx -------------------------------------------------------------------------------- /src/models/ContactItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/models/ContactItem.ts -------------------------------------------------------------------------------- /src/models/FeelingItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/models/FeelingItem.ts -------------------------------------------------------------------------------- /src/models/GCustomItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/models/GCustomItem.ts -------------------------------------------------------------------------------- /src/models/GoalItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/models/GoalItem.ts -------------------------------------------------------------------------------- /src/models/HintItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/models/HintItem.ts -------------------------------------------------------------------------------- /src/models/InboxItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/models/InboxItem.ts -------------------------------------------------------------------------------- /src/models/SchedulerOutputCacheItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/models/SchedulerOutputCacheItem.ts -------------------------------------------------------------------------------- /src/models/SharedGoalNotMoved.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/models/SharedGoalNotMoved.ts -------------------------------------------------------------------------------- /src/models/SharedGoalNotMovedItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/models/SharedGoalNotMovedItem.ts -------------------------------------------------------------------------------- /src/models/TaskHistoryItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/models/TaskHistoryItem.ts -------------------------------------------------------------------------------- /src/models/TaskItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/models/TaskItem.ts -------------------------------------------------------------------------------- /src/models/TasksDoneTodayItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/models/TasksDoneTodayItem.ts -------------------------------------------------------------------------------- /src/models/TrashItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/models/TrashItem.ts -------------------------------------------------------------------------------- /src/models/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/models/db.ts -------------------------------------------------------------------------------- /src/models/dbSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/models/dbSchema.ts -------------------------------------------------------------------------------- /src/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/models/index.ts -------------------------------------------------------------------------------- /src/override.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/override.scss -------------------------------------------------------------------------------- /src/pages/FAQPage/FAQPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/pages/FAQPage/FAQPage.scss -------------------------------------------------------------------------------- /src/pages/FAQPage/FAQPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/pages/FAQPage/FAQPage.tsx -------------------------------------------------------------------------------- /src/pages/FeedbackPage/FeedbackPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/pages/FeedbackPage/FeedbackPage.tsx -------------------------------------------------------------------------------- /src/pages/FeedbackPage/feedbackpage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/pages/FeedbackPage/feedbackpage.scss -------------------------------------------------------------------------------- /src/pages/FeelingsPage/FeelingsPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/pages/FeelingsPage/FeelingsPage.scss -------------------------------------------------------------------------------- /src/pages/FeelingsPage/FeelingsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/pages/FeelingsPage/FeelingsPage.tsx -------------------------------------------------------------------------------- /src/pages/FeelingsPage/components/AddFeeling.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/pages/FeelingsPage/components/AddFeeling.tsx -------------------------------------------------------------------------------- /src/pages/FeelingsPage/components/Feeling.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/pages/FeelingsPage/components/Feeling.tsx -------------------------------------------------------------------------------- /src/pages/FeelingsPage/components/NoteModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/pages/FeelingsPage/components/NoteModal.tsx -------------------------------------------------------------------------------- /src/pages/GoalsPage/ContactsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/pages/GoalsPage/ContactsPage.tsx -------------------------------------------------------------------------------- /src/pages/GoalsPage/GoalModals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/pages/GoalsPage/GoalModals.tsx -------------------------------------------------------------------------------- /src/pages/GoalsPage/GoalsPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/pages/GoalsPage/GoalsPage.scss -------------------------------------------------------------------------------- /src/pages/GoalsPage/InvitationStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/pages/GoalsPage/InvitationStatus.tsx -------------------------------------------------------------------------------- /src/pages/GoalsPage/MyGoals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/pages/GoalsPage/MyGoals.tsx -------------------------------------------------------------------------------- /src/pages/GoalsPage/MyGoalsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/pages/GoalsPage/MyGoalsPage.tsx -------------------------------------------------------------------------------- /src/pages/GoalsPage/PartnerGoals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/pages/GoalsPage/PartnerGoals.tsx -------------------------------------------------------------------------------- /src/pages/GoalsPage/SublistGoalsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/pages/GoalsPage/SublistGoalsPage.tsx -------------------------------------------------------------------------------- /src/pages/GoalsPage/components/ArchivedGoals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/pages/GoalsPage/components/ArchivedGoals.tsx -------------------------------------------------------------------------------- /src/pages/GoalsPage/components/AvailableGoalHints.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/pages/GoalsPage/components/AvailableGoalHints.tsx -------------------------------------------------------------------------------- /src/pages/GoalsPage/components/DeletedGoals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/pages/GoalsPage/components/DeletedGoals.tsx -------------------------------------------------------------------------------- /src/pages/GoalsPage/components/modals/AddContactModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/pages/GoalsPage/components/modals/AddContactModal.tsx -------------------------------------------------------------------------------- /src/pages/GoalsPage/components/modals/ContactActionModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/pages/GoalsPage/components/modals/ContactActionModal.tsx -------------------------------------------------------------------------------- /src/pages/GoalsPage/components/modals/EditContactModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/pages/GoalsPage/components/modals/EditContactModal.tsx -------------------------------------------------------------------------------- /src/pages/GoalsPage/components/modals/ShareGoalModal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/pages/GoalsPage/components/modals/ShareGoalModal.scss -------------------------------------------------------------------------------- /src/pages/GoalsPage/components/modals/ShareGoalModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/pages/GoalsPage/components/modals/ShareGoalModal.tsx -------------------------------------------------------------------------------- /src/pages/InvestPage/InvestPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/pages/InvestPage/InvestPage.scss -------------------------------------------------------------------------------- /src/pages/InvestPage/InvestPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/pages/InvestPage/InvestPage.tsx -------------------------------------------------------------------------------- /src/pages/InvitePage/InvitePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/pages/InvitePage/InvitePage.tsx -------------------------------------------------------------------------------- /src/pages/LandingPage/LandingPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/pages/LandingPage/LandingPage.scss -------------------------------------------------------------------------------- /src/pages/LandingPage/LandingPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/pages/LandingPage/LandingPage.tsx -------------------------------------------------------------------------------- /src/pages/MyTimePage/MyTimePage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/pages/MyTimePage/MyTimePage.scss -------------------------------------------------------------------------------- /src/pages/MyTimePage/MyTimePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/pages/MyTimePage/MyTimePage.tsx -------------------------------------------------------------------------------- /src/react-app-env.t.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/react-app-env.t.ts -------------------------------------------------------------------------------- /src/service-worker/service-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/service-worker/service-worker.ts -------------------------------------------------------------------------------- /src/service-worker/serviceWorkerRegistration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/service-worker/serviceWorkerRegistration.ts -------------------------------------------------------------------------------- /src/services/contact.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/services/contact.service.ts -------------------------------------------------------------------------------- /src/services/goal.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/services/goal.service.ts -------------------------------------------------------------------------------- /src/short.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/short.scss -------------------------------------------------------------------------------- /src/store/DarkModeState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/store/DarkModeState.ts -------------------------------------------------------------------------------- /src/store/FeelingsState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/store/FeelingsState.ts -------------------------------------------------------------------------------- /src/store/GlowGoalIdState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/store/GlowGoalIdState.ts -------------------------------------------------------------------------------- /src/store/GoalsState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/store/GoalsState.ts -------------------------------------------------------------------------------- /src/store/LanguageSelectionState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/store/LanguageSelectionState.ts -------------------------------------------------------------------------------- /src/store/SchedulerErrorState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/store/SchedulerErrorState.ts -------------------------------------------------------------------------------- /src/store/SidebarState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/store/SidebarState.ts -------------------------------------------------------------------------------- /src/store/SuggestedGoalState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/store/SuggestedGoalState.ts -------------------------------------------------------------------------------- /src/store/TaskState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/store/TaskState.ts -------------------------------------------------------------------------------- /src/store/ThemeState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/store/ThemeState.ts -------------------------------------------------------------------------------- /src/store/TourState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/store/TourState.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/moveGoalState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/store/moveGoalState.ts -------------------------------------------------------------------------------- /src/store/useNavigateToSubgoal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/store/useNavigateToSubgoal.ts -------------------------------------------------------------------------------- /src/strategies/ChangeAcceptStrategyContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/strategies/ChangeAcceptStrategyContext.ts -------------------------------------------------------------------------------- /src/strategies/GoalChangeStrategies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/strategies/GoalChangeStrategies.ts -------------------------------------------------------------------------------- /src/translations/de/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/translations/de/translation.json -------------------------------------------------------------------------------- /src/translations/en/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/translations/en/translation.json -------------------------------------------------------------------------------- /src/translations/es/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/translations/es/translation.json -------------------------------------------------------------------------------- /src/translations/fr/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/translations/fr/translation.json -------------------------------------------------------------------------------- /src/translations/gt/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/translations/gt/translation.json -------------------------------------------------------------------------------- /src/translations/he/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/translations/he/translation.json -------------------------------------------------------------------------------- /src/translations/hi/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/translations/hi/translation.json -------------------------------------------------------------------------------- /src/translations/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/translations/i18n.ts -------------------------------------------------------------------------------- /src/translations/mr/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/translations/mr/translation.json -------------------------------------------------------------------------------- /src/translations/nl/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/translations/nl/translation.json -------------------------------------------------------------------------------- /src/translations/pt/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/translations/pt/translation.json -------------------------------------------------------------------------------- /src/translations/ta/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/translations/ta/translation.json -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- 1 | export type TGoalConfigMode = "edit" | "add"; 2 | -------------------------------------------------------------------------------- /src/utils/BackupUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/utils/BackupUtils.ts -------------------------------------------------------------------------------- /src/utils/ExportStrategies/CsvExportStrategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/utils/ExportStrategies/CsvExportStrategy.ts -------------------------------------------------------------------------------- /src/utils/ExportStrategies/ExportManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/utils/ExportStrategies/ExportManager.ts -------------------------------------------------------------------------------- /src/utils/ExportStrategies/JsonExportStrategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/utils/ExportStrategies/JsonExportStrategy.ts -------------------------------------------------------------------------------- /src/utils/SchedulerUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/utils/SchedulerUtils.ts -------------------------------------------------------------------------------- /src/utils/defaultGenerators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/utils/defaultGenerators.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/journal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/utils/journal.ts -------------------------------------------------------------------------------- /src/utils/patterns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/utils/patterns.ts -------------------------------------------------------------------------------- /src/utils/priotizeImpossibleGoals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/utils/priotizeImpossibleGoals.ts -------------------------------------------------------------------------------- /src/utils/pubSubUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/utils/pubSubUtils.ts -------------------------------------------------------------------------------- /src/utils/rawDBScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/utils/rawDBScript.js -------------------------------------------------------------------------------- /src/utils/sharedGoalUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/utils/sharedGoalUtils.ts -------------------------------------------------------------------------------- /src/utils/updateGoalsImpossibleStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/utils/updateGoalsImpossibleStatus.ts -------------------------------------------------------------------------------- /src/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/src/version.json -------------------------------------------------------------------------------- /tsconfig.jest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/tsconfig.jest.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.paths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/tsconfig.paths.json -------------------------------------------------------------------------------- /update_artifact_script/.gitignore: -------------------------------------------------------------------------------- 1 | wasm-build-pkg.zip 2 | -------------------------------------------------------------------------------- /update_artifact_script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/update_artifact_script/README.md -------------------------------------------------------------------------------- /update_artifact_script/artifact_id.txt: -------------------------------------------------------------------------------- 1 | 927678242 2 | -------------------------------------------------------------------------------- /update_artifact_script/scope_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/update_artifact_script/scope_screenshot.png -------------------------------------------------------------------------------- /update_artifact_script/update_artifacts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/update_artifact_script/update_artifacts.sh -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijlleenders/ZinZen/HEAD/vite.config.ts --------------------------------------------------------------------------------