├── .eslintrc.cjs ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── issue_template.md ├── pull_request_template.md └── workflows │ └── pr-build-check.yml ├── .gitignore ├── .husky └── post-checkout ├── .prettierrc ├── README.md ├── electron-builder.json ├── index.html ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public ├── logo_icon.png ├── logo_icon.svg ├── mockServiceWorker.js └── morib_miri.png ├── scripts ├── build-mac-intel.sh ├── build-mac-universal.sh ├── build-mac.sh └── notarize.cjs ├── src ├── app │ ├── App.tsx │ ├── index.css │ ├── main.tsx │ ├── mocks │ │ ├── browser.ts │ │ ├── common │ │ │ ├── common.resolvers.ts │ │ │ └── common.responses.ts │ │ ├── handlers.ts │ │ ├── home │ │ │ ├── home.resolvers.ts │ │ │ └── home.responses.ts │ │ └── onboarding │ │ │ ├── onboarding.resolvers.ts │ │ │ └── onboarding.responses.ts │ ├── pages │ │ ├── AllowedServicePage │ │ │ ├── AllowedServiceGroupDetail │ │ │ │ ├── AllowedServiceGroupDetail.tsx │ │ │ │ ├── Content │ │ │ │ │ └── AllowedServiceGroupDetailContent.tsx │ │ │ │ ├── Header │ │ │ │ │ └── AllowedServiceGroupDetailHeader.tsx │ │ │ │ └── Tabs │ │ │ │ │ └── AllowedServiceGroupDetailTabs.tsx │ │ │ ├── AllowedServiceList │ │ │ │ └── AllowedServiceList.tsx │ │ │ ├── AllowedServicePage.tsx │ │ │ ├── ModalContentsAlert │ │ │ │ └── ModalContentsAlert.tsx │ │ │ └── RecommendService │ │ │ │ └── RecommendService.tsx │ │ ├── HomePage │ │ │ ├── BoxAddCategory │ │ │ │ └── BoxAddCategory.tsx │ │ │ ├── BoxCategory │ │ │ │ ├── BoxCategory.tsx │ │ │ │ ├── BoxTodoInput │ │ │ │ │ └── BoxTodoInput.tsx │ │ │ │ ├── StatusDefaultBoxCategory │ │ │ │ │ └── StatusDefaultBoxCategory.tsx │ │ │ │ └── hooks │ │ │ │ │ └── useCreateTodo.ts │ │ │ ├── BoxTodayTodo │ │ │ │ ├── BoxTodayTodo.tsx │ │ │ │ ├── StatusAddBoxTodayTodo │ │ │ │ │ ├── ButtonHomeSmall │ │ │ │ │ │ └── ButtonHomeSmall.tsx │ │ │ │ │ └── StatusAddBoxTodayTodo.tsx │ │ │ │ └── StatusDefaultBoxTodayTodo │ │ │ │ │ └── StatusDefaultBoxTodayTodo.tsx │ │ │ ├── ButtonMoreFriends │ │ │ │ └── ButtonMoreFriends.tsx │ │ │ ├── ButtonUserProfile │ │ │ │ └── ButtonUserProfile.tsx │ │ │ ├── DatePicker │ │ │ │ ├── ButtonDate │ │ │ │ │ └── ButtonDate.tsx │ │ │ │ ├── DatePicker.tsx │ │ │ │ └── hooks │ │ │ │ │ └── useDatePicker.ts │ │ │ ├── HomePage.tsx │ │ │ ├── ModalContentsAlert │ │ │ │ ├── ButtonAlert │ │ │ │ │ └── ButtonAlert.tsx │ │ │ │ ├── Complete │ │ │ │ │ └── Complete.tsx │ │ │ │ ├── DeleteAccount │ │ │ │ │ └── DeleteAccount.tsx │ │ │ │ ├── Logoout │ │ │ │ │ └── Logout.tsx │ │ │ │ ├── ModalContentsAlert.tsx │ │ │ │ ├── RegisterAllowedService │ │ │ │ │ └── RegisterAllowedService.tsx │ │ │ │ ├── TimerRestriction │ │ │ │ │ └── TimerRestriction.tsx │ │ │ │ └── types │ │ │ │ │ └── index.ts │ │ │ ├── ModalContentsTimerError │ │ │ │ └── ModalContentsTimerError.tsx │ │ │ ├── StatusDefaultHome │ │ │ │ └── StatusDefaultHome.tsx │ │ │ ├── TooltipFriendInfo │ │ │ │ └── TooltipFriendInfo.tsx │ │ │ └── hooks │ │ │ │ └── useCalendar.ts │ │ ├── LoginPage │ │ │ └── LoginPage.tsx │ │ ├── NotFoundPage │ │ │ └── NotFoundPage.tsx │ │ ├── OnboardingPage │ │ │ ├── ButtonSkip │ │ │ │ └── ButtonSkip.tsx │ │ │ ├── OnboardingPage.tsx │ │ │ ├── StepField │ │ │ │ └── StepField.tsx │ │ │ ├── StepService │ │ │ │ ├── AllowedServices │ │ │ │ │ └── AllowedServices.tsx │ │ │ │ ├── ButtonService │ │ │ │ │ └── ButtonService.tsx │ │ │ │ ├── StepService.tsx │ │ │ │ └── Tabs │ │ │ │ │ └── Tabs.tsx │ │ │ ├── StepStart │ │ │ │ └── StepStart.tsx │ │ │ ├── hooks │ │ │ │ └── useFunnel.tsx │ │ │ └── utils │ │ │ │ └── serviceUrl.ts │ │ ├── RedirectPage │ │ │ └── RedirectPage.tsx │ │ └── TimerPage │ │ │ ├── AllowedServices │ │ │ ├── AllowedServicesItem.tsx │ │ │ ├── AllowedServicesPopover.tsx │ │ │ ├── AllowedServicesTitle.tsx │ │ │ ├── AllowedServicesTooltip.tsx │ │ │ └── Checkbox.tsx │ │ │ ├── Carousel │ │ │ ├── Carousel.tsx │ │ │ └── CarouselFriend.tsx │ │ │ ├── MainTimer │ │ │ ├── MainTimer.tsx │ │ │ ├── TimerDisplay │ │ │ │ ├── ButtonTimerPlay │ │ │ │ │ └── ButtonTimerPlay.tsx │ │ │ │ ├── ProgressCircle │ │ │ │ │ └── ProgressCircle.tsx │ │ │ │ └── TimerDisplay.tsx │ │ │ └── TimerHeader │ │ │ │ └── TimerHeader.tsx │ │ │ ├── NavigationButtons │ │ │ └── NavigationButtons.tsx │ │ │ ├── SideMenuTimer │ │ │ └── SideMenuTimer.tsx │ │ │ ├── TimerPage.tsx │ │ │ ├── contexts │ │ │ └── TimerContext.tsx │ │ │ ├── hooks │ │ │ ├── useAllowedServices.ts │ │ │ ├── useBrowserMonitor.ts │ │ │ ├── useTimerActions.ts │ │ │ ├── useTimerCount.ts │ │ │ ├── useTimerState.ts │ │ │ ├── useUIState.ts │ │ │ └── useUrlHandler.ts │ │ │ └── utils │ │ │ └── timeFormat.ts │ ├── router │ │ ├── ProtectedRoute.tsx │ │ ├── Router.tsx │ │ └── routesConfig.ts │ ├── shared │ │ ├── apisV2 │ │ │ ├── allowedService │ │ │ │ ├── allowedService.api.ts │ │ │ │ ├── allowedService.keys.ts │ │ │ │ ├── allowedService.mutations.ts │ │ │ │ └── allowedService.queries.ts │ │ │ ├── auth │ │ │ │ ├── auth.api.ts │ │ │ │ └── auth.queries.ts │ │ │ ├── client.ts │ │ │ ├── common │ │ │ │ ├── common.api.ts │ │ │ │ ├── common.keys.ts │ │ │ │ ├── common.mutations.ts │ │ │ │ └── common.queries.ts │ │ │ ├── friends │ │ │ │ ├── friends.api.ts │ │ │ │ ├── friends.keys.ts │ │ │ │ ├── friends.mutations.ts │ │ │ │ └── friends.queries.ts │ │ │ ├── home │ │ │ │ ├── home.api.ts │ │ │ │ ├── home.keys.ts │ │ │ │ ├── home.mutations.ts │ │ │ │ └── home.queries.ts │ │ │ ├── onboarding │ │ │ │ ├── onboarding.api.ts │ │ │ │ ├── onboarding.keys.ts │ │ │ │ ├── onboarding.mutations.ts │ │ │ │ └── onboarding.queries.ts │ │ │ ├── queryClient.ts │ │ │ ├── setting │ │ │ │ ├── setting.api.ts │ │ │ │ ├── setting.keys.ts │ │ │ │ ├── setting.mutations.ts │ │ │ │ └── setting.queries.ts │ │ │ └── timer │ │ │ │ ├── timer.api.ts │ │ │ │ ├── timer.keys.ts │ │ │ │ ├── timer.mutations.ts │ │ │ │ └── timer.queries.ts │ │ ├── assets │ │ │ ├── images │ │ │ │ ├── example.jpg │ │ │ │ ├── img_timer_bg.png │ │ │ │ ├── login_background.png │ │ │ │ ├── profile_image1.png │ │ │ │ ├── profile_image2.png │ │ │ │ ├── profile_image3.png │ │ │ │ └── profile_image4.png │ │ │ ├── lotties │ │ │ │ └── loading.json │ │ │ └── svgs │ │ │ │ ├── 404.svg │ │ │ │ ├── add_btn.svg │ │ │ │ ├── arrow_circle_up_right.svg │ │ │ │ ├── arrow_right.svg │ │ │ │ ├── bell.svg │ │ │ │ ├── btn_add.svg │ │ │ │ ├── btn_arrow.svg │ │ │ │ ├── btn_arrow_bgNone.svg │ │ │ │ ├── btn_cal.svg │ │ │ │ ├── btn_cal_black.svg │ │ │ │ ├── btn_hamburger.svg │ │ │ │ ├── btn_home.svg │ │ │ │ ├── btn_inputClear.svg │ │ │ │ ├── btn_list.svg │ │ │ │ ├── btn_moribset_active.svg │ │ │ │ ├── btn_moribset_default.svg │ │ │ │ ├── btn_today.svg │ │ │ │ ├── button_inputSuccess.svg │ │ │ │ ├── check_box_blank.svg │ │ │ │ ├── check_box_fill.svg │ │ │ │ ├── common │ │ │ │ ├── ic_logo.svg │ │ │ │ └── ic_meatball_default.svg │ │ │ │ ├── connection_icon.svg │ │ │ │ ├── default_profile.svg │ │ │ │ ├── default_url_favicon.svg │ │ │ │ ├── defaultpause.svg │ │ │ │ ├── defaultplay.svg │ │ │ │ ├── description.svg │ │ │ │ ├── disabled_dropdown.svg │ │ │ │ ├── dropIcon.svg │ │ │ │ ├── elipse.svg │ │ │ │ ├── error.svg │ │ │ │ ├── error_input.svg │ │ │ │ ├── friend_delBtn.svg │ │ │ │ ├── friend_setting.svg │ │ │ │ ├── google_login.svg │ │ │ │ ├── gradient_circle.svg │ │ │ │ ├── header_delBtn.svg │ │ │ │ ├── home │ │ │ │ ├── ic_box.svg │ │ │ │ └── ic_plus.svg │ │ │ │ ├── home_default_icon.svg │ │ │ │ ├── hoverpause.svg │ │ │ │ ├── hoverplay.svg │ │ │ │ ├── ic_back_btn.svg │ │ │ │ ├── ic_delete_alert.svg │ │ │ │ ├── ic_description.svg │ │ │ │ ├── ic_folder.svg │ │ │ │ ├── ic_gear.svg │ │ │ │ ├── ic_line.svg │ │ │ │ ├── ic_logo.svg │ │ │ │ ├── ic_minus.svg │ │ │ │ ├── ic_pencil.svg │ │ │ │ ├── ic_service_design.svg │ │ │ │ ├── ic_service_design_sm.svg │ │ │ │ ├── icon_clock.svg │ │ │ │ ├── large_plus.svg │ │ │ │ ├── login │ │ │ │ ├── ic_login_timer.svg │ │ │ │ └── ic_logo.svg │ │ │ │ ├── logo_icon.svg │ │ │ │ ├── mail.svg │ │ │ │ ├── mingcute_time-fill.svg │ │ │ │ ├── mingcute_time-line.svg │ │ │ │ ├── minus_btn.svg │ │ │ │ ├── more_friend.svg │ │ │ │ ├── moribSet.svg │ │ │ │ ├── onboarding │ │ │ │ ├── ic_business.svg │ │ │ │ ├── ic_design.svg │ │ │ │ ├── ic_development.svg │ │ │ │ ├── ic_marketing.svg │ │ │ │ ├── ic_planning.svg │ │ │ │ └── ic_studying.svg │ │ │ │ ├── onboarding_image.svg │ │ │ │ ├── plus.svg │ │ │ │ ├── popover_add_category.svg │ │ │ │ ├── popover_add_todo.svg │ │ │ │ ├── react.svg │ │ │ │ ├── selected_number_icon.svg │ │ │ │ ├── setting.svg │ │ │ │ ├── timer │ │ │ │ ├── ic_check_box_active.svg │ │ │ │ ├── ic_check_box_inactive.svg │ │ │ │ ├── ic_deactivated_clock.svg │ │ │ │ ├── ic_online.svg │ │ │ │ └── ic_timer_inner_circle.svg │ │ │ │ ├── todo_meatball_press.svg │ │ │ │ ├── todo_toggle.svg │ │ │ │ ├── tooltip_triangle.svg │ │ │ │ ├── triangle.svg │ │ │ │ ├── upIcon.svg │ │ │ │ └── user_circle.svg │ │ ├── components │ │ │ ├── AutoFixedGrid │ │ │ │ └── AutoFixedGrid.tsx │ │ │ ├── BoxTodo │ │ │ │ └── BoxTodo.tsx │ │ │ ├── ButtonArrowSVG │ │ │ │ └── ButtonArrowSVG.tsx │ │ │ ├── ButtonDropdownOptions │ │ │ │ └── ButtonDropdownOptions.tsx │ │ │ ├── ButtonHomeLarge │ │ │ │ └── ButtonHomeLarge.tsx │ │ │ ├── ButtonRadius5 │ │ │ │ └── ButtonRadius5.tsx │ │ │ ├── ButtonRadius8 │ │ │ │ └── ButtonRadius8.tsx │ │ │ ├── ButtonStatusToggle │ │ │ │ └── ButtonStatusToggle.tsx │ │ │ ├── ButtonTodayToggle │ │ │ │ └── ButtonTodoToggle.tsx │ │ │ ├── Calendar │ │ │ │ ├── ButtonCalendarAddRoutine │ │ │ │ │ └── ButtonCalendarAddRoutine.tsx │ │ │ │ ├── Calendar.tsx │ │ │ │ ├── HeaderCalendar │ │ │ │ │ └── HeaderCalendar.tsx │ │ │ │ └── calendar.css │ │ │ ├── CircleColorIcon │ │ │ │ └── CircleColorIcon.tsx │ │ │ ├── ColorPallete │ │ │ │ └── ColorPallete.tsx │ │ │ ├── Dropdown │ │ │ │ └── Dropdown.tsx │ │ │ ├── ErrorBoundary │ │ │ │ └── ErrorBoundary.tsx │ │ │ ├── FallbackApiError │ │ │ │ └── FallbackApiError.tsx │ │ │ ├── FaviconImage │ │ │ │ └── FaviconImage.tsx │ │ │ ├── HeartBeatBoundary │ │ │ │ └── HeartBeatBoundary.tsx │ │ │ ├── LoadingOverlay │ │ │ │ └── LoadingOverlay.tsx │ │ │ ├── ModalContentsFriends │ │ │ │ ├── FriendRequest │ │ │ │ │ ├── ButtonRequestAction │ │ │ │ │ │ └── ButtonRequestAction.tsx │ │ │ │ │ ├── FriendsListRequested │ │ │ │ │ │ └── FriendsListRequested.tsx │ │ │ │ │ └── FriendsRequest.tsx │ │ │ │ ├── FriendUserProfile │ │ │ │ │ └── FriendUserProfile.tsx │ │ │ │ ├── FriendsList │ │ │ │ │ ├── FriendsInfo │ │ │ │ │ │ └── FriendInfo.tsx │ │ │ │ │ └── FriendsList.tsx │ │ │ │ └── ModalContentsFriends.tsx │ │ │ ├── NotificationPanel │ │ │ │ └── NotificationPanel.tsx │ │ │ ├── Portal │ │ │ │ └── Portal.tsx │ │ │ ├── Spacer │ │ │ │ └── Spacer.tsx │ │ │ └── TextField │ │ │ │ └── TextField.tsx │ │ ├── config │ │ │ └── auth.ts │ │ ├── constants │ │ │ ├── btnText.ts │ │ │ ├── colorPalette.ts │ │ │ ├── emailRegex.ts │ │ │ ├── error.ts │ │ │ ├── fields.ts │ │ │ ├── timerPageText.ts │ │ │ └── weekDays.ts │ │ ├── hocs │ │ │ └── withAuthProtection.tsx │ │ ├── hooks │ │ │ ├── useCarousel.ts │ │ │ └── useClickOutside.ts │ │ ├── layout │ │ │ ├── Layout.tsx │ │ │ └── Sidebar │ │ │ │ ├── ModalContentsSetting │ │ │ │ ├── AccountContent │ │ │ │ │ └── AccountContent.tsx │ │ │ │ ├── ModalContentsSetting.tsx │ │ │ │ ├── Tabs │ │ │ │ │ └── Tabs.tsx │ │ │ │ └── WorkspaceSettingContent │ │ │ │ │ └── WorkspaceSettingContent.tsx │ │ │ │ └── Sidebar.tsx │ │ ├── mocks │ │ │ ├── categoryData.ts │ │ │ ├── faviconData.ts │ │ │ ├── homeData.ts │ │ │ ├── urlData.ts │ │ │ └── userData.ts │ │ ├── types │ │ │ ├── SSEEvent.ts │ │ │ ├── allowedService.ts │ │ │ ├── allowedSites.ts │ │ │ ├── api │ │ │ │ ├── allowedService.ts │ │ │ │ ├── auth.ts │ │ │ │ ├── common.ts │ │ │ │ ├── error.ts │ │ │ │ ├── friends.ts │ │ │ │ ├── home.ts │ │ │ │ ├── onboarding.ts │ │ │ │ ├── setting.ts │ │ │ │ └── timer.ts │ │ │ ├── common │ │ │ │ └── index.tsx │ │ │ ├── fileds.ts │ │ │ ├── friend.ts │ │ │ ├── global.ts │ │ │ ├── home │ │ │ │ └── index.tsx │ │ │ ├── profile.ts │ │ │ ├── tasks.ts │ │ │ ├── todoData.ts │ │ │ └── userData.ts │ │ └── utils │ │ │ ├── auth.ts │ │ │ ├── calendar │ │ │ └── index.ts │ │ │ ├── date │ │ │ └── index.ts │ │ │ ├── error.ts │ │ │ ├── overlay.tsx │ │ │ ├── path.ts │ │ │ ├── tasks.ts │ │ │ ├── time │ │ │ └── index.ts │ │ │ ├── timer │ │ │ └── index.ts │ │ │ ├── url.ts │ │ │ ├── url │ │ │ └── index.ts │ │ │ └── validation.ts │ └── vite-env.d.ts └── electron │ ├── browserMonitor.ts │ ├── contants │ └── protocol.ts │ ├── main.ts │ ├── monitor │ └── browser.ts │ ├── notification │ └── mac.ts │ ├── pathResolver.ts │ ├── preload.cts │ ├── tsconfig.json │ ├── util.ts │ └── window │ ├── key.ts │ ├── os.ts │ └── resolution.ts ├── tailwind.config.js ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json ├── vercel.json └── vite.config.ts /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/.github/ISSUE_TEMPLATE/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/pr-build-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/.github/workflows/pr-build-check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/post-checkout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/.husky/post-checkout -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/README.md -------------------------------------------------------------------------------- /electron-builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/electron-builder.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/logo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/public/logo_icon.png -------------------------------------------------------------------------------- /public/logo_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/public/logo_icon.svg -------------------------------------------------------------------------------- /public/mockServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/public/mockServiceWorker.js -------------------------------------------------------------------------------- /public/morib_miri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/public/morib_miri.png -------------------------------------------------------------------------------- /scripts/build-mac-intel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/scripts/build-mac-intel.sh -------------------------------------------------------------------------------- /scripts/build-mac-universal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/scripts/build-mac-universal.sh -------------------------------------------------------------------------------- /scripts/build-mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/scripts/build-mac.sh -------------------------------------------------------------------------------- /scripts/notarize.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/scripts/notarize.cjs -------------------------------------------------------------------------------- /src/app/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/App.tsx -------------------------------------------------------------------------------- /src/app/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/index.css -------------------------------------------------------------------------------- /src/app/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/main.tsx -------------------------------------------------------------------------------- /src/app/mocks/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/mocks/browser.ts -------------------------------------------------------------------------------- /src/app/mocks/common/common.resolvers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/mocks/common/common.resolvers.ts -------------------------------------------------------------------------------- /src/app/mocks/common/common.responses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/mocks/common/common.responses.ts -------------------------------------------------------------------------------- /src/app/mocks/handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/mocks/handlers.ts -------------------------------------------------------------------------------- /src/app/mocks/home/home.resolvers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/mocks/home/home.resolvers.ts -------------------------------------------------------------------------------- /src/app/mocks/home/home.responses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/mocks/home/home.responses.ts -------------------------------------------------------------------------------- /src/app/mocks/onboarding/onboarding.resolvers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/mocks/onboarding/onboarding.resolvers.ts -------------------------------------------------------------------------------- /src/app/mocks/onboarding/onboarding.responses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/mocks/onboarding/onboarding.responses.ts -------------------------------------------------------------------------------- /src/app/pages/AllowedServicePage/AllowedServiceGroupDetail/AllowedServiceGroupDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/AllowedServicePage/AllowedServiceGroupDetail/AllowedServiceGroupDetail.tsx -------------------------------------------------------------------------------- /src/app/pages/AllowedServicePage/AllowedServiceGroupDetail/Content/AllowedServiceGroupDetailContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/AllowedServicePage/AllowedServiceGroupDetail/Content/AllowedServiceGroupDetailContent.tsx -------------------------------------------------------------------------------- /src/app/pages/AllowedServicePage/AllowedServiceGroupDetail/Header/AllowedServiceGroupDetailHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/AllowedServicePage/AllowedServiceGroupDetail/Header/AllowedServiceGroupDetailHeader.tsx -------------------------------------------------------------------------------- /src/app/pages/AllowedServicePage/AllowedServiceGroupDetail/Tabs/AllowedServiceGroupDetailTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/AllowedServicePage/AllowedServiceGroupDetail/Tabs/AllowedServiceGroupDetailTabs.tsx -------------------------------------------------------------------------------- /src/app/pages/AllowedServicePage/AllowedServiceList/AllowedServiceList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/AllowedServicePage/AllowedServiceList/AllowedServiceList.tsx -------------------------------------------------------------------------------- /src/app/pages/AllowedServicePage/AllowedServicePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/AllowedServicePage/AllowedServicePage.tsx -------------------------------------------------------------------------------- /src/app/pages/AllowedServicePage/ModalContentsAlert/ModalContentsAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/AllowedServicePage/ModalContentsAlert/ModalContentsAlert.tsx -------------------------------------------------------------------------------- /src/app/pages/AllowedServicePage/RecommendService/RecommendService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/AllowedServicePage/RecommendService/RecommendService.tsx -------------------------------------------------------------------------------- /src/app/pages/HomePage/BoxAddCategory/BoxAddCategory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/HomePage/BoxAddCategory/BoxAddCategory.tsx -------------------------------------------------------------------------------- /src/app/pages/HomePage/BoxCategory/BoxCategory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/HomePage/BoxCategory/BoxCategory.tsx -------------------------------------------------------------------------------- /src/app/pages/HomePage/BoxCategory/BoxTodoInput/BoxTodoInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/HomePage/BoxCategory/BoxTodoInput/BoxTodoInput.tsx -------------------------------------------------------------------------------- /src/app/pages/HomePage/BoxCategory/StatusDefaultBoxCategory/StatusDefaultBoxCategory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/HomePage/BoxCategory/StatusDefaultBoxCategory/StatusDefaultBoxCategory.tsx -------------------------------------------------------------------------------- /src/app/pages/HomePage/BoxCategory/hooks/useCreateTodo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/HomePage/BoxCategory/hooks/useCreateTodo.ts -------------------------------------------------------------------------------- /src/app/pages/HomePage/BoxTodayTodo/BoxTodayTodo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/HomePage/BoxTodayTodo/BoxTodayTodo.tsx -------------------------------------------------------------------------------- /src/app/pages/HomePage/BoxTodayTodo/StatusAddBoxTodayTodo/ButtonHomeSmall/ButtonHomeSmall.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/HomePage/BoxTodayTodo/StatusAddBoxTodayTodo/ButtonHomeSmall/ButtonHomeSmall.tsx -------------------------------------------------------------------------------- /src/app/pages/HomePage/BoxTodayTodo/StatusAddBoxTodayTodo/StatusAddBoxTodayTodo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/HomePage/BoxTodayTodo/StatusAddBoxTodayTodo/StatusAddBoxTodayTodo.tsx -------------------------------------------------------------------------------- /src/app/pages/HomePage/BoxTodayTodo/StatusDefaultBoxTodayTodo/StatusDefaultBoxTodayTodo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/HomePage/BoxTodayTodo/StatusDefaultBoxTodayTodo/StatusDefaultBoxTodayTodo.tsx -------------------------------------------------------------------------------- /src/app/pages/HomePage/ButtonMoreFriends/ButtonMoreFriends.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/HomePage/ButtonMoreFriends/ButtonMoreFriends.tsx -------------------------------------------------------------------------------- /src/app/pages/HomePage/ButtonUserProfile/ButtonUserProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/HomePage/ButtonUserProfile/ButtonUserProfile.tsx -------------------------------------------------------------------------------- /src/app/pages/HomePage/DatePicker/ButtonDate/ButtonDate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/HomePage/DatePicker/ButtonDate/ButtonDate.tsx -------------------------------------------------------------------------------- /src/app/pages/HomePage/DatePicker/DatePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/HomePage/DatePicker/DatePicker.tsx -------------------------------------------------------------------------------- /src/app/pages/HomePage/DatePicker/hooks/useDatePicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/HomePage/DatePicker/hooks/useDatePicker.ts -------------------------------------------------------------------------------- /src/app/pages/HomePage/HomePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/HomePage/HomePage.tsx -------------------------------------------------------------------------------- /src/app/pages/HomePage/ModalContentsAlert/ButtonAlert/ButtonAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/HomePage/ModalContentsAlert/ButtonAlert/ButtonAlert.tsx -------------------------------------------------------------------------------- /src/app/pages/HomePage/ModalContentsAlert/Complete/Complete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/HomePage/ModalContentsAlert/Complete/Complete.tsx -------------------------------------------------------------------------------- /src/app/pages/HomePage/ModalContentsAlert/DeleteAccount/DeleteAccount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/HomePage/ModalContentsAlert/DeleteAccount/DeleteAccount.tsx -------------------------------------------------------------------------------- /src/app/pages/HomePage/ModalContentsAlert/Logoout/Logout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/HomePage/ModalContentsAlert/Logoout/Logout.tsx -------------------------------------------------------------------------------- /src/app/pages/HomePage/ModalContentsAlert/ModalContentsAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/HomePage/ModalContentsAlert/ModalContentsAlert.tsx -------------------------------------------------------------------------------- /src/app/pages/HomePage/ModalContentsAlert/RegisterAllowedService/RegisterAllowedService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/HomePage/ModalContentsAlert/RegisterAllowedService/RegisterAllowedService.tsx -------------------------------------------------------------------------------- /src/app/pages/HomePage/ModalContentsAlert/TimerRestriction/TimerRestriction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/HomePage/ModalContentsAlert/TimerRestriction/TimerRestriction.tsx -------------------------------------------------------------------------------- /src/app/pages/HomePage/ModalContentsAlert/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/HomePage/ModalContentsAlert/types/index.ts -------------------------------------------------------------------------------- /src/app/pages/HomePage/ModalContentsTimerError/ModalContentsTimerError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/HomePage/ModalContentsTimerError/ModalContentsTimerError.tsx -------------------------------------------------------------------------------- /src/app/pages/HomePage/StatusDefaultHome/StatusDefaultHome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/HomePage/StatusDefaultHome/StatusDefaultHome.tsx -------------------------------------------------------------------------------- /src/app/pages/HomePage/TooltipFriendInfo/TooltipFriendInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/HomePage/TooltipFriendInfo/TooltipFriendInfo.tsx -------------------------------------------------------------------------------- /src/app/pages/HomePage/hooks/useCalendar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/HomePage/hooks/useCalendar.ts -------------------------------------------------------------------------------- /src/app/pages/LoginPage/LoginPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/LoginPage/LoginPage.tsx -------------------------------------------------------------------------------- /src/app/pages/NotFoundPage/NotFoundPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/NotFoundPage/NotFoundPage.tsx -------------------------------------------------------------------------------- /src/app/pages/OnboardingPage/ButtonSkip/ButtonSkip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/OnboardingPage/ButtonSkip/ButtonSkip.tsx -------------------------------------------------------------------------------- /src/app/pages/OnboardingPage/OnboardingPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/OnboardingPage/OnboardingPage.tsx -------------------------------------------------------------------------------- /src/app/pages/OnboardingPage/StepField/StepField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/OnboardingPage/StepField/StepField.tsx -------------------------------------------------------------------------------- /src/app/pages/OnboardingPage/StepService/AllowedServices/AllowedServices.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/OnboardingPage/StepService/AllowedServices/AllowedServices.tsx -------------------------------------------------------------------------------- /src/app/pages/OnboardingPage/StepService/ButtonService/ButtonService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/OnboardingPage/StepService/ButtonService/ButtonService.tsx -------------------------------------------------------------------------------- /src/app/pages/OnboardingPage/StepService/StepService.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/OnboardingPage/StepService/StepService.tsx -------------------------------------------------------------------------------- /src/app/pages/OnboardingPage/StepService/Tabs/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/OnboardingPage/StepService/Tabs/Tabs.tsx -------------------------------------------------------------------------------- /src/app/pages/OnboardingPage/StepStart/StepStart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/OnboardingPage/StepStart/StepStart.tsx -------------------------------------------------------------------------------- /src/app/pages/OnboardingPage/hooks/useFunnel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/OnboardingPage/hooks/useFunnel.tsx -------------------------------------------------------------------------------- /src/app/pages/OnboardingPage/utils/serviceUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/OnboardingPage/utils/serviceUrl.ts -------------------------------------------------------------------------------- /src/app/pages/RedirectPage/RedirectPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/RedirectPage/RedirectPage.tsx -------------------------------------------------------------------------------- /src/app/pages/TimerPage/AllowedServices/AllowedServicesItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/TimerPage/AllowedServices/AllowedServicesItem.tsx -------------------------------------------------------------------------------- /src/app/pages/TimerPage/AllowedServices/AllowedServicesPopover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/TimerPage/AllowedServices/AllowedServicesPopover.tsx -------------------------------------------------------------------------------- /src/app/pages/TimerPage/AllowedServices/AllowedServicesTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/TimerPage/AllowedServices/AllowedServicesTitle.tsx -------------------------------------------------------------------------------- /src/app/pages/TimerPage/AllowedServices/AllowedServicesTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/TimerPage/AllowedServices/AllowedServicesTooltip.tsx -------------------------------------------------------------------------------- /src/app/pages/TimerPage/AllowedServices/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/TimerPage/AllowedServices/Checkbox.tsx -------------------------------------------------------------------------------- /src/app/pages/TimerPage/Carousel/Carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/TimerPage/Carousel/Carousel.tsx -------------------------------------------------------------------------------- /src/app/pages/TimerPage/Carousel/CarouselFriend.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/TimerPage/Carousel/CarouselFriend.tsx -------------------------------------------------------------------------------- /src/app/pages/TimerPage/MainTimer/MainTimer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/TimerPage/MainTimer/MainTimer.tsx -------------------------------------------------------------------------------- /src/app/pages/TimerPage/MainTimer/TimerDisplay/ButtonTimerPlay/ButtonTimerPlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/TimerPage/MainTimer/TimerDisplay/ButtonTimerPlay/ButtonTimerPlay.tsx -------------------------------------------------------------------------------- /src/app/pages/TimerPage/MainTimer/TimerDisplay/ProgressCircle/ProgressCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/TimerPage/MainTimer/TimerDisplay/ProgressCircle/ProgressCircle.tsx -------------------------------------------------------------------------------- /src/app/pages/TimerPage/MainTimer/TimerDisplay/TimerDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/TimerPage/MainTimer/TimerDisplay/TimerDisplay.tsx -------------------------------------------------------------------------------- /src/app/pages/TimerPage/MainTimer/TimerHeader/TimerHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/TimerPage/MainTimer/TimerHeader/TimerHeader.tsx -------------------------------------------------------------------------------- /src/app/pages/TimerPage/NavigationButtons/NavigationButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/TimerPage/NavigationButtons/NavigationButtons.tsx -------------------------------------------------------------------------------- /src/app/pages/TimerPage/SideMenuTimer/SideMenuTimer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/TimerPage/SideMenuTimer/SideMenuTimer.tsx -------------------------------------------------------------------------------- /src/app/pages/TimerPage/TimerPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/TimerPage/TimerPage.tsx -------------------------------------------------------------------------------- /src/app/pages/TimerPage/contexts/TimerContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/TimerPage/contexts/TimerContext.tsx -------------------------------------------------------------------------------- /src/app/pages/TimerPage/hooks/useAllowedServices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/TimerPage/hooks/useAllowedServices.ts -------------------------------------------------------------------------------- /src/app/pages/TimerPage/hooks/useBrowserMonitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/TimerPage/hooks/useBrowserMonitor.ts -------------------------------------------------------------------------------- /src/app/pages/TimerPage/hooks/useTimerActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/TimerPage/hooks/useTimerActions.ts -------------------------------------------------------------------------------- /src/app/pages/TimerPage/hooks/useTimerCount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/TimerPage/hooks/useTimerCount.ts -------------------------------------------------------------------------------- /src/app/pages/TimerPage/hooks/useTimerState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/TimerPage/hooks/useTimerState.ts -------------------------------------------------------------------------------- /src/app/pages/TimerPage/hooks/useUIState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/TimerPage/hooks/useUIState.ts -------------------------------------------------------------------------------- /src/app/pages/TimerPage/hooks/useUrlHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/TimerPage/hooks/useUrlHandler.ts -------------------------------------------------------------------------------- /src/app/pages/TimerPage/utils/timeFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/pages/TimerPage/utils/timeFormat.ts -------------------------------------------------------------------------------- /src/app/router/ProtectedRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/router/ProtectedRoute.tsx -------------------------------------------------------------------------------- /src/app/router/Router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/router/Router.tsx -------------------------------------------------------------------------------- /src/app/router/routesConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/router/routesConfig.ts -------------------------------------------------------------------------------- /src/app/shared/apisV2/allowedService/allowedService.api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/apisV2/allowedService/allowedService.api.ts -------------------------------------------------------------------------------- /src/app/shared/apisV2/allowedService/allowedService.keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/apisV2/allowedService/allowedService.keys.ts -------------------------------------------------------------------------------- /src/app/shared/apisV2/allowedService/allowedService.mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/apisV2/allowedService/allowedService.mutations.ts -------------------------------------------------------------------------------- /src/app/shared/apisV2/allowedService/allowedService.queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/apisV2/allowedService/allowedService.queries.ts -------------------------------------------------------------------------------- /src/app/shared/apisV2/auth/auth.api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/apisV2/auth/auth.api.ts -------------------------------------------------------------------------------- /src/app/shared/apisV2/auth/auth.queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/apisV2/auth/auth.queries.ts -------------------------------------------------------------------------------- /src/app/shared/apisV2/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/apisV2/client.ts -------------------------------------------------------------------------------- /src/app/shared/apisV2/common/common.api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/apisV2/common/common.api.ts -------------------------------------------------------------------------------- /src/app/shared/apisV2/common/common.keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/apisV2/common/common.keys.ts -------------------------------------------------------------------------------- /src/app/shared/apisV2/common/common.mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/apisV2/common/common.mutations.ts -------------------------------------------------------------------------------- /src/app/shared/apisV2/common/common.queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/apisV2/common/common.queries.ts -------------------------------------------------------------------------------- /src/app/shared/apisV2/friends/friends.api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/apisV2/friends/friends.api.ts -------------------------------------------------------------------------------- /src/app/shared/apisV2/friends/friends.keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/apisV2/friends/friends.keys.ts -------------------------------------------------------------------------------- /src/app/shared/apisV2/friends/friends.mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/apisV2/friends/friends.mutations.ts -------------------------------------------------------------------------------- /src/app/shared/apisV2/friends/friends.queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/apisV2/friends/friends.queries.ts -------------------------------------------------------------------------------- /src/app/shared/apisV2/home/home.api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/apisV2/home/home.api.ts -------------------------------------------------------------------------------- /src/app/shared/apisV2/home/home.keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/apisV2/home/home.keys.ts -------------------------------------------------------------------------------- /src/app/shared/apisV2/home/home.mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/apisV2/home/home.mutations.ts -------------------------------------------------------------------------------- /src/app/shared/apisV2/home/home.queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/apisV2/home/home.queries.ts -------------------------------------------------------------------------------- /src/app/shared/apisV2/onboarding/onboarding.api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/apisV2/onboarding/onboarding.api.ts -------------------------------------------------------------------------------- /src/app/shared/apisV2/onboarding/onboarding.keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/apisV2/onboarding/onboarding.keys.ts -------------------------------------------------------------------------------- /src/app/shared/apisV2/onboarding/onboarding.mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/apisV2/onboarding/onboarding.mutations.ts -------------------------------------------------------------------------------- /src/app/shared/apisV2/onboarding/onboarding.queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/apisV2/onboarding/onboarding.queries.ts -------------------------------------------------------------------------------- /src/app/shared/apisV2/queryClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/apisV2/queryClient.ts -------------------------------------------------------------------------------- /src/app/shared/apisV2/setting/setting.api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/apisV2/setting/setting.api.ts -------------------------------------------------------------------------------- /src/app/shared/apisV2/setting/setting.keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/apisV2/setting/setting.keys.ts -------------------------------------------------------------------------------- /src/app/shared/apisV2/setting/setting.mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/apisV2/setting/setting.mutations.ts -------------------------------------------------------------------------------- /src/app/shared/apisV2/setting/setting.queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/apisV2/setting/setting.queries.ts -------------------------------------------------------------------------------- /src/app/shared/apisV2/timer/timer.api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/apisV2/timer/timer.api.ts -------------------------------------------------------------------------------- /src/app/shared/apisV2/timer/timer.keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/apisV2/timer/timer.keys.ts -------------------------------------------------------------------------------- /src/app/shared/apisV2/timer/timer.mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/apisV2/timer/timer.mutations.ts -------------------------------------------------------------------------------- /src/app/shared/apisV2/timer/timer.queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/apisV2/timer/timer.queries.ts -------------------------------------------------------------------------------- /src/app/shared/assets/images/example.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/shared/assets/images/img_timer_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/images/img_timer_bg.png -------------------------------------------------------------------------------- /src/app/shared/assets/images/login_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/images/login_background.png -------------------------------------------------------------------------------- /src/app/shared/assets/images/profile_image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/images/profile_image1.png -------------------------------------------------------------------------------- /src/app/shared/assets/images/profile_image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/images/profile_image2.png -------------------------------------------------------------------------------- /src/app/shared/assets/images/profile_image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/images/profile_image3.png -------------------------------------------------------------------------------- /src/app/shared/assets/images/profile_image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/images/profile_image4.png -------------------------------------------------------------------------------- /src/app/shared/assets/lotties/loading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/lotties/loading.json -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/404.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/add_btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/add_btn.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/arrow_circle_up_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/arrow_circle_up_right.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/arrow_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/arrow_right.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/bell.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/btn_add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/btn_add.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/btn_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/btn_arrow.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/btn_arrow_bgNone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/btn_arrow_bgNone.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/btn_cal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/btn_cal.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/btn_cal_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/btn_cal_black.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/btn_hamburger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/btn_hamburger.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/btn_home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/btn_home.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/btn_inputClear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/btn_inputClear.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/btn_list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/btn_list.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/btn_moribset_active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/btn_moribset_active.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/btn_moribset_default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/btn_moribset_default.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/btn_today.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/btn_today.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/button_inputSuccess.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/button_inputSuccess.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/check_box_blank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/check_box_blank.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/check_box_fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/check_box_fill.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/common/ic_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/common/ic_logo.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/common/ic_meatball_default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/common/ic_meatball_default.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/connection_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/connection_icon.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/default_profile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/default_profile.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/default_url_favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/default_url_favicon.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/defaultpause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/defaultpause.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/defaultplay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/defaultplay.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/description.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/description.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/disabled_dropdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/disabled_dropdown.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/dropIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/dropIcon.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/elipse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/elipse.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/error.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/error_input.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/error_input.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/friend_delBtn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/friend_delBtn.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/friend_setting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/friend_setting.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/google_login.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/google_login.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/gradient_circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/gradient_circle.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/header_delBtn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/header_delBtn.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/home/ic_box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/home/ic_box.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/home/ic_plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/home/ic_plus.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/home_default_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/home_default_icon.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/hoverpause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/hoverpause.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/hoverplay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/hoverplay.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/ic_back_btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/ic_back_btn.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/ic_delete_alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/ic_delete_alert.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/ic_description.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/ic_description.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/ic_folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/ic_folder.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/ic_gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/ic_gear.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/ic_line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/ic_line.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/ic_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/ic_logo.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/ic_minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/ic_minus.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/ic_pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/ic_pencil.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/ic_service_design.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/ic_service_design.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/ic_service_design_sm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/ic_service_design_sm.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/icon_clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/icon_clock.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/large_plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/large_plus.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/login/ic_login_timer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/login/ic_login_timer.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/login/ic_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/login/ic_logo.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/logo_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/logo_icon.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/mail.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/mingcute_time-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/mingcute_time-fill.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/mingcute_time-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/mingcute_time-line.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/minus_btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/minus_btn.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/more_friend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/more_friend.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/moribSet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/moribSet.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/onboarding/ic_business.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/onboarding/ic_business.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/onboarding/ic_design.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/onboarding/ic_design.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/onboarding/ic_development.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/onboarding/ic_development.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/onboarding/ic_marketing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/onboarding/ic_marketing.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/onboarding/ic_planning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/onboarding/ic_planning.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/onboarding/ic_studying.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/onboarding/ic_studying.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/onboarding_image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/onboarding_image.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/plus.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/popover_add_category.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/popover_add_category.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/popover_add_todo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/popover_add_todo.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/react.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/selected_number_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/selected_number_icon.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/setting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/setting.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/timer/ic_check_box_active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/timer/ic_check_box_active.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/timer/ic_check_box_inactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/timer/ic_check_box_inactive.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/timer/ic_deactivated_clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/timer/ic_deactivated_clock.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/timer/ic_online.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/timer/ic_online.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/timer/ic_timer_inner_circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/timer/ic_timer_inner_circle.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/todo_meatball_press.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/todo_meatball_press.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/todo_toggle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/todo_toggle.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/tooltip_triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/tooltip_triangle.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/triangle.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/upIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/upIcon.svg -------------------------------------------------------------------------------- /src/app/shared/assets/svgs/user_circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/assets/svgs/user_circle.svg -------------------------------------------------------------------------------- /src/app/shared/components/AutoFixedGrid/AutoFixedGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/components/AutoFixedGrid/AutoFixedGrid.tsx -------------------------------------------------------------------------------- /src/app/shared/components/BoxTodo/BoxTodo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/components/BoxTodo/BoxTodo.tsx -------------------------------------------------------------------------------- /src/app/shared/components/ButtonArrowSVG/ButtonArrowSVG.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/components/ButtonArrowSVG/ButtonArrowSVG.tsx -------------------------------------------------------------------------------- /src/app/shared/components/ButtonDropdownOptions/ButtonDropdownOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/components/ButtonDropdownOptions/ButtonDropdownOptions.tsx -------------------------------------------------------------------------------- /src/app/shared/components/ButtonHomeLarge/ButtonHomeLarge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/components/ButtonHomeLarge/ButtonHomeLarge.tsx -------------------------------------------------------------------------------- /src/app/shared/components/ButtonRadius5/ButtonRadius5.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/components/ButtonRadius5/ButtonRadius5.tsx -------------------------------------------------------------------------------- /src/app/shared/components/ButtonRadius8/ButtonRadius8.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/components/ButtonRadius8/ButtonRadius8.tsx -------------------------------------------------------------------------------- /src/app/shared/components/ButtonStatusToggle/ButtonStatusToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/components/ButtonStatusToggle/ButtonStatusToggle.tsx -------------------------------------------------------------------------------- /src/app/shared/components/ButtonTodayToggle/ButtonTodoToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/components/ButtonTodayToggle/ButtonTodoToggle.tsx -------------------------------------------------------------------------------- /src/app/shared/components/Calendar/ButtonCalendarAddRoutine/ButtonCalendarAddRoutine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/components/Calendar/ButtonCalendarAddRoutine/ButtonCalendarAddRoutine.tsx -------------------------------------------------------------------------------- /src/app/shared/components/Calendar/Calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/components/Calendar/Calendar.tsx -------------------------------------------------------------------------------- /src/app/shared/components/Calendar/HeaderCalendar/HeaderCalendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/components/Calendar/HeaderCalendar/HeaderCalendar.tsx -------------------------------------------------------------------------------- /src/app/shared/components/Calendar/calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/components/Calendar/calendar.css -------------------------------------------------------------------------------- /src/app/shared/components/CircleColorIcon/CircleColorIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/components/CircleColorIcon/CircleColorIcon.tsx -------------------------------------------------------------------------------- /src/app/shared/components/ColorPallete/ColorPallete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/components/ColorPallete/ColorPallete.tsx -------------------------------------------------------------------------------- /src/app/shared/components/Dropdown/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/components/Dropdown/Dropdown.tsx -------------------------------------------------------------------------------- /src/app/shared/components/ErrorBoundary/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/components/ErrorBoundary/ErrorBoundary.tsx -------------------------------------------------------------------------------- /src/app/shared/components/FallbackApiError/FallbackApiError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/components/FallbackApiError/FallbackApiError.tsx -------------------------------------------------------------------------------- /src/app/shared/components/FaviconImage/FaviconImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/components/FaviconImage/FaviconImage.tsx -------------------------------------------------------------------------------- /src/app/shared/components/HeartBeatBoundary/HeartBeatBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/components/HeartBeatBoundary/HeartBeatBoundary.tsx -------------------------------------------------------------------------------- /src/app/shared/components/LoadingOverlay/LoadingOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/components/LoadingOverlay/LoadingOverlay.tsx -------------------------------------------------------------------------------- /src/app/shared/components/ModalContentsFriends/FriendRequest/ButtonRequestAction/ButtonRequestAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/components/ModalContentsFriends/FriendRequest/ButtonRequestAction/ButtonRequestAction.tsx -------------------------------------------------------------------------------- /src/app/shared/components/ModalContentsFriends/FriendRequest/FriendsListRequested/FriendsListRequested.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/components/ModalContentsFriends/FriendRequest/FriendsListRequested/FriendsListRequested.tsx -------------------------------------------------------------------------------- /src/app/shared/components/ModalContentsFriends/FriendRequest/FriendsRequest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/components/ModalContentsFriends/FriendRequest/FriendsRequest.tsx -------------------------------------------------------------------------------- /src/app/shared/components/ModalContentsFriends/FriendUserProfile/FriendUserProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/components/ModalContentsFriends/FriendUserProfile/FriendUserProfile.tsx -------------------------------------------------------------------------------- /src/app/shared/components/ModalContentsFriends/FriendsList/FriendsInfo/FriendInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/components/ModalContentsFriends/FriendsList/FriendsInfo/FriendInfo.tsx -------------------------------------------------------------------------------- /src/app/shared/components/ModalContentsFriends/FriendsList/FriendsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/components/ModalContentsFriends/FriendsList/FriendsList.tsx -------------------------------------------------------------------------------- /src/app/shared/components/ModalContentsFriends/ModalContentsFriends.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/components/ModalContentsFriends/ModalContentsFriends.tsx -------------------------------------------------------------------------------- /src/app/shared/components/NotificationPanel/NotificationPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/components/NotificationPanel/NotificationPanel.tsx -------------------------------------------------------------------------------- /src/app/shared/components/Portal/Portal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/components/Portal/Portal.tsx -------------------------------------------------------------------------------- /src/app/shared/components/Spacer/Spacer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/components/Spacer/Spacer.tsx -------------------------------------------------------------------------------- /src/app/shared/components/TextField/TextField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/components/TextField/TextField.tsx -------------------------------------------------------------------------------- /src/app/shared/config/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/config/auth.ts -------------------------------------------------------------------------------- /src/app/shared/constants/btnText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/constants/btnText.ts -------------------------------------------------------------------------------- /src/app/shared/constants/colorPalette.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/constants/colorPalette.ts -------------------------------------------------------------------------------- /src/app/shared/constants/emailRegex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/constants/emailRegex.ts -------------------------------------------------------------------------------- /src/app/shared/constants/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/constants/error.ts -------------------------------------------------------------------------------- /src/app/shared/constants/fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/constants/fields.ts -------------------------------------------------------------------------------- /src/app/shared/constants/timerPageText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/constants/timerPageText.ts -------------------------------------------------------------------------------- /src/app/shared/constants/weekDays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/constants/weekDays.ts -------------------------------------------------------------------------------- /src/app/shared/hocs/withAuthProtection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/hocs/withAuthProtection.tsx -------------------------------------------------------------------------------- /src/app/shared/hooks/useCarousel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/hooks/useCarousel.ts -------------------------------------------------------------------------------- /src/app/shared/hooks/useClickOutside.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/hooks/useClickOutside.ts -------------------------------------------------------------------------------- /src/app/shared/layout/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/layout/Layout.tsx -------------------------------------------------------------------------------- /src/app/shared/layout/Sidebar/ModalContentsSetting/AccountContent/AccountContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/layout/Sidebar/ModalContentsSetting/AccountContent/AccountContent.tsx -------------------------------------------------------------------------------- /src/app/shared/layout/Sidebar/ModalContentsSetting/ModalContentsSetting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/layout/Sidebar/ModalContentsSetting/ModalContentsSetting.tsx -------------------------------------------------------------------------------- /src/app/shared/layout/Sidebar/ModalContentsSetting/Tabs/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/layout/Sidebar/ModalContentsSetting/Tabs/Tabs.tsx -------------------------------------------------------------------------------- /src/app/shared/layout/Sidebar/ModalContentsSetting/WorkspaceSettingContent/WorkspaceSettingContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/layout/Sidebar/ModalContentsSetting/WorkspaceSettingContent/WorkspaceSettingContent.tsx -------------------------------------------------------------------------------- /src/app/shared/layout/Sidebar/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/layout/Sidebar/Sidebar.tsx -------------------------------------------------------------------------------- /src/app/shared/mocks/categoryData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/mocks/categoryData.ts -------------------------------------------------------------------------------- /src/app/shared/mocks/faviconData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/mocks/faviconData.ts -------------------------------------------------------------------------------- /src/app/shared/mocks/homeData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/mocks/homeData.ts -------------------------------------------------------------------------------- /src/app/shared/mocks/urlData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/mocks/urlData.ts -------------------------------------------------------------------------------- /src/app/shared/mocks/userData.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/shared/types/SSEEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/types/SSEEvent.ts -------------------------------------------------------------------------------- /src/app/shared/types/allowedService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/types/allowedService.ts -------------------------------------------------------------------------------- /src/app/shared/types/allowedSites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/types/allowedSites.ts -------------------------------------------------------------------------------- /src/app/shared/types/api/allowedService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/types/api/allowedService.ts -------------------------------------------------------------------------------- /src/app/shared/types/api/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/types/api/auth.ts -------------------------------------------------------------------------------- /src/app/shared/types/api/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/types/api/common.ts -------------------------------------------------------------------------------- /src/app/shared/types/api/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/types/api/error.ts -------------------------------------------------------------------------------- /src/app/shared/types/api/friends.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/types/api/friends.ts -------------------------------------------------------------------------------- /src/app/shared/types/api/home.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/types/api/home.ts -------------------------------------------------------------------------------- /src/app/shared/types/api/onboarding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/types/api/onboarding.ts -------------------------------------------------------------------------------- /src/app/shared/types/api/setting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/types/api/setting.ts -------------------------------------------------------------------------------- /src/app/shared/types/api/timer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/types/api/timer.ts -------------------------------------------------------------------------------- /src/app/shared/types/common/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/types/common/index.tsx -------------------------------------------------------------------------------- /src/app/shared/types/fileds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/types/fileds.ts -------------------------------------------------------------------------------- /src/app/shared/types/friend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/types/friend.ts -------------------------------------------------------------------------------- /src/app/shared/types/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/types/global.ts -------------------------------------------------------------------------------- /src/app/shared/types/home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/types/home/index.tsx -------------------------------------------------------------------------------- /src/app/shared/types/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/types/profile.ts -------------------------------------------------------------------------------- /src/app/shared/types/tasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/types/tasks.ts -------------------------------------------------------------------------------- /src/app/shared/types/todoData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/types/todoData.ts -------------------------------------------------------------------------------- /src/app/shared/types/userData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/types/userData.ts -------------------------------------------------------------------------------- /src/app/shared/utils/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/utils/auth.ts -------------------------------------------------------------------------------- /src/app/shared/utils/calendar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/utils/calendar/index.ts -------------------------------------------------------------------------------- /src/app/shared/utils/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/utils/date/index.ts -------------------------------------------------------------------------------- /src/app/shared/utils/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/utils/error.ts -------------------------------------------------------------------------------- /src/app/shared/utils/overlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/utils/overlay.tsx -------------------------------------------------------------------------------- /src/app/shared/utils/path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/utils/path.ts -------------------------------------------------------------------------------- /src/app/shared/utils/tasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/utils/tasks.ts -------------------------------------------------------------------------------- /src/app/shared/utils/time/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/utils/time/index.ts -------------------------------------------------------------------------------- /src/app/shared/utils/timer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/utils/timer/index.ts -------------------------------------------------------------------------------- /src/app/shared/utils/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/utils/url.ts -------------------------------------------------------------------------------- /src/app/shared/utils/url/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/utils/url/index.ts -------------------------------------------------------------------------------- /src/app/shared/utils/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/shared/utils/validation.ts -------------------------------------------------------------------------------- /src/app/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/app/vite-env.d.ts -------------------------------------------------------------------------------- /src/electron/browserMonitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/electron/browserMonitor.ts -------------------------------------------------------------------------------- /src/electron/contants/protocol.ts: -------------------------------------------------------------------------------- 1 | export const DEFAULT_PROTOCOL = 'morib'; 2 | -------------------------------------------------------------------------------- /src/electron/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/electron/main.ts -------------------------------------------------------------------------------- /src/electron/monitor/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/electron/monitor/browser.ts -------------------------------------------------------------------------------- /src/electron/notification/mac.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/electron/notification/mac.ts -------------------------------------------------------------------------------- /src/electron/pathResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/electron/pathResolver.ts -------------------------------------------------------------------------------- /src/electron/preload.cts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/electron/preload.cts -------------------------------------------------------------------------------- /src/electron/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/electron/tsconfig.json -------------------------------------------------------------------------------- /src/electron/util.ts: -------------------------------------------------------------------------------- 1 | export function isDev(): boolean { 2 | return process.env.NODE_ENV === 'development'; 3 | } 4 | -------------------------------------------------------------------------------- /src/electron/window/key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/electron/window/key.ts -------------------------------------------------------------------------------- /src/electron/window/os.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/electron/window/os.ts -------------------------------------------------------------------------------- /src/electron/window/resolution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/src/electron/window/resolution.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/vercel.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morib-in/Morib-Client/HEAD/vite.config.ts --------------------------------------------------------------------------------