├── .editorconfig ├── .env.example ├── .env.vault ├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── feature.yml │ ├── fix.yml │ ├── performance.yml │ ├── test.yml │ └── ui.yml └── workflows │ ├── cd.yml │ ├── ci.yml │ ├── lhci.yml │ ├── next.yml │ ├── release.yml │ └── stable.yml ├── .gitignore ├── .lighthouserc.json ├── .npmrc ├── .prettierrc ├── .releaserc ├── .sonarcloud.properties ├── CHANGELOG.md ├── README.md ├── __mocks__ ├── react-i18next.js └── web3auth.ts ├── codegen.ts ├── commitlint.config.js ├── eslint.config.js ├── image.png ├── index.html ├── package.json ├── public ├── _redirects ├── assets │ ├── background │ │ ├── overlay_1.svg │ │ ├── overlay_2.jpg │ │ ├── overlay_3.jpg │ │ └── overlay_4.jpg │ ├── cyan-blur.png │ ├── icons │ │ ├── auth │ │ │ ├── ic_amplify.svg │ │ │ ├── ic_auth0.svg │ │ │ ├── ic_firebase.svg │ │ │ └── ic_jwt.svg │ │ ├── components │ │ │ ├── ic_accordion.svg │ │ │ ├── ic_alert.svg │ │ │ ├── ic_autocomplete.svg │ │ │ ├── ic_avatar.svg │ │ │ ├── ic_badge.svg │ │ │ ├── ic_breadcrumbs.svg │ │ │ ├── ic_buttons.svg │ │ │ ├── ic_checkbox.svg │ │ │ ├── ic_chip.svg │ │ │ ├── ic_colors.svg │ │ │ ├── ic_data_grid.svg │ │ │ ├── ic_dialog.svg │ │ │ ├── ic_extra_animate.svg │ │ │ ├── ic_extra_carousel.svg │ │ │ ├── ic_extra_chart.svg │ │ │ ├── ic_extra_copy_to_clipboard.svg │ │ │ ├── ic_extra_editor.svg │ │ │ ├── ic_extra_form_validation.svg │ │ │ ├── ic_extra_image.svg │ │ │ ├── ic_extra_label.svg │ │ │ ├── ic_extra_lightbox.svg │ │ │ ├── ic_extra_map.svg │ │ │ ├── ic_extra_markdown.svg │ │ │ ├── ic_extra_mega_menu.svg │ │ │ ├── ic_extra_multi_language.svg │ │ │ ├── ic_extra_navigation_bar.svg │ │ │ ├── ic_extra_organization_chart.svg │ │ │ ├── ic_extra_scroll.svg │ │ │ ├── ic_extra_scroll_progress.svg │ │ │ ├── ic_extra_snackbar.svg │ │ │ ├── ic_extra_text_max_line.svg │ │ │ ├── ic_extra_upload.svg │ │ │ ├── ic_grid.svg │ │ │ ├── ic_icons.svg │ │ │ ├── ic_list.svg │ │ │ ├── ic_menu.svg │ │ │ ├── ic_pagination.svg │ │ │ ├── ic_pickers.svg │ │ │ ├── ic_popover.svg │ │ │ ├── ic_progress.svg │ │ │ ├── ic_radio_button.svg │ │ │ ├── ic_rating.svg │ │ │ ├── ic_shadows.svg │ │ │ ├── ic_slider.svg │ │ │ ├── ic_stepper.svg │ │ │ ├── ic_switch.svg │ │ │ ├── ic_table.svg │ │ │ ├── ic_tabs.svg │ │ │ ├── ic_textfield.svg │ │ │ ├── ic_timeline.svg │ │ │ ├── ic_tooltip.svg │ │ │ ├── ic_transfer_list.svg │ │ │ ├── ic_tree_view.svg │ │ │ └── ic_typography.svg │ │ ├── home │ │ │ ├── ic_design.svg │ │ │ ├── ic_development.svg │ │ │ └── ic_make_brand.svg │ │ ├── navbar │ │ │ ├── ic_analytics.svg │ │ │ ├── ic_banking.svg │ │ │ ├── ic_blank.svg │ │ │ ├── ic_blog.svg │ │ │ ├── ic_booking.svg │ │ │ ├── ic_calendar.svg │ │ │ ├── ic_chat.svg │ │ │ ├── ic_dashboard.svg │ │ │ ├── ic_disabled.svg │ │ │ ├── ic_ecommerce.svg │ │ │ ├── ic_external.svg │ │ │ ├── ic_file.svg │ │ │ ├── ic_folder.svg │ │ │ ├── ic_invoice.svg │ │ │ ├── ic_job.svg │ │ │ ├── ic_kanban.svg │ │ │ ├── ic_label.svg │ │ │ ├── ic_lock.svg │ │ │ ├── ic_mail.svg │ │ │ ├── ic_menu_item.svg │ │ │ ├── ic_order.svg │ │ │ ├── ic_product.svg │ │ │ ├── ic_tour.svg │ │ │ ├── ic_user.svg │ │ │ ├── ic_user_group.svg │ │ │ └── ic_watchit.svg │ │ ├── notification │ │ │ ├── ic_chat.svg │ │ │ ├── ic_delivery.svg │ │ │ ├── ic_mail.svg │ │ │ └── ic_order.svg │ │ └── setting │ │ │ ├── ic_align_left.svg │ │ │ ├── ic_align_right.svg │ │ │ ├── ic_collapse.svg │ │ │ ├── ic_contrast.svg │ │ │ ├── ic_contrast_bold.svg │ │ │ ├── ic_exit_full_screen.svg │ │ │ ├── ic_full_screen.svg │ │ │ ├── ic_moon.svg │ │ │ ├── ic_setting.svg │ │ │ └── ic_sun.svg │ ├── illustrations │ │ ├── characters │ │ │ ├── character_1.png │ │ │ ├── character_10.png │ │ │ ├── character_11.png │ │ │ ├── character_2.png │ │ │ ├── character_3.png │ │ │ ├── character_4.png │ │ │ ├── character_5.png │ │ │ ├── character_6.png │ │ │ ├── character_7.png │ │ │ ├── character_8.png │ │ │ └── character_9.png │ │ ├── illustration_dashboard.png │ │ ├── movie_skeleton.png │ │ ├── movie_subtitle_skeleton.png │ │ ├── poster_extended_skeleton.png │ │ ├── poster_horizontal_skeleton.png │ │ └── poster_skeleton.png │ ├── placeholder.svg │ ├── red-blur.png │ ├── transparent.png │ └── white_logo.png ├── favicon │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico ├── fonts │ ├── CircularStd-Bold.otf │ ├── CircularStd-Book.otf │ ├── CircularStd-Medium.otf │ ├── Roboto-Bold.ttf │ ├── Roboto-Regular.ttf │ └── index.css ├── manifest.json └── robots.txt ├── setupTest.tsx ├── src ├── App.tsx ├── __test__ │ └── config-global.test.ts ├── assets │ ├── animations │ │ └── watchit-spinner.json │ ├── audio │ │ └── notify.mp3 │ ├── illustrations │ │ ├── background-shape.tsx │ │ ├── booking-illustration.tsx │ │ ├── check-in-illustration.tsx │ │ ├── check-out-illustration.tsx │ │ ├── check_dark.png │ │ ├── check_green.png │ │ ├── coming-soon-illustration.tsx │ │ ├── earn.svg │ │ ├── empty-notifications.png │ │ ├── engager.png │ │ ├── fan.png │ │ ├── forbidden-illustration.tsx │ │ ├── guardian.png │ │ ├── guess.png │ │ ├── hi.png │ │ ├── index.ts │ │ ├── marketing.svg │ │ ├── ownership.svg │ │ ├── page-not-found-illustration.tsx │ │ ├── process.svg │ │ ├── question.png │ │ ├── scout.png │ │ ├── scout_2.png │ │ ├── seo-illustration.tsx │ │ ├── sever-error-illustration.tsx │ │ ├── splotligther.png │ │ ├── storykeeper.png │ │ ├── supporter.png │ │ ├── upload-illustration.tsx │ │ ├── watcher.png │ │ └── wheel.png │ ├── mmc_token.ico │ └── xp_badge.ico ├── clients │ └── viem │ │ └── publicClient.ts ├── components │ ├── LoadingFade.tsx │ ├── __test__ │ │ ├── __snapshots__ │ │ │ └── modal.test.tsx.snap │ │ └── modal.test.tsx │ ├── activate-subscription-profile-modal.tsx │ ├── animate │ │ ├── features.js │ │ ├── index.ts │ │ ├── motion-container.tsx │ │ ├── motion-lazy.tsx │ │ ├── motion-viewport.tsx │ │ ├── types.ts │ │ └── variants │ │ │ ├── actions.ts │ │ │ ├── background.ts │ │ │ ├── bounce.ts │ │ │ ├── container.ts │ │ │ ├── fade.ts │ │ │ ├── flip.ts │ │ │ ├── index.ts │ │ │ ├── path.ts │ │ │ ├── rotate.ts │ │ │ ├── scale.ts │ │ │ ├── slide.ts │ │ │ ├── transition.ts │ │ │ └── zoom.ts │ ├── app-ready.tsx │ ├── avatar │ │ ├── __test__ │ │ │ ├── Avatar.test.tsx │ │ │ └── __snapshots__ │ │ │ │ └── Avatar.test.tsx.snap │ │ ├── avatar.tsx │ │ └── index.ts │ ├── carousel │ │ ├── CONSTANTS.tsx │ │ ├── __test__ │ │ │ └── types.test.tsx │ │ ├── components │ │ │ ├── __test__ │ │ │ │ ├── CarouselArrow.test.tsx │ │ │ │ ├── CarouselArrowIndex.test.tsx │ │ │ │ ├── CarouselArrowsIcons.test.tsx │ │ │ │ ├── CarouselDots.test.tsx │ │ │ │ ├── CarouselNavigationArrows.test.tsx │ │ │ │ ├── CarouselSlide.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ ├── CarouselArrow.test.tsx.snap │ │ │ │ │ ├── CarouselArrowIndex.test.tsx.snap │ │ │ │ │ ├── CarouselArrowsIcons.test.tsx.snap │ │ │ │ │ ├── CarouselDots.test.tsx.snap │ │ │ │ │ ├── CarouselNavigationArrows.test.tsx.snap │ │ │ │ │ └── CarouselSlide.test.tsx.snap │ │ │ ├── carousel-arrow-icons.tsx │ │ │ ├── carousel-arrow-index.tsx │ │ │ ├── carousel-arrows.tsx │ │ │ ├── carousel-dots.tsx │ │ │ ├── carousel-navigation-arrows.tsx │ │ │ └── carousel-slide.tsx │ │ ├── index.ts │ │ ├── types.ts │ │ └── variants │ │ │ ├── __test__ │ │ │ ├── CarouselCreators.test.tsx │ │ │ ├── CarouselPosterMini.test.tsx │ │ │ ├── CarouselTopTitles.test.tsx │ │ │ ├── CarouselWrapper.test.tsx │ │ │ └── __snapshots__ │ │ │ │ ├── CarouselCreators.test.tsx.snap │ │ │ │ ├── CarouselPosterMini.test.tsx.snap │ │ │ │ ├── CarouselTopTitles.test.tsx.snap │ │ │ │ └── CarouselWrapper.test.tsx.snap │ │ │ ├── carousel-creators.tsx │ │ │ ├── carousel-poster-mini.tsx │ │ │ ├── carousel-top-titles.tsx │ │ │ └── carousel-wrapper.tsx │ ├── chart │ │ ├── chart.tsx │ │ ├── index.ts │ │ └── use-chart.ts │ ├── copyable-text │ │ ├── __test__ │ │ │ ├── __snapshots__ │ │ │ │ └── copyable-text.test.tsx.snap │ │ │ └── copyable-text.test.tsx │ │ ├── copyable-text.tsx │ │ └── index.ts │ ├── custom-breadcrumbs │ │ ├── __test__ │ │ │ ├── __snapshots__ │ │ │ │ ├── custom-breadcrumbs.test.tsx.snap │ │ │ │ ├── link-item.test.tsx.snap │ │ │ │ └── types.test.ts.snap │ │ │ ├── custom-breadcrumbs.test.tsx │ │ │ ├── link-item.test.tsx │ │ │ └── types.test.ts │ │ ├── custom-breadcrumbs.tsx │ │ ├── index.ts │ │ ├── link-item.tsx │ │ └── types.ts │ ├── custom-date-range-picker │ │ ├── custom-date-range-picker.tsx │ │ ├── index.ts │ │ ├── types.ts │ │ ├── use-date-range-picker.ts │ │ └── utils.ts │ ├── custom-dialog │ │ ├── confirm-dialog.tsx │ │ ├── index.ts │ │ └── types.ts │ ├── custom-popover │ │ ├── custom-popover.tsx │ │ ├── index.ts │ │ ├── styles.tsx │ │ ├── types.ts │ │ ├── use-popover.ts │ │ └── utils.ts │ ├── editor │ │ ├── editor.tsx │ │ ├── index.ts │ │ ├── styles.ts │ │ ├── toolbar.tsx │ │ └── types.ts │ ├── empty-content │ │ ├── empty-content.tsx │ │ └── index.ts │ ├── file-thumbnail │ │ ├── download-button.tsx │ │ ├── file-thumbnail.tsx │ │ ├── index.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── follow-unfollow-button.tsx │ ├── hook-form │ │ ├── form-provider.tsx │ │ ├── index.ts │ │ ├── rhf-autocomplete.tsx │ │ ├── rhf-checkbox.tsx │ │ ├── rhf-code.tsx │ │ ├── rhf-editor.tsx │ │ ├── rhf-radio-group.tsx │ │ ├── rhf-select.tsx │ │ ├── rhf-slider.tsx │ │ ├── rhf-switch.tsx │ │ ├── rhf-text-field.tsx │ │ └── rhf-upload.tsx │ ├── iconify │ │ ├── iconify.tsx │ │ ├── index.ts │ │ └── types.ts │ ├── image │ │ ├── image.tsx │ │ ├── index.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── input-amount.tsx │ ├── label │ │ ├── index.ts │ │ ├── label.tsx │ │ ├── styles.ts │ │ └── types.ts │ ├── leave-tip-card.tsx │ ├── loading-screen │ │ ├── index.ts │ │ ├── loading-screen.tsx │ │ └── splash-screen.tsx │ ├── login-modal │ │ ├── index.ts │ │ ├── modal.tsx │ │ ├── profile-form-view.tsx │ │ └── types.ts │ ├── logo │ │ ├── index.ts │ │ └── logo.tsx │ ├── markdown │ │ ├── index.ts │ │ ├── markdown.tsx │ │ ├── styles.ts │ │ └── types.ts │ ├── modal.tsx │ ├── nav-section │ │ ├── config.ts │ │ ├── horizontal │ │ │ ├── index.ts │ │ │ ├── nav-item.tsx │ │ │ ├── nav-list.tsx │ │ │ ├── nav-section-horizontal.tsx │ │ │ └── styles.ts │ │ ├── index.ts │ │ ├── mini │ │ │ ├── index.ts │ │ │ ├── nav-item-vertical-mini.tsx │ │ │ ├── nav-item.tsx │ │ │ ├── nav-list-vertical-mini.tsx │ │ │ ├── nav-list.tsx │ │ │ ├── nav-section-mini.tsx │ │ │ ├── nav-section-vertical-mini.tsx │ │ │ ├── styles-mini.ts │ │ │ └── styles.ts │ │ ├── types.ts │ │ └── vertical │ │ │ ├── index.ts │ │ │ ├── nav-item.tsx │ │ │ ├── nav-list.tsx │ │ │ ├── nav-section-vertical.tsx │ │ │ └── styles.ts │ ├── og-meta-tags.tsx │ ├── openable-text │ │ ├── index.ts │ │ └── openable-text.tsx │ ├── poster │ │ ├── CONSTANTS.tsx │ │ ├── carousel-section.tsx │ │ ├── types.ts │ │ └── variants │ │ │ ├── poster-horizontal.tsx │ │ │ └── poster-top-titles.tsx │ ├── process-illustration-card.tsx │ ├── process-section-card.tsx │ ├── progress-bar │ │ ├── index.ts │ │ ├── progress-bar.tsx │ │ └── styles.tsx │ ├── publication-detail-main │ │ ├── index.tsx │ │ └── types.ts │ ├── report-modal-base.tsx │ ├── report-profile-modal.tsx │ ├── report-publication-modal.tsx │ ├── responsive-overlay │ │ ├── index.ts │ │ └── reset-mini-nav-on-resize.tsx │ ├── scrollbar │ │ ├── index.ts │ │ ├── scrollbar.tsx │ │ ├── styles.ts │ │ └── types.ts │ ├── search-not-found │ │ ├── index.ts │ │ └── search-not-found.tsx │ ├── settings │ │ ├── context │ │ │ ├── index.ts │ │ │ ├── settings-context.tsx │ │ │ └── settings-provider.tsx │ │ ├── drawer │ │ │ ├── base-option.tsx │ │ │ ├── fullscreen-option.tsx │ │ │ ├── index.ts │ │ │ ├── layout-options.tsx │ │ │ ├── presets-options.tsx │ │ │ ├── settings-drawer.tsx │ │ │ └── stretch-options.tsx │ │ ├── index.ts │ │ └── types.ts │ ├── share-button.tsx │ ├── should-login │ │ ├── index.ts │ │ ├── should-login.tsx │ │ ├── types.ts │ │ └── withAuth.tsx │ ├── snackbar │ │ ├── index.ts │ │ ├── snackbar-provider.tsx │ │ └── styles.ts │ ├── sponsored-access-button │ │ ├── index.ts │ │ ├── sponsored-access-button.tsx │ │ └── types.ts │ ├── subscribe-profile-modal.tsx │ ├── subscribe-to-unlock-card │ │ ├── index.ts │ │ ├── subscribe-to-unlock-card.tsx │ │ └── types.ts │ ├── svg-color │ │ ├── index.ts │ │ └── svg-color.tsx │ ├── table │ │ ├── __test__ │ │ │ ├── __snapshots__ │ │ │ │ ├── table-empty-rows.test.tsx.snap │ │ │ │ ├── table-head-custom.test.tsx.snap │ │ │ │ ├── table-no-data.test.tsx.snap │ │ │ │ ├── table-pagination-custom.test.tsx.snap │ │ │ │ └── table-selected-action.test.tsx.snap │ │ │ ├── table-empty-rows.test.tsx │ │ │ ├── table-head-custom.test.tsx │ │ │ ├── table-no-data.test.tsx │ │ │ └── table-pagination-custom.test.tsx │ │ ├── index.ts │ │ ├── table-empty-rows.tsx │ │ ├── table-head-custom.tsx │ │ ├── table-no-data.tsx │ │ ├── table-pagination-custom.tsx │ │ ├── types.ts │ │ ├── use-table.ts │ │ └── utils.ts │ ├── text-max-line │ │ ├── index.ts │ │ ├── text-max-line.tsx │ │ ├── types.ts │ │ └── use-typography.ts │ ├── types.ts │ ├── update-modal │ │ ├── index.ts │ │ └── modal.tsx │ ├── upload │ │ ├── errors-rejection-files.tsx │ │ ├── index.ts │ │ ├── preview-multi-file.tsx │ │ ├── preview-single-file-custom.tsx │ │ ├── preview-single-file.tsx │ │ ├── types.ts │ │ ├── upload-avatar.tsx │ │ ├── upload-box.tsx │ │ └── upload.tsx │ ├── user-item │ │ ├── BadgeVerified.tsx │ │ ├── index.tsx │ │ └── types.ts │ ├── video-player │ │ ├── components │ │ │ └── button │ │ │ │ ├── button.tsx │ │ │ │ └── index.ts │ │ ├── index.ts │ │ └── video-player.tsx │ └── watchit-loader │ │ └── index.tsx ├── config-global.ts ├── config │ └── abi │ │ ├── AccessAgg.json │ │ ├── AccessManager.json │ │ ├── AccessWorkflow.json │ │ ├── AssetOwnership.json │ │ ├── CampaignRegistry.json │ │ ├── CampaignSubscriptionTpl.json │ │ ├── LedgerVault.json │ │ ├── MMC.json │ │ ├── PoliciesAgg.json │ │ ├── RightsPolicyAuthorizer.json │ │ └── SubscriptionPolicy.json ├── contexts │ ├── api │ │ ├── apiContext.tsx │ │ ├── apiProvider.tsx │ │ └── index.ts │ ├── auth │ │ ├── authContext.tsx │ │ ├── authProvider.tsx │ │ ├── config │ │ │ ├── web3AuthInstance.ts │ │ │ └── web3AuthSettings.ts │ │ ├── index.ts │ │ └── types.ts │ └── index.ts ├── fixes │ ├── bip39.js │ ├── enc-utils.js │ └── english.txt ├── graphql │ ├── generated │ │ ├── graphql.ts │ │ └── hooks.tsx │ ├── mutations │ │ ├── bookmarks │ │ │ └── toggleBookmark.gql │ │ ├── comments │ │ │ ├── createComment.gql │ │ │ ├── hideComment.gql │ │ │ └── updateComment.gql │ │ ├── follows │ │ │ └── toggleFollow.gql │ │ ├── likes │ │ │ └── toggleLike.gql │ │ ├── logs │ │ │ └── claimPerk.gql │ │ ├── perks │ │ │ ├── logAnonymousEvent.gql │ │ │ └── logEvent.gql │ │ ├── posts │ │ │ ├── createPost.gql │ │ │ ├── hidePost.gql │ │ │ ├── incrementPostView.gql │ │ │ └── updatePost.gql │ │ ├── tips │ │ │ └── createTip.gql │ │ └── users │ │ │ ├── createUser.gql │ │ │ └── updateUser.gql │ └── queries │ │ ├── bookmarks │ │ └── getIsBookmarked.gql │ │ ├── comments │ │ ├── getCommentsByPost.gql │ │ └── getRepliesByComment.gql │ │ ├── feeds │ │ ├── getActiveUsers.gql │ │ ├── getAllPosts.gql │ │ ├── getPopularPosts.gql │ │ ├── getPopularUsers.gql │ │ ├── getRecentPosts.gql │ │ └── getRecentUsers.gql │ │ ├── follows │ │ └── getIsFollowing.gql │ │ ├── leaderboard │ │ └── getLeaderboard.gql │ │ ├── likes │ │ └── getIsLiked.gql │ │ ├── logs │ │ ├── getPostViews.gql │ │ ├── getProfileViews.gql │ │ ├── getTargetEvents.gql │ │ └── getUserEvents.gql │ │ ├── perks │ │ ├── getHasPerk.gql │ │ ├── getPerks.gql │ │ └── getUnlockedPerks.gql │ │ ├── posts │ │ ├── getPost.gql │ │ ├── getPostByAuthor.gql │ │ └── getPosts.gql │ │ ├── ranks │ │ ├── getAchievements.gql │ │ ├── getRanksCatalog.gql │ │ └── getUserRanks.gql │ │ ├── tips │ │ └── getTipsByBakerForPost.gql │ │ └── users │ │ ├── getUser.gql │ │ ├── getUserBookmarks.gql │ │ ├── getUserFollowers.gql │ │ ├── getUserFollowing.gql │ │ ├── getUserXpHistory.gql │ │ └── getUsers.gql ├── hooks │ ├── components │ │ ├── types.ts │ │ ├── use-carousel.ts │ │ ├── use-chunked-data.ts │ │ ├── use-item-per-slide.ts │ │ └── use-rtl.ts │ ├── protocol │ │ ├── CONSTANTS.tsx │ │ ├── DEFAULTS.tsx │ │ ├── types.ts │ │ ├── use-authorize-policy.ts │ │ ├── use-campaign-pause.ts │ │ ├── use-campaign-paused.ts │ │ ├── use-campaign-remove-funds.ts │ │ ├── use-campaign-unpause.ts │ │ ├── use-configure-campaign.ts │ │ ├── use-create-campaign.ts │ │ ├── use-deposit-metamask.ts │ │ ├── use-deposit.ts │ │ ├── use-get-active-licenses.ts │ │ ├── use-get-asset-owner.ts │ │ ├── use-get-balance.ts │ │ ├── use-get-campaign-funds-allocation.ts │ │ ├── use-get-campaign-funds-balance.ts │ │ ├── use-get-campaign-is-active.ts │ │ ├── use-get-campaign-is-ready.ts │ │ ├── use-get-campaign-quota-counter.ts │ │ ├── use-get-campaign-quota-limit.ts │ │ ├── use-get-campaign-total-usage.ts │ │ ├── use-get-campaign.ts │ │ ├── use-get-campaigns.ts │ │ ├── use-get-mmc-contract-balance.ts │ │ ├── use-get-policies-terms.ts │ │ ├── use-get-policy-attestation.ts │ │ ├── use-get-policy-terms.ts │ │ ├── use-get-smart-wallet-transactions.ts │ │ ├── use-get-subscription-campaign.ts │ │ ├── use-get-subtitles.ts │ │ ├── use-get-vault-balance.ts │ │ ├── use-has-access.ts │ │ ├── use-has-role.ts │ │ ├── use-is-policy-authorized.ts │ │ ├── use-is-verified.ts │ │ ├── use-metadata.ts │ │ ├── use-register-asset.ts │ │ ├── use-sponsored-access-agreement.ts │ │ ├── use-subscribe.ts │ │ ├── use-transfer.ts │ │ ├── use-withdraw-metamask.ts │ │ └── use-withdraw.ts │ ├── types.ts │ ├── use-account-session.ts │ ├── use-auth.ts │ ├── use-bookmark.ts │ ├── use-boolean.ts │ ├── use-copy-to-clipboard.ts │ ├── use-countdown.ts │ ├── use-debounce.ts │ ├── use-event-listener.ts │ ├── use-local-storage.ts │ ├── use-metamask.ts │ ├── use-notification-payload.ts │ ├── use-notifications.ts │ ├── use-off-set-top.ts │ ├── use-referrals.ts │ ├── use-responsive.ts │ ├── use-scroll-to-top.ts │ ├── use-stale-while-loading.ts │ ├── use-submit-asset.ts │ ├── use-toggle-bookmark.ts │ ├── use-transaction-data.ts │ └── use-web3-auth.ts ├── index.tsx ├── init.js ├── layouts │ ├── _common │ │ ├── account-popover │ │ │ ├── account-popover-button.tsx │ │ │ ├── account-popover-menu.tsx │ │ │ └── index.tsx │ │ ├── header-balance.tsx │ │ ├── header-mmc-balance.tsx │ │ ├── header-shadow.tsx │ │ ├── header-simple.tsx │ │ ├── header-xp-balance.tsx │ │ ├── index.ts │ │ ├── nav-toggle-button.tsx │ │ ├── notifications-popover │ │ │ ├── index.ts │ │ │ ├── notification-item.tsx │ │ │ └── notifications-popover.tsx │ │ └── searchbar │ │ │ ├── __mocks__ │ │ │ └── searchbarMocks.ts │ │ │ ├── __test__ │ │ │ └── searchbar.test.tsx │ │ │ ├── index.ts │ │ │ ├── result-item.tsx │ │ │ ├── searchbar.tsx │ │ │ ├── types.ts │ │ │ └── utils.ts │ ├── can-view-section.tsx │ ├── compact │ │ ├── index.ts │ │ └── layout.tsx │ ├── config-layout.ts │ └── dashboard │ │ ├── __test__ │ │ ├── __snapshots__ │ │ │ └── config-navigation-mini.test.tsx.snap │ │ └── config-navigation-mini.test.tsx │ │ ├── config-navigation-mini.tsx │ │ ├── config-navigation.tsx │ │ ├── header-content.tsx │ │ ├── header.tsx │ │ ├── index.ts │ │ ├── layout.tsx │ │ ├── main.tsx │ │ ├── nav-mini.tsx │ │ ├── nav-vertical-mini.tsx │ │ ├── nav-vertical.tsx │ │ ├── support-box.tsx │ │ ├── terms-and-conditions.tsx │ │ └── types.ts ├── libs │ ├── apollo.ts │ ├── components │ │ └── carousel │ │ │ └── index.ts │ ├── finance-graphs │ │ └── groupedTransactions.ts │ ├── ipfs.ts │ ├── notifications │ │ ├── __test__ │ │ │ ├── __snapshots__ │ │ │ │ ├── errors.test.ts.snap │ │ │ │ ├── info.test.ts.snap │ │ │ │ ├── success.test.ts.snap │ │ │ │ └── warning.test.ts.snap │ │ │ ├── errors.test.ts │ │ │ ├── info.test.ts │ │ │ ├── internal-notifications.test.ts │ │ │ ├── success.test.ts │ │ │ └── warning.test.ts │ │ ├── errors.ts │ │ ├── info.ts │ │ ├── internal-notifications.ts │ │ ├── success.ts │ │ └── warnings.ts │ ├── profile.ts │ ├── storage-available.ts │ ├── subscribe-notifications-supabase.ts │ ├── supabase-actions.ts │ └── types.ts ├── locales │ ├── config-lang.ts │ ├── i18n.ts │ ├── index.ts │ ├── langs │ │ ├── ar.json │ │ ├── cn.json │ │ ├── en.json │ │ ├── fr.json │ │ └── vi.json │ └── use-locales.ts ├── pages │ ├── 403.tsx │ ├── 404.tsx │ ├── 500.tsx │ ├── achievements.tsx │ ├── analytics.tsx │ ├── collaborations.tsx │ ├── community.tsx │ ├── events.tsx │ ├── explore.tsx │ ├── finance.tsx │ ├── governance │ │ └── list.tsx │ ├── marketing.tsx │ ├── marketing │ │ └── index.tsx │ ├── marketplace.tsx │ ├── ownership.tsx │ ├── publication │ │ └── details.tsx │ ├── studio.tsx │ └── user │ │ └── profile.tsx ├── react-app-env.d.ts ├── redux │ ├── address │ │ └── index.ts │ ├── auth │ │ └── index.ts │ ├── blockchain-events │ │ └── index.ts │ ├── drawer │ │ └── index.ts │ ├── minibar │ │ └── index.ts │ ├── notifications │ │ └── index.ts │ ├── recent-transactions │ │ └── index.ts │ ├── reducer.ts │ ├── store.ts │ ├── transactions │ │ └── index.ts │ └── types.ts ├── routes │ ├── components │ │ ├── index.ts │ │ └── router-link.tsx │ ├── hooks │ │ ├── index.ts │ │ ├── use-active-link.ts │ │ ├── use-params.ts │ │ ├── use-pathname.ts │ │ ├── use-router.ts │ │ └── use-search-params.ts │ ├── paths.ts │ └── sections │ │ ├── dashboard.tsx │ │ └── index.tsx ├── sections │ ├── achievements │ │ ├── components │ │ │ ├── daily-rewards.tsx │ │ │ ├── leaderboard-table.tsx │ │ │ ├── mini-game-card.tsx │ │ │ ├── perk-item.tsx │ │ │ ├── perks-list.tsx │ │ │ ├── user-sidebar-greetings.tsx │ │ │ ├── user-sidebar-latest-perks.tsx │ │ │ ├── user-sidebar-profile.tsx │ │ │ ├── user-sidebar-ranks.tsx │ │ │ └── user-sidebar.tsx │ │ ├── index.tsx │ │ └── views │ │ │ └── achievements-view.tsx │ ├── blank │ │ ├── index.tsx │ │ └── views │ │ │ └── blank-view.tsx │ ├── coming-soon │ │ ├── components │ │ │ └── explore-time-block.tsx │ │ ├── index.tsx │ │ ├── types.ts │ │ └── views │ │ │ └── coming-soon-view.tsx │ ├── error │ │ ├── index.ts │ │ └── views │ │ │ ├── error-403-view.tsx │ │ │ ├── error-404-view.tsx │ │ │ └── error-500-view.tsx │ ├── explore │ │ ├── components │ │ │ ├── __test__ │ │ │ │ ├── __mocks__ │ │ │ │ │ └── explorePublications.mocks.ts │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── explore-bookmarks.test.tsx.snap │ │ │ │ │ ├── explore-carousel.skeleton.test.tsx.snap │ │ │ │ │ ├── explore-creators.skeleton.test.tsx.snap │ │ │ │ │ ├── explore-creators.test.tsx.snap │ │ │ │ │ ├── explore-loader.test.tsx.snap │ │ │ │ │ ├── explore-publications.skeleton.test.tsx.snap │ │ │ │ │ ├── explore-publications.test.tsx.snap │ │ │ │ │ ├── explore-top-publications.skeleton.test.tsx.snap │ │ │ │ │ └── explore-top-publications.test.tsx.snap │ │ │ │ ├── explore-bookmarks.test.tsx │ │ │ │ ├── explore-carousel.skeleton.test.tsx │ │ │ │ ├── explore-creators.skeleton.test.tsx │ │ │ │ ├── explore-creators.test.tsx │ │ │ │ ├── explore-loader.test.tsx │ │ │ │ ├── explore-publications.skeleton.test.tsx │ │ │ │ ├── explore-publications.test.tsx │ │ │ │ ├── explore-top-publications.skeleton.test.tsx │ │ │ │ └── explore-top-publications.test.tsx │ │ │ ├── explore-bookmarks.tsx │ │ │ ├── explore-carousel.skeleton.tsx │ │ │ ├── explore-creators.skeleton.tsx │ │ │ ├── explore-creators.tsx │ │ │ ├── explore-loader.tsx │ │ │ ├── explore-publications.skeleton.tsx │ │ │ ├── explore-publications.tsx │ │ │ ├── explore-top-publications.skeleton.tsx │ │ │ └── explore-top-publications.tsx │ │ ├── index.tsx │ │ ├── types.ts │ │ └── views │ │ │ ├── __test__ │ │ │ ├── __mock__ │ │ │ │ └── exploreView.mock.ts │ │ │ ├── __snapshots__ │ │ │ │ └── explore-view.test.tsx.snap │ │ │ └── explore-view.test.tsx │ │ │ └── explore-view.tsx │ ├── finance │ │ ├── CONSTANTS.tsx │ │ ├── components │ │ │ ├── CONSTANTS.ts │ │ │ ├── __test__ │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── finance-box-row.test.tsx.snap │ │ │ │ │ ├── finance-deposit-from-metamask.test.tsx.snap │ │ │ │ │ ├── finance-deposit-from-smart-account.test.tsx.snap │ │ │ │ │ ├── finance-deposit-from-stripe.test.tsx.snap │ │ │ │ │ ├── finance-deposit-modal.test.tsx.snap │ │ │ │ │ ├── finance-dialogs-actions.test.tsx.snap │ │ │ │ │ ├── finance-display-profile-info.test.tsx.snap │ │ │ │ │ ├── finance-earn-token.test.tsx.snap │ │ │ │ │ ├── finance-metamask-helper.test.tsx.snap │ │ │ │ │ ├── finance-metamask-loader.test.tsx.snap │ │ │ │ │ ├── finance-no-followings-quick-transfer.test.tsx.snap │ │ │ │ │ ├── finance-overlay-loader.test.tsx.snap │ │ │ │ │ ├── finance-summary-and-actions.test.tsx.snap │ │ │ │ │ ├── finance-tabs.test.tsx.snap │ │ │ │ │ ├── finance-transactions-table-filters-result.test.tsx.snap │ │ │ │ │ ├── finance-transactions-table-row.test.tsx.snap │ │ │ │ │ ├── finance-wallet-transfer-widget-horizontal.test.tsx.snap │ │ │ │ │ ├── finance-withdraw-from-metamask.test.tsx.snap │ │ │ │ │ ├── finance-withdraw-from-smart-account.test.tsx.snap │ │ │ │ │ └── finance-withdraw-modal.test.tsx.snap │ │ │ │ ├── finance-box-row.test.tsx │ │ │ │ ├── finance-deposit-from-metamask.test.tsx │ │ │ │ ├── finance-deposit-from-smart-account.test.tsx │ │ │ │ ├── finance-deposit-from-stripe.test.tsx │ │ │ │ ├── finance-deposit-modal.test.tsx │ │ │ │ ├── finance-dialogs-actions.test.tsx │ │ │ │ ├── finance-display-profile-info.test.tsx │ │ │ │ ├── finance-earn-token.test.tsx │ │ │ │ ├── finance-metamask-helper.test.tsx │ │ │ │ ├── finance-metamask-loader.test.tsx │ │ │ │ ├── finance-no-followings-quick-transfer.test.tsx │ │ │ │ ├── finance-overlay-loader.test.tsx │ │ │ │ ├── finance-summary-and-actions.test.tsx │ │ │ │ ├── finance-tabs.test.tsx │ │ │ │ ├── finance-transactions-table-filters-result.test.tsx │ │ │ │ ├── finance-transactions-table-row.test.tsx │ │ │ │ ├── finance-wallet-transfer-widget-horizontal.test.tsx │ │ │ │ ├── finance-withdraw-from-metamask.test.tsx │ │ │ │ ├── finance-withdraw-from-smart-account.test.tsx │ │ │ │ └── finance-withdraw-modal.test.tsx │ │ │ ├── finance-balance-statistics.tsx │ │ │ ├── finance-box-row.tsx │ │ │ ├── finance-contacts.tsx │ │ │ ├── finance-deposit-from-metamask.tsx │ │ │ ├── finance-deposit-from-smart-account.tsx │ │ │ ├── finance-deposit-from-stripe.tsx │ │ │ ├── finance-deposit-modal.tsx │ │ │ ├── finance-deposit.tsx │ │ │ ├── finance-dialogs-actions.tsx │ │ │ ├── finance-display-profile-info.tsx │ │ │ ├── finance-earn-tokens.tsx │ │ │ ├── finance-invite-friends.tsx │ │ │ ├── finance-left-column-content.tsx │ │ │ ├── finance-metamask-button.tsx │ │ │ ├── finance-metamask-helper.tsx │ │ │ ├── finance-metamask-loader.tsx │ │ │ ├── finance-modal.tsx │ │ │ ├── finance-no-followings-quick-transfer.tsx │ │ │ ├── finance-overlay-loader.tsx │ │ │ ├── finance-quick-transfer-modal.tsx │ │ │ ├── finance-quick-transfer.tsx │ │ │ ├── finance-right-column-content.tsx │ │ │ ├── finance-search-profile-modal.tsx │ │ │ ├── finance-summary-and-actions.tsx │ │ │ ├── finance-tabs.tsx │ │ │ ├── finance-transactions-history.tsx │ │ │ ├── finance-transactions-table-filters-result.tsx │ │ │ ├── finance-transactions-table-row.tsx │ │ │ ├── finance-wallet-transfer-widget-horizontal.tsx │ │ │ ├── finance-widget-summary.tsx │ │ │ ├── finance-withdraw-from-metamask.tsx │ │ │ ├── finance-withdraw-from-smart-account.tsx │ │ │ ├── finance-withdraw-modal.tsx │ │ │ └── finance-withdraw.tsx │ │ ├── index.tsx │ │ ├── types.ts │ │ └── views │ │ │ └── finance-view.tsx │ ├── marketing │ │ ├── CONSTANTS.tsx │ │ ├── components │ │ │ ├── campaign-configured-indicator-state.tsx │ │ │ ├── campaign-create.tsx │ │ │ ├── campaign-modal-content.tsx │ │ │ ├── campaign-settings-modal-content.tsx │ │ │ ├── campaign-settings-modal.tsx │ │ │ ├── campaign-table-row.tsx │ │ │ ├── campaign-table.tsx │ │ │ ├── campaign-withdraw-funds-modal-content.tsx │ │ │ └── campaign-withdraw-funds-modal.tsx │ │ ├── index.tsx │ │ ├── types.ts │ │ └── views │ │ │ └── marketing-view.tsx │ ├── ownership │ │ ├── components │ │ │ └── ownership-process.tsx │ │ ├── index.tsx │ │ └── views │ │ │ └── ownership-view.tsx │ ├── publication │ │ ├── CONSTANTS.ts │ │ ├── components │ │ │ ├── neon-paper-container.tsx │ │ │ ├── publication-comment-item.tsx │ │ │ ├── publication-comments-list.tsx │ │ │ ├── publication-description.tsx │ │ │ ├── publication-details-comment-form.tsx │ │ │ ├── publication-hidden.tsx │ │ │ ├── publication-join-button.tsx │ │ │ ├── publication-player.tsx │ │ │ ├── publication-poster-wallpaper.tsx │ │ │ ├── publication-recommendations.tsx │ │ │ ├── publication-replies-list.tsx │ │ │ ├── publication-share.tsx │ │ │ ├── publication-sponsored-button.tsx │ │ │ └── publication-sponsors-and-bakers.tsx │ │ ├── index.ts │ │ ├── types.ts │ │ └── views │ │ │ ├── publication-details-view.skeleton.tsx │ │ │ └── publication-details-view.tsx │ └── user │ │ ├── CONSTANTS.tsx │ │ ├── components │ │ ├── profile-cover.tsx │ │ ├── profile-followers.tsx │ │ ├── profile-following.tsx │ │ ├── profile-header.tsx │ │ ├── profile-home.tsx │ │ ├── profile-join.tsx │ │ ├── profile-publication-item.tsx │ │ ├── profile-referrals-table-row.tsx │ │ ├── profile-referrals.tsx │ │ ├── profile-report.tsx │ │ ├── profile-right-sidebar.tsx │ │ ├── profile-set-joining-price.tsx │ │ ├── profile-share.tsx │ │ ├── profile-toolbar.tsx │ │ ├── profile-transfer.tsx │ │ ├── profile-update-button.tsx │ │ ├── profile-user-info.tsx │ │ └── profile-wrapper.tsx │ │ ├── index.ts │ │ ├── types.ts │ │ └── views │ │ ├── user-profile-view.skeleton.tsx │ │ └── user-profile-view.tsx ├── theme │ ├── css.ts │ ├── custom-shadows.ts │ ├── index.tsx │ ├── options │ │ ├── contrast.ts │ │ ├── dark-mode.ts │ │ ├── presets.ts │ │ ├── right-to-left.tsx │ │ └── rtl-utils.ts │ ├── overrides │ │ ├── components │ │ │ ├── accordion.tsx │ │ │ ├── alert.tsx │ │ │ ├── appbar.tsx │ │ │ ├── autocomplete.tsx │ │ │ ├── avatar.tsx │ │ │ ├── backdrop.tsx │ │ │ ├── badge.tsx │ │ │ ├── breadcrumbs.tsx │ │ │ ├── button-group.tsx │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── chip.tsx │ │ │ ├── css-baseline.tsx │ │ │ ├── data-grid.tsx │ │ │ ├── date-picker.tsx │ │ │ ├── dialog.tsx │ │ │ ├── drawer.tsx │ │ │ ├── fab.tsx │ │ │ ├── icons.tsx │ │ │ ├── list.tsx │ │ │ ├── loading-button.tsx │ │ │ ├── menu.tsx │ │ │ ├── pagination.tsx │ │ │ ├── paper.tsx │ │ │ ├── popover.tsx │ │ │ ├── progress.tsx │ │ │ ├── radio.tsx │ │ │ ├── rating.tsx │ │ │ ├── select.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── slider.tsx │ │ │ ├── stepper.tsx │ │ │ ├── svg-icon.tsx │ │ │ ├── switch.tsx │ │ │ ├── table.tsx │ │ │ ├── tabs.tsx │ │ │ ├── textfield.tsx │ │ │ ├── timeline.tsx │ │ │ ├── toggle-button.tsx │ │ │ ├── tooltip.tsx │ │ │ ├── tree-view.tsx │ │ │ └── typography.tsx │ │ ├── default-props.tsx │ │ └── index.ts │ ├── palette.ts │ ├── shadows.ts │ └── typography.ts ├── types │ └── types.ts └── utils │ ├── __test__ │ ├── __snapshots__ │ │ ├── change-case.test.ts.snap │ │ ├── colors.test.ts.snap │ │ ├── comment.test.ts.snap │ │ ├── decibear.test.ts.snap │ │ ├── flatten-array.test.ts.snap │ │ ├── format-number.test.ts.snap │ │ └── format-time.test.ts.snap │ ├── change-case.test.ts │ ├── colors.test.ts │ ├── comment.test.ts │ ├── decibear.test.ts │ ├── events.test.ts │ ├── flatten-array.test.ts │ ├── format-number.test.ts │ ├── format-time.test.ts │ ├── supabase.test.ts │ └── text-transform.test.ts │ ├── change-case.ts │ ├── colors.ts │ ├── comment.ts │ ├── dicebear.ts │ ├── events.ts │ ├── flatten-array.ts │ ├── format-number.ts │ ├── format-time.ts │ ├── image.ts │ ├── is-loading.ts │ ├── os-detection.ts │ ├── profile.ts │ ├── publication.ts │ ├── ranks.ts │ ├── supabase.ts │ ├── testing │ └── Testing.tsx │ ├── text-transform.ts │ ├── uuidv4.ts │ └── wallet.ts ├── stats.html ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/.env.example -------------------------------------------------------------------------------- /.env.vault: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/.env.vault -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/.github/ISSUE_TEMPLATE/feature.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/fix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/.github/ISSUE_TEMPLATE/fix.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/performance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/.github/ISSUE_TEMPLATE/performance.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/.github/ISSUE_TEMPLATE/test.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ui.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/.github/ISSUE_TEMPLATE/ui.yml -------------------------------------------------------------------------------- /.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/.github/workflows/cd.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/lhci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/.github/workflows/lhci.yml -------------------------------------------------------------------------------- /.github/workflows/next.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/.github/workflows/next.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/stable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/.github/workflows/stable.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.lighthouserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/.lighthouserc.json -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/.prettierrc -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/.releaserc -------------------------------------------------------------------------------- /.sonarcloud.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/.sonarcloud.properties -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/README.md -------------------------------------------------------------------------------- /__mocks__/react-i18next.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/__mocks__/react-i18next.js -------------------------------------------------------------------------------- /__mocks__/web3auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/__mocks__/web3auth.ts -------------------------------------------------------------------------------- /codegen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/codegen.ts -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ['@commitlint/config-conventional'] } 2 | -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/eslint.config.js -------------------------------------------------------------------------------- /image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/image.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/package.json -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/_redirects -------------------------------------------------------------------------------- /public/assets/background/overlay_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/background/overlay_1.svg -------------------------------------------------------------------------------- /public/assets/background/overlay_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/background/overlay_2.jpg -------------------------------------------------------------------------------- /public/assets/background/overlay_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/background/overlay_3.jpg -------------------------------------------------------------------------------- /public/assets/background/overlay_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/background/overlay_4.jpg -------------------------------------------------------------------------------- /public/assets/cyan-blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/cyan-blur.png -------------------------------------------------------------------------------- /public/assets/icons/auth/ic_amplify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/auth/ic_amplify.svg -------------------------------------------------------------------------------- /public/assets/icons/auth/ic_auth0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/auth/ic_auth0.svg -------------------------------------------------------------------------------- /public/assets/icons/auth/ic_firebase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/auth/ic_firebase.svg -------------------------------------------------------------------------------- /public/assets/icons/auth/ic_jwt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/auth/ic_jwt.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_accordion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_accordion.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_alert.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_autocomplete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_autocomplete.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_avatar.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_badge.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_breadcrumbs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_breadcrumbs.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_buttons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_buttons.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_checkbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_checkbox.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_chip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_chip.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_colors.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_data_grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_data_grid.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_dialog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_dialog.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_extra_animate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_extra_animate.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_extra_carousel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_extra_carousel.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_extra_chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_extra_chart.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_extra_editor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_extra_editor.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_extra_image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_extra_image.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_extra_label.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_extra_label.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_extra_lightbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_extra_lightbox.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_extra_map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_extra_map.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_extra_markdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_extra_markdown.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_extra_mega_menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_extra_mega_menu.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_extra_scroll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_extra_scroll.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_extra_snackbar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_extra_snackbar.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_extra_upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_extra_upload.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_grid.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_icons.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_list.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_menu.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_pagination.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_pagination.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_pickers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_pickers.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_popover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_popover.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_progress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_progress.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_radio_button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_radio_button.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_rating.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_rating.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_shadows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_shadows.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_slider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_slider.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_stepper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_stepper.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_switch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_switch.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_table.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_tabs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_tabs.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_textfield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_textfield.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_timeline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_timeline.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_tooltip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_tooltip.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_transfer_list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_transfer_list.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_tree_view.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_tree_view.svg -------------------------------------------------------------------------------- /public/assets/icons/components/ic_typography.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/components/ic_typography.svg -------------------------------------------------------------------------------- /public/assets/icons/home/ic_design.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/home/ic_design.svg -------------------------------------------------------------------------------- /public/assets/icons/home/ic_development.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/home/ic_development.svg -------------------------------------------------------------------------------- /public/assets/icons/home/ic_make_brand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/home/ic_make_brand.svg -------------------------------------------------------------------------------- /public/assets/icons/navbar/ic_analytics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/navbar/ic_analytics.svg -------------------------------------------------------------------------------- /public/assets/icons/navbar/ic_banking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/navbar/ic_banking.svg -------------------------------------------------------------------------------- /public/assets/icons/navbar/ic_blank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/navbar/ic_blank.svg -------------------------------------------------------------------------------- /public/assets/icons/navbar/ic_blog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/navbar/ic_blog.svg -------------------------------------------------------------------------------- /public/assets/icons/navbar/ic_booking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/navbar/ic_booking.svg -------------------------------------------------------------------------------- /public/assets/icons/navbar/ic_calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/navbar/ic_calendar.svg -------------------------------------------------------------------------------- /public/assets/icons/navbar/ic_chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/navbar/ic_chat.svg -------------------------------------------------------------------------------- /public/assets/icons/navbar/ic_dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/navbar/ic_dashboard.svg -------------------------------------------------------------------------------- /public/assets/icons/navbar/ic_disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/navbar/ic_disabled.svg -------------------------------------------------------------------------------- /public/assets/icons/navbar/ic_ecommerce.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/navbar/ic_ecommerce.svg -------------------------------------------------------------------------------- /public/assets/icons/navbar/ic_external.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/navbar/ic_external.svg -------------------------------------------------------------------------------- /public/assets/icons/navbar/ic_file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/navbar/ic_file.svg -------------------------------------------------------------------------------- /public/assets/icons/navbar/ic_folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/navbar/ic_folder.svg -------------------------------------------------------------------------------- /public/assets/icons/navbar/ic_invoice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/navbar/ic_invoice.svg -------------------------------------------------------------------------------- /public/assets/icons/navbar/ic_job.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/navbar/ic_job.svg -------------------------------------------------------------------------------- /public/assets/icons/navbar/ic_kanban.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/navbar/ic_kanban.svg -------------------------------------------------------------------------------- /public/assets/icons/navbar/ic_label.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/navbar/ic_label.svg -------------------------------------------------------------------------------- /public/assets/icons/navbar/ic_lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/navbar/ic_lock.svg -------------------------------------------------------------------------------- /public/assets/icons/navbar/ic_mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/navbar/ic_mail.svg -------------------------------------------------------------------------------- /public/assets/icons/navbar/ic_menu_item.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/navbar/ic_menu_item.svg -------------------------------------------------------------------------------- /public/assets/icons/navbar/ic_order.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/navbar/ic_order.svg -------------------------------------------------------------------------------- /public/assets/icons/navbar/ic_product.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/navbar/ic_product.svg -------------------------------------------------------------------------------- /public/assets/icons/navbar/ic_tour.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/navbar/ic_tour.svg -------------------------------------------------------------------------------- /public/assets/icons/navbar/ic_user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/navbar/ic_user.svg -------------------------------------------------------------------------------- /public/assets/icons/navbar/ic_user_group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/navbar/ic_user_group.svg -------------------------------------------------------------------------------- /public/assets/icons/navbar/ic_watchit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/navbar/ic_watchit.svg -------------------------------------------------------------------------------- /public/assets/icons/notification/ic_chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/notification/ic_chat.svg -------------------------------------------------------------------------------- /public/assets/icons/notification/ic_delivery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/notification/ic_delivery.svg -------------------------------------------------------------------------------- /public/assets/icons/notification/ic_mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/notification/ic_mail.svg -------------------------------------------------------------------------------- /public/assets/icons/notification/ic_order.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/notification/ic_order.svg -------------------------------------------------------------------------------- /public/assets/icons/setting/ic_align_left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/setting/ic_align_left.svg -------------------------------------------------------------------------------- /public/assets/icons/setting/ic_align_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/setting/ic_align_right.svg -------------------------------------------------------------------------------- /public/assets/icons/setting/ic_collapse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/setting/ic_collapse.svg -------------------------------------------------------------------------------- /public/assets/icons/setting/ic_contrast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/setting/ic_contrast.svg -------------------------------------------------------------------------------- /public/assets/icons/setting/ic_contrast_bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/setting/ic_contrast_bold.svg -------------------------------------------------------------------------------- /public/assets/icons/setting/ic_exit_full_screen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/setting/ic_exit_full_screen.svg -------------------------------------------------------------------------------- /public/assets/icons/setting/ic_full_screen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/setting/ic_full_screen.svg -------------------------------------------------------------------------------- /public/assets/icons/setting/ic_moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/setting/ic_moon.svg -------------------------------------------------------------------------------- /public/assets/icons/setting/ic_setting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/setting/ic_setting.svg -------------------------------------------------------------------------------- /public/assets/icons/setting/ic_sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/icons/setting/ic_sun.svg -------------------------------------------------------------------------------- /public/assets/illustrations/characters/character_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/illustrations/characters/character_1.png -------------------------------------------------------------------------------- /public/assets/illustrations/characters/character_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/illustrations/characters/character_10.png -------------------------------------------------------------------------------- /public/assets/illustrations/characters/character_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/illustrations/characters/character_11.png -------------------------------------------------------------------------------- /public/assets/illustrations/characters/character_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/illustrations/characters/character_2.png -------------------------------------------------------------------------------- /public/assets/illustrations/characters/character_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/illustrations/characters/character_3.png -------------------------------------------------------------------------------- /public/assets/illustrations/characters/character_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/illustrations/characters/character_4.png -------------------------------------------------------------------------------- /public/assets/illustrations/characters/character_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/illustrations/characters/character_5.png -------------------------------------------------------------------------------- /public/assets/illustrations/characters/character_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/illustrations/characters/character_6.png -------------------------------------------------------------------------------- /public/assets/illustrations/characters/character_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/illustrations/characters/character_7.png -------------------------------------------------------------------------------- /public/assets/illustrations/characters/character_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/illustrations/characters/character_8.png -------------------------------------------------------------------------------- /public/assets/illustrations/characters/character_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/illustrations/characters/character_9.png -------------------------------------------------------------------------------- /public/assets/illustrations/illustration_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/illustrations/illustration_dashboard.png -------------------------------------------------------------------------------- /public/assets/illustrations/movie_skeleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/illustrations/movie_skeleton.png -------------------------------------------------------------------------------- /public/assets/illustrations/movie_subtitle_skeleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/illustrations/movie_subtitle_skeleton.png -------------------------------------------------------------------------------- /public/assets/illustrations/poster_skeleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/illustrations/poster_skeleton.png -------------------------------------------------------------------------------- /public/assets/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/placeholder.svg -------------------------------------------------------------------------------- /public/assets/red-blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/red-blur.png -------------------------------------------------------------------------------- /public/assets/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/transparent.png -------------------------------------------------------------------------------- /public/assets/white_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/assets/white_logo.png -------------------------------------------------------------------------------- /public/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/favicon/favicon.ico -------------------------------------------------------------------------------- /public/fonts/CircularStd-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/fonts/CircularStd-Bold.otf -------------------------------------------------------------------------------- /public/fonts/CircularStd-Book.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/fonts/CircularStd-Book.otf -------------------------------------------------------------------------------- /public/fonts/CircularStd-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/fonts/CircularStd-Medium.otf -------------------------------------------------------------------------------- /public/fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /public/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /public/fonts/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/fonts/index.css -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/public/robots.txt -------------------------------------------------------------------------------- /setupTest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/setupTest.tsx -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/__test__/config-global.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/__test__/config-global.test.ts -------------------------------------------------------------------------------- /src/assets/animations/watchit-spinner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/assets/animations/watchit-spinner.json -------------------------------------------------------------------------------- /src/assets/audio/notify.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/assets/audio/notify.mp3 -------------------------------------------------------------------------------- /src/assets/illustrations/background-shape.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/assets/illustrations/background-shape.tsx -------------------------------------------------------------------------------- /src/assets/illustrations/booking-illustration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/assets/illustrations/booking-illustration.tsx -------------------------------------------------------------------------------- /src/assets/illustrations/check-in-illustration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/assets/illustrations/check-in-illustration.tsx -------------------------------------------------------------------------------- /src/assets/illustrations/check-out-illustration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/assets/illustrations/check-out-illustration.tsx -------------------------------------------------------------------------------- /src/assets/illustrations/check_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/assets/illustrations/check_dark.png -------------------------------------------------------------------------------- /src/assets/illustrations/check_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/assets/illustrations/check_green.png -------------------------------------------------------------------------------- /src/assets/illustrations/coming-soon-illustration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/assets/illustrations/coming-soon-illustration.tsx -------------------------------------------------------------------------------- /src/assets/illustrations/earn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/assets/illustrations/earn.svg -------------------------------------------------------------------------------- /src/assets/illustrations/empty-notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/assets/illustrations/empty-notifications.png -------------------------------------------------------------------------------- /src/assets/illustrations/engager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/assets/illustrations/engager.png -------------------------------------------------------------------------------- /src/assets/illustrations/fan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/assets/illustrations/fan.png -------------------------------------------------------------------------------- /src/assets/illustrations/forbidden-illustration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/assets/illustrations/forbidden-illustration.tsx -------------------------------------------------------------------------------- /src/assets/illustrations/guardian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/assets/illustrations/guardian.png -------------------------------------------------------------------------------- /src/assets/illustrations/guess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/assets/illustrations/guess.png -------------------------------------------------------------------------------- /src/assets/illustrations/hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/assets/illustrations/hi.png -------------------------------------------------------------------------------- /src/assets/illustrations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/assets/illustrations/index.ts -------------------------------------------------------------------------------- /src/assets/illustrations/marketing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/assets/illustrations/marketing.svg -------------------------------------------------------------------------------- /src/assets/illustrations/ownership.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/assets/illustrations/ownership.svg -------------------------------------------------------------------------------- /src/assets/illustrations/process.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/assets/illustrations/process.svg -------------------------------------------------------------------------------- /src/assets/illustrations/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/assets/illustrations/question.png -------------------------------------------------------------------------------- /src/assets/illustrations/scout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/assets/illustrations/scout.png -------------------------------------------------------------------------------- /src/assets/illustrations/scout_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/assets/illustrations/scout_2.png -------------------------------------------------------------------------------- /src/assets/illustrations/seo-illustration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/assets/illustrations/seo-illustration.tsx -------------------------------------------------------------------------------- /src/assets/illustrations/sever-error-illustration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/assets/illustrations/sever-error-illustration.tsx -------------------------------------------------------------------------------- /src/assets/illustrations/splotligther.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/assets/illustrations/splotligther.png -------------------------------------------------------------------------------- /src/assets/illustrations/storykeeper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/assets/illustrations/storykeeper.png -------------------------------------------------------------------------------- /src/assets/illustrations/supporter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/assets/illustrations/supporter.png -------------------------------------------------------------------------------- /src/assets/illustrations/upload-illustration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/assets/illustrations/upload-illustration.tsx -------------------------------------------------------------------------------- /src/assets/illustrations/watcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/assets/illustrations/watcher.png -------------------------------------------------------------------------------- /src/assets/illustrations/wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/assets/illustrations/wheel.png -------------------------------------------------------------------------------- /src/assets/mmc_token.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/assets/mmc_token.ico -------------------------------------------------------------------------------- /src/assets/xp_badge.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/assets/xp_badge.ico -------------------------------------------------------------------------------- /src/clients/viem/publicClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/clients/viem/publicClient.ts -------------------------------------------------------------------------------- /src/components/LoadingFade.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/LoadingFade.tsx -------------------------------------------------------------------------------- /src/components/__test__/modal.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/__test__/modal.test.tsx -------------------------------------------------------------------------------- /src/components/activate-subscription-profile-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/activate-subscription-profile-modal.tsx -------------------------------------------------------------------------------- /src/components/animate/features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/animate/features.js -------------------------------------------------------------------------------- /src/components/animate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/animate/index.ts -------------------------------------------------------------------------------- /src/components/animate/motion-container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/animate/motion-container.tsx -------------------------------------------------------------------------------- /src/components/animate/motion-lazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/animate/motion-lazy.tsx -------------------------------------------------------------------------------- /src/components/animate/motion-viewport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/animate/motion-viewport.tsx -------------------------------------------------------------------------------- /src/components/animate/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/animate/types.ts -------------------------------------------------------------------------------- /src/components/animate/variants/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/animate/variants/actions.ts -------------------------------------------------------------------------------- /src/components/animate/variants/background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/animate/variants/background.ts -------------------------------------------------------------------------------- /src/components/animate/variants/bounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/animate/variants/bounce.ts -------------------------------------------------------------------------------- /src/components/animate/variants/container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/animate/variants/container.ts -------------------------------------------------------------------------------- /src/components/animate/variants/fade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/animate/variants/fade.ts -------------------------------------------------------------------------------- /src/components/animate/variants/flip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/animate/variants/flip.ts -------------------------------------------------------------------------------- /src/components/animate/variants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/animate/variants/index.ts -------------------------------------------------------------------------------- /src/components/animate/variants/path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/animate/variants/path.ts -------------------------------------------------------------------------------- /src/components/animate/variants/rotate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/animate/variants/rotate.ts -------------------------------------------------------------------------------- /src/components/animate/variants/scale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/animate/variants/scale.ts -------------------------------------------------------------------------------- /src/components/animate/variants/slide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/animate/variants/slide.ts -------------------------------------------------------------------------------- /src/components/animate/variants/transition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/animate/variants/transition.ts -------------------------------------------------------------------------------- /src/components/animate/variants/zoom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/animate/variants/zoom.ts -------------------------------------------------------------------------------- /src/components/app-ready.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/app-ready.tsx -------------------------------------------------------------------------------- /src/components/avatar/__test__/Avatar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/avatar/__test__/Avatar.test.tsx -------------------------------------------------------------------------------- /src/components/avatar/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/avatar/avatar.tsx -------------------------------------------------------------------------------- /src/components/avatar/index.ts: -------------------------------------------------------------------------------- 1 | export * from '@src/components/avatar'; 2 | -------------------------------------------------------------------------------- /src/components/carousel/CONSTANTS.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/carousel/__test__/types.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/carousel/__test__/types.test.tsx -------------------------------------------------------------------------------- /src/components/carousel/components/carousel-arrows.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/carousel/components/carousel-arrows.tsx -------------------------------------------------------------------------------- /src/components/carousel/components/carousel-dots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/carousel/components/carousel-dots.tsx -------------------------------------------------------------------------------- /src/components/carousel/components/carousel-slide.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/carousel/components/carousel-slide.tsx -------------------------------------------------------------------------------- /src/components/carousel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/carousel/index.ts -------------------------------------------------------------------------------- /src/components/carousel/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/carousel/types.ts -------------------------------------------------------------------------------- /src/components/carousel/variants/carousel-creators.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/carousel/variants/carousel-creators.tsx -------------------------------------------------------------------------------- /src/components/carousel/variants/carousel-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/carousel/variants/carousel-wrapper.tsx -------------------------------------------------------------------------------- /src/components/chart/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/chart/chart.tsx -------------------------------------------------------------------------------- /src/components/chart/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/chart/index.ts -------------------------------------------------------------------------------- /src/components/chart/use-chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/chart/use-chart.ts -------------------------------------------------------------------------------- /src/components/copyable-text/copyable-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/copyable-text/copyable-text.tsx -------------------------------------------------------------------------------- /src/components/copyable-text/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/copyable-text/index.ts -------------------------------------------------------------------------------- /src/components/custom-breadcrumbs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/custom-breadcrumbs/index.ts -------------------------------------------------------------------------------- /src/components/custom-breadcrumbs/link-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/custom-breadcrumbs/link-item.tsx -------------------------------------------------------------------------------- /src/components/custom-breadcrumbs/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/custom-breadcrumbs/types.ts -------------------------------------------------------------------------------- /src/components/custom-date-range-picker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/custom-date-range-picker/index.ts -------------------------------------------------------------------------------- /src/components/custom-date-range-picker/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/custom-date-range-picker/types.ts -------------------------------------------------------------------------------- /src/components/custom-date-range-picker/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/custom-date-range-picker/utils.ts -------------------------------------------------------------------------------- /src/components/custom-dialog/confirm-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/custom-dialog/confirm-dialog.tsx -------------------------------------------------------------------------------- /src/components/custom-dialog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/custom-dialog/index.ts -------------------------------------------------------------------------------- /src/components/custom-dialog/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/custom-dialog/types.ts -------------------------------------------------------------------------------- /src/components/custom-popover/custom-popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/custom-popover/custom-popover.tsx -------------------------------------------------------------------------------- /src/components/custom-popover/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/custom-popover/index.ts -------------------------------------------------------------------------------- /src/components/custom-popover/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/custom-popover/styles.tsx -------------------------------------------------------------------------------- /src/components/custom-popover/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/custom-popover/types.ts -------------------------------------------------------------------------------- /src/components/custom-popover/use-popover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/custom-popover/use-popover.ts -------------------------------------------------------------------------------- /src/components/custom-popover/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/custom-popover/utils.ts -------------------------------------------------------------------------------- /src/components/editor/editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/editor/editor.tsx -------------------------------------------------------------------------------- /src/components/editor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/editor/index.ts -------------------------------------------------------------------------------- /src/components/editor/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/editor/styles.ts -------------------------------------------------------------------------------- /src/components/editor/toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/editor/toolbar.tsx -------------------------------------------------------------------------------- /src/components/editor/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/editor/types.ts -------------------------------------------------------------------------------- /src/components/empty-content/empty-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/empty-content/empty-content.tsx -------------------------------------------------------------------------------- /src/components/empty-content/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './empty-content'; 2 | -------------------------------------------------------------------------------- /src/components/file-thumbnail/download-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/file-thumbnail/download-button.tsx -------------------------------------------------------------------------------- /src/components/file-thumbnail/file-thumbnail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/file-thumbnail/file-thumbnail.tsx -------------------------------------------------------------------------------- /src/components/file-thumbnail/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/file-thumbnail/index.ts -------------------------------------------------------------------------------- /src/components/file-thumbnail/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/file-thumbnail/types.ts -------------------------------------------------------------------------------- /src/components/file-thumbnail/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/file-thumbnail/utils.ts -------------------------------------------------------------------------------- /src/components/follow-unfollow-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/follow-unfollow-button.tsx -------------------------------------------------------------------------------- /src/components/hook-form/form-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/hook-form/form-provider.tsx -------------------------------------------------------------------------------- /src/components/hook-form/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/hook-form/index.ts -------------------------------------------------------------------------------- /src/components/hook-form/rhf-autocomplete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/hook-form/rhf-autocomplete.tsx -------------------------------------------------------------------------------- /src/components/hook-form/rhf-checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/hook-form/rhf-checkbox.tsx -------------------------------------------------------------------------------- /src/components/hook-form/rhf-code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/hook-form/rhf-code.tsx -------------------------------------------------------------------------------- /src/components/hook-form/rhf-editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/hook-form/rhf-editor.tsx -------------------------------------------------------------------------------- /src/components/hook-form/rhf-radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/hook-form/rhf-radio-group.tsx -------------------------------------------------------------------------------- /src/components/hook-form/rhf-select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/hook-form/rhf-select.tsx -------------------------------------------------------------------------------- /src/components/hook-form/rhf-slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/hook-form/rhf-slider.tsx -------------------------------------------------------------------------------- /src/components/hook-form/rhf-switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/hook-form/rhf-switch.tsx -------------------------------------------------------------------------------- /src/components/hook-form/rhf-text-field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/hook-form/rhf-text-field.tsx -------------------------------------------------------------------------------- /src/components/hook-form/rhf-upload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/hook-form/rhf-upload.tsx -------------------------------------------------------------------------------- /src/components/iconify/iconify.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/iconify/iconify.tsx -------------------------------------------------------------------------------- /src/components/iconify/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/iconify/index.ts -------------------------------------------------------------------------------- /src/components/iconify/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/iconify/types.ts -------------------------------------------------------------------------------- /src/components/image/image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/image/image.tsx -------------------------------------------------------------------------------- /src/components/image/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/image/index.ts -------------------------------------------------------------------------------- /src/components/image/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/image/types.ts -------------------------------------------------------------------------------- /src/components/image/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/image/utils.ts -------------------------------------------------------------------------------- /src/components/input-amount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/input-amount.tsx -------------------------------------------------------------------------------- /src/components/label/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/label/index.ts -------------------------------------------------------------------------------- /src/components/label/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/label/label.tsx -------------------------------------------------------------------------------- /src/components/label/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/label/styles.ts -------------------------------------------------------------------------------- /src/components/label/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/label/types.ts -------------------------------------------------------------------------------- /src/components/leave-tip-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/leave-tip-card.tsx -------------------------------------------------------------------------------- /src/components/loading-screen/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/loading-screen/index.ts -------------------------------------------------------------------------------- /src/components/loading-screen/loading-screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/loading-screen/loading-screen.tsx -------------------------------------------------------------------------------- /src/components/loading-screen/splash-screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/loading-screen/splash-screen.tsx -------------------------------------------------------------------------------- /src/components/login-modal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/login-modal/index.ts -------------------------------------------------------------------------------- /src/components/login-modal/modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/login-modal/modal.tsx -------------------------------------------------------------------------------- /src/components/login-modal/profile-form-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/login-modal/profile-form-view.tsx -------------------------------------------------------------------------------- /src/components/login-modal/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/login-modal/types.ts -------------------------------------------------------------------------------- /src/components/logo/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './logo'; 2 | -------------------------------------------------------------------------------- /src/components/logo/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/logo/logo.tsx -------------------------------------------------------------------------------- /src/components/markdown/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/markdown/index.ts -------------------------------------------------------------------------------- /src/components/markdown/markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/markdown/markdown.tsx -------------------------------------------------------------------------------- /src/components/markdown/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/markdown/styles.ts -------------------------------------------------------------------------------- /src/components/markdown/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/markdown/types.ts -------------------------------------------------------------------------------- /src/components/modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/modal.tsx -------------------------------------------------------------------------------- /src/components/nav-section/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/nav-section/config.ts -------------------------------------------------------------------------------- /src/components/nav-section/horizontal/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './nav-section-horizontal'; 2 | -------------------------------------------------------------------------------- /src/components/nav-section/horizontal/nav-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/nav-section/horizontal/nav-item.tsx -------------------------------------------------------------------------------- /src/components/nav-section/horizontal/nav-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/nav-section/horizontal/nav-list.tsx -------------------------------------------------------------------------------- /src/components/nav-section/horizontal/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/nav-section/horizontal/styles.ts -------------------------------------------------------------------------------- /src/components/nav-section/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/nav-section/index.ts -------------------------------------------------------------------------------- /src/components/nav-section/mini/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './nav-section-mini'; 2 | -------------------------------------------------------------------------------- /src/components/nav-section/mini/nav-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/nav-section/mini/nav-item.tsx -------------------------------------------------------------------------------- /src/components/nav-section/mini/nav-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/nav-section/mini/nav-list.tsx -------------------------------------------------------------------------------- /src/components/nav-section/mini/nav-section-mini.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/nav-section/mini/nav-section-mini.tsx -------------------------------------------------------------------------------- /src/components/nav-section/mini/styles-mini.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/nav-section/mini/styles-mini.ts -------------------------------------------------------------------------------- /src/components/nav-section/mini/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/nav-section/mini/styles.ts -------------------------------------------------------------------------------- /src/components/nav-section/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/nav-section/types.ts -------------------------------------------------------------------------------- /src/components/nav-section/vertical/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './nav-section-vertical'; 2 | -------------------------------------------------------------------------------- /src/components/nav-section/vertical/nav-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/nav-section/vertical/nav-item.tsx -------------------------------------------------------------------------------- /src/components/nav-section/vertical/nav-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/nav-section/vertical/nav-list.tsx -------------------------------------------------------------------------------- /src/components/nav-section/vertical/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/nav-section/vertical/styles.ts -------------------------------------------------------------------------------- /src/components/og-meta-tags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/og-meta-tags.tsx -------------------------------------------------------------------------------- /src/components/openable-text/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/openable-text/index.ts -------------------------------------------------------------------------------- /src/components/openable-text/openable-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/openable-text/openable-text.tsx -------------------------------------------------------------------------------- /src/components/poster/CONSTANTS.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/poster/CONSTANTS.tsx -------------------------------------------------------------------------------- /src/components/poster/carousel-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/poster/carousel-section.tsx -------------------------------------------------------------------------------- /src/components/poster/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/poster/types.ts -------------------------------------------------------------------------------- /src/components/poster/variants/poster-horizontal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/poster/variants/poster-horizontal.tsx -------------------------------------------------------------------------------- /src/components/poster/variants/poster-top-titles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/poster/variants/poster-top-titles.tsx -------------------------------------------------------------------------------- /src/components/process-illustration-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/process-illustration-card.tsx -------------------------------------------------------------------------------- /src/components/process-section-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/process-section-card.tsx -------------------------------------------------------------------------------- /src/components/progress-bar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/progress-bar/index.ts -------------------------------------------------------------------------------- /src/components/progress-bar/progress-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/progress-bar/progress-bar.tsx -------------------------------------------------------------------------------- /src/components/progress-bar/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/progress-bar/styles.tsx -------------------------------------------------------------------------------- /src/components/publication-detail-main/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/publication-detail-main/index.tsx -------------------------------------------------------------------------------- /src/components/publication-detail-main/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/publication-detail-main/types.ts -------------------------------------------------------------------------------- /src/components/report-modal-base.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/report-modal-base.tsx -------------------------------------------------------------------------------- /src/components/report-profile-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/report-profile-modal.tsx -------------------------------------------------------------------------------- /src/components/report-publication-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/report-publication-modal.tsx -------------------------------------------------------------------------------- /src/components/responsive-overlay/index.ts: -------------------------------------------------------------------------------- 1 | export { default as ResponsiveOverlay } from './reset-mini-nav-on-resize.tsx'; 2 | -------------------------------------------------------------------------------- /src/components/scrollbar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/scrollbar/index.ts -------------------------------------------------------------------------------- /src/components/scrollbar/scrollbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/scrollbar/scrollbar.tsx -------------------------------------------------------------------------------- /src/components/scrollbar/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/scrollbar/styles.ts -------------------------------------------------------------------------------- /src/components/scrollbar/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/scrollbar/types.ts -------------------------------------------------------------------------------- /src/components/search-not-found/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './search-not-found'; 2 | -------------------------------------------------------------------------------- /src/components/search-not-found/search-not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/search-not-found/search-not-found.tsx -------------------------------------------------------------------------------- /src/components/settings/context/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/settings/context/index.ts -------------------------------------------------------------------------------- /src/components/settings/context/settings-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/settings/context/settings-context.tsx -------------------------------------------------------------------------------- /src/components/settings/context/settings-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/settings/context/settings-provider.tsx -------------------------------------------------------------------------------- /src/components/settings/drawer/base-option.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/settings/drawer/base-option.tsx -------------------------------------------------------------------------------- /src/components/settings/drawer/fullscreen-option.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/settings/drawer/fullscreen-option.tsx -------------------------------------------------------------------------------- /src/components/settings/drawer/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './settings-drawer'; 2 | -------------------------------------------------------------------------------- /src/components/settings/drawer/layout-options.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/settings/drawer/layout-options.tsx -------------------------------------------------------------------------------- /src/components/settings/drawer/presets-options.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/settings/drawer/presets-options.tsx -------------------------------------------------------------------------------- /src/components/settings/drawer/settings-drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/settings/drawer/settings-drawer.tsx -------------------------------------------------------------------------------- /src/components/settings/drawer/stretch-options.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/settings/drawer/stretch-options.tsx -------------------------------------------------------------------------------- /src/components/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/settings/index.ts -------------------------------------------------------------------------------- /src/components/settings/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/settings/types.ts -------------------------------------------------------------------------------- /src/components/share-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/share-button.tsx -------------------------------------------------------------------------------- /src/components/should-login/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/should-login/index.ts -------------------------------------------------------------------------------- /src/components/should-login/should-login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/should-login/should-login.tsx -------------------------------------------------------------------------------- /src/components/should-login/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/should-login/types.ts -------------------------------------------------------------------------------- /src/components/should-login/withAuth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/should-login/withAuth.tsx -------------------------------------------------------------------------------- /src/components/snackbar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/snackbar/index.ts -------------------------------------------------------------------------------- /src/components/snackbar/snackbar-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/snackbar/snackbar-provider.tsx -------------------------------------------------------------------------------- /src/components/snackbar/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/snackbar/styles.ts -------------------------------------------------------------------------------- /src/components/sponsored-access-button/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/sponsored-access-button/index.ts -------------------------------------------------------------------------------- /src/components/sponsored-access-button/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/sponsored-access-button/types.ts -------------------------------------------------------------------------------- /src/components/subscribe-profile-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/subscribe-profile-modal.tsx -------------------------------------------------------------------------------- /src/components/subscribe-to-unlock-card/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/subscribe-to-unlock-card/index.ts -------------------------------------------------------------------------------- /src/components/subscribe-to-unlock-card/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/subscribe-to-unlock-card/types.ts -------------------------------------------------------------------------------- /src/components/svg-color/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './svg-color'; 2 | -------------------------------------------------------------------------------- /src/components/svg-color/svg-color.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/svg-color/svg-color.tsx -------------------------------------------------------------------------------- /src/components/table/__test__/table-empty-rows.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/table/__test__/table-empty-rows.test.tsx -------------------------------------------------------------------------------- /src/components/table/__test__/table-no-data.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/table/__test__/table-no-data.test.tsx -------------------------------------------------------------------------------- /src/components/table/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/table/index.ts -------------------------------------------------------------------------------- /src/components/table/table-empty-rows.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/table/table-empty-rows.tsx -------------------------------------------------------------------------------- /src/components/table/table-head-custom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/table/table-head-custom.tsx -------------------------------------------------------------------------------- /src/components/table/table-no-data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/table/table-no-data.tsx -------------------------------------------------------------------------------- /src/components/table/table-pagination-custom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/table/table-pagination-custom.tsx -------------------------------------------------------------------------------- /src/components/table/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/table/types.ts -------------------------------------------------------------------------------- /src/components/table/use-table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/table/use-table.ts -------------------------------------------------------------------------------- /src/components/table/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/table/utils.ts -------------------------------------------------------------------------------- /src/components/text-max-line/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/text-max-line/index.ts -------------------------------------------------------------------------------- /src/components/text-max-line/text-max-line.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/text-max-line/text-max-line.tsx -------------------------------------------------------------------------------- /src/components/text-max-line/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/text-max-line/types.ts -------------------------------------------------------------------------------- /src/components/text-max-line/use-typography.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/text-max-line/use-typography.ts -------------------------------------------------------------------------------- /src/components/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/types.ts -------------------------------------------------------------------------------- /src/components/update-modal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/update-modal/index.ts -------------------------------------------------------------------------------- /src/components/update-modal/modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/update-modal/modal.tsx -------------------------------------------------------------------------------- /src/components/upload/errors-rejection-files.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/upload/errors-rejection-files.tsx -------------------------------------------------------------------------------- /src/components/upload/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/upload/index.ts -------------------------------------------------------------------------------- /src/components/upload/preview-multi-file.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/upload/preview-multi-file.tsx -------------------------------------------------------------------------------- /src/components/upload/preview-single-file-custom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/upload/preview-single-file-custom.tsx -------------------------------------------------------------------------------- /src/components/upload/preview-single-file.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/upload/preview-single-file.tsx -------------------------------------------------------------------------------- /src/components/upload/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/upload/types.ts -------------------------------------------------------------------------------- /src/components/upload/upload-avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/upload/upload-avatar.tsx -------------------------------------------------------------------------------- /src/components/upload/upload-box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/upload/upload-box.tsx -------------------------------------------------------------------------------- /src/components/upload/upload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/upload/upload.tsx -------------------------------------------------------------------------------- /src/components/user-item/BadgeVerified.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/user-item/BadgeVerified.tsx -------------------------------------------------------------------------------- /src/components/user-item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/user-item/index.tsx -------------------------------------------------------------------------------- /src/components/user-item/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/user-item/types.ts -------------------------------------------------------------------------------- /src/components/video-player/components/button/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/video-player/components/button/index.ts -------------------------------------------------------------------------------- /src/components/video-player/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './video-player.tsx'; 2 | -------------------------------------------------------------------------------- /src/components/video-player/video-player.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/video-player/video-player.tsx -------------------------------------------------------------------------------- /src/components/watchit-loader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/components/watchit-loader/index.tsx -------------------------------------------------------------------------------- /src/config-global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/config-global.ts -------------------------------------------------------------------------------- /src/config/abi/AccessAgg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/config/abi/AccessAgg.json -------------------------------------------------------------------------------- /src/config/abi/AccessManager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/config/abi/AccessManager.json -------------------------------------------------------------------------------- /src/config/abi/AccessWorkflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/config/abi/AccessWorkflow.json -------------------------------------------------------------------------------- /src/config/abi/AssetOwnership.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/config/abi/AssetOwnership.json -------------------------------------------------------------------------------- /src/config/abi/CampaignRegistry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/config/abi/CampaignRegistry.json -------------------------------------------------------------------------------- /src/config/abi/CampaignSubscriptionTpl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/config/abi/CampaignSubscriptionTpl.json -------------------------------------------------------------------------------- /src/config/abi/LedgerVault.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/config/abi/LedgerVault.json -------------------------------------------------------------------------------- /src/config/abi/MMC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/config/abi/MMC.json -------------------------------------------------------------------------------- /src/config/abi/PoliciesAgg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/config/abi/PoliciesAgg.json -------------------------------------------------------------------------------- /src/config/abi/RightsPolicyAuthorizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/config/abi/RightsPolicyAuthorizer.json -------------------------------------------------------------------------------- /src/config/abi/SubscriptionPolicy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/config/abi/SubscriptionPolicy.json -------------------------------------------------------------------------------- /src/contexts/api/apiContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/contexts/api/apiContext.tsx -------------------------------------------------------------------------------- /src/contexts/api/apiProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/contexts/api/apiProvider.tsx -------------------------------------------------------------------------------- /src/contexts/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/contexts/api/index.ts -------------------------------------------------------------------------------- /src/contexts/auth/authContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/contexts/auth/authContext.tsx -------------------------------------------------------------------------------- /src/contexts/auth/authProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/contexts/auth/authProvider.tsx -------------------------------------------------------------------------------- /src/contexts/auth/config/web3AuthInstance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/contexts/auth/config/web3AuthInstance.ts -------------------------------------------------------------------------------- /src/contexts/auth/config/web3AuthSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/contexts/auth/config/web3AuthSettings.ts -------------------------------------------------------------------------------- /src/contexts/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/contexts/auth/index.ts -------------------------------------------------------------------------------- /src/contexts/auth/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/contexts/auth/types.ts -------------------------------------------------------------------------------- /src/contexts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/contexts/index.ts -------------------------------------------------------------------------------- /src/fixes/bip39.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/fixes/bip39.js -------------------------------------------------------------------------------- /src/fixes/enc-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/fixes/enc-utils.js -------------------------------------------------------------------------------- /src/fixes/english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/fixes/english.txt -------------------------------------------------------------------------------- /src/graphql/generated/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/generated/graphql.ts -------------------------------------------------------------------------------- /src/graphql/generated/hooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/generated/hooks.tsx -------------------------------------------------------------------------------- /src/graphql/mutations/bookmarks/toggleBookmark.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/mutations/bookmarks/toggleBookmark.gql -------------------------------------------------------------------------------- /src/graphql/mutations/comments/createComment.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/mutations/comments/createComment.gql -------------------------------------------------------------------------------- /src/graphql/mutations/comments/hideComment.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/mutations/comments/hideComment.gql -------------------------------------------------------------------------------- /src/graphql/mutations/comments/updateComment.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/mutations/comments/updateComment.gql -------------------------------------------------------------------------------- /src/graphql/mutations/follows/toggleFollow.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/mutations/follows/toggleFollow.gql -------------------------------------------------------------------------------- /src/graphql/mutations/likes/toggleLike.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/mutations/likes/toggleLike.gql -------------------------------------------------------------------------------- /src/graphql/mutations/logs/claimPerk.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/mutations/logs/claimPerk.gql -------------------------------------------------------------------------------- /src/graphql/mutations/perks/logAnonymousEvent.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/mutations/perks/logAnonymousEvent.gql -------------------------------------------------------------------------------- /src/graphql/mutations/perks/logEvent.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/mutations/perks/logEvent.gql -------------------------------------------------------------------------------- /src/graphql/mutations/posts/createPost.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/mutations/posts/createPost.gql -------------------------------------------------------------------------------- /src/graphql/mutations/posts/hidePost.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/mutations/posts/hidePost.gql -------------------------------------------------------------------------------- /src/graphql/mutations/posts/incrementPostView.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/mutations/posts/incrementPostView.gql -------------------------------------------------------------------------------- /src/graphql/mutations/posts/updatePost.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/mutations/posts/updatePost.gql -------------------------------------------------------------------------------- /src/graphql/mutations/tips/createTip.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/mutations/tips/createTip.gql -------------------------------------------------------------------------------- /src/graphql/mutations/users/createUser.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/mutations/users/createUser.gql -------------------------------------------------------------------------------- /src/graphql/mutations/users/updateUser.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/mutations/users/updateUser.gql -------------------------------------------------------------------------------- /src/graphql/queries/bookmarks/getIsBookmarked.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/queries/bookmarks/getIsBookmarked.gql -------------------------------------------------------------------------------- /src/graphql/queries/comments/getCommentsByPost.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/queries/comments/getCommentsByPost.gql -------------------------------------------------------------------------------- /src/graphql/queries/comments/getRepliesByComment.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/queries/comments/getRepliesByComment.gql -------------------------------------------------------------------------------- /src/graphql/queries/feeds/getActiveUsers.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/queries/feeds/getActiveUsers.gql -------------------------------------------------------------------------------- /src/graphql/queries/feeds/getAllPosts.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/queries/feeds/getAllPosts.gql -------------------------------------------------------------------------------- /src/graphql/queries/feeds/getPopularPosts.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/queries/feeds/getPopularPosts.gql -------------------------------------------------------------------------------- /src/graphql/queries/feeds/getPopularUsers.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/queries/feeds/getPopularUsers.gql -------------------------------------------------------------------------------- /src/graphql/queries/feeds/getRecentPosts.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/queries/feeds/getRecentPosts.gql -------------------------------------------------------------------------------- /src/graphql/queries/feeds/getRecentUsers.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/queries/feeds/getRecentUsers.gql -------------------------------------------------------------------------------- /src/graphql/queries/follows/getIsFollowing.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/queries/follows/getIsFollowing.gql -------------------------------------------------------------------------------- /src/graphql/queries/leaderboard/getLeaderboard.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/queries/leaderboard/getLeaderboard.gql -------------------------------------------------------------------------------- /src/graphql/queries/likes/getIsLiked.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/queries/likes/getIsLiked.gql -------------------------------------------------------------------------------- /src/graphql/queries/logs/getPostViews.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/queries/logs/getPostViews.gql -------------------------------------------------------------------------------- /src/graphql/queries/logs/getProfileViews.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/queries/logs/getProfileViews.gql -------------------------------------------------------------------------------- /src/graphql/queries/logs/getTargetEvents.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/queries/logs/getTargetEvents.gql -------------------------------------------------------------------------------- /src/graphql/queries/logs/getUserEvents.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/queries/logs/getUserEvents.gql -------------------------------------------------------------------------------- /src/graphql/queries/perks/getHasPerk.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/queries/perks/getHasPerk.gql -------------------------------------------------------------------------------- /src/graphql/queries/perks/getPerks.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/queries/perks/getPerks.gql -------------------------------------------------------------------------------- /src/graphql/queries/perks/getUnlockedPerks.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/queries/perks/getUnlockedPerks.gql -------------------------------------------------------------------------------- /src/graphql/queries/posts/getPost.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/queries/posts/getPost.gql -------------------------------------------------------------------------------- /src/graphql/queries/posts/getPostByAuthor.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/queries/posts/getPostByAuthor.gql -------------------------------------------------------------------------------- /src/graphql/queries/posts/getPosts.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/queries/posts/getPosts.gql -------------------------------------------------------------------------------- /src/graphql/queries/ranks/getAchievements.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/queries/ranks/getAchievements.gql -------------------------------------------------------------------------------- /src/graphql/queries/ranks/getRanksCatalog.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/queries/ranks/getRanksCatalog.gql -------------------------------------------------------------------------------- /src/graphql/queries/ranks/getUserRanks.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/queries/ranks/getUserRanks.gql -------------------------------------------------------------------------------- /src/graphql/queries/tips/getTipsByBakerForPost.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/queries/tips/getTipsByBakerForPost.gql -------------------------------------------------------------------------------- /src/graphql/queries/users/getUser.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/queries/users/getUser.gql -------------------------------------------------------------------------------- /src/graphql/queries/users/getUserBookmarks.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/queries/users/getUserBookmarks.gql -------------------------------------------------------------------------------- /src/graphql/queries/users/getUserFollowers.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/queries/users/getUserFollowers.gql -------------------------------------------------------------------------------- /src/graphql/queries/users/getUserFollowing.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/queries/users/getUserFollowing.gql -------------------------------------------------------------------------------- /src/graphql/queries/users/getUserXpHistory.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/queries/users/getUserXpHistory.gql -------------------------------------------------------------------------------- /src/graphql/queries/users/getUsers.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/graphql/queries/users/getUsers.gql -------------------------------------------------------------------------------- /src/hooks/components/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/components/types.ts -------------------------------------------------------------------------------- /src/hooks/components/use-carousel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/components/use-carousel.ts -------------------------------------------------------------------------------- /src/hooks/components/use-chunked-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/components/use-chunked-data.ts -------------------------------------------------------------------------------- /src/hooks/components/use-item-per-slide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/components/use-item-per-slide.ts -------------------------------------------------------------------------------- /src/hooks/components/use-rtl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/components/use-rtl.ts -------------------------------------------------------------------------------- /src/hooks/protocol/CONSTANTS.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/hooks/protocol/DEFAULTS.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/DEFAULTS.tsx -------------------------------------------------------------------------------- /src/hooks/protocol/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/types.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-authorize-policy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-authorize-policy.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-campaign-pause.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-campaign-pause.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-campaign-paused.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-campaign-paused.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-campaign-remove-funds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-campaign-remove-funds.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-campaign-unpause.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-campaign-unpause.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-configure-campaign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-configure-campaign.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-create-campaign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-create-campaign.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-deposit-metamask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-deposit-metamask.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-deposit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-deposit.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-get-active-licenses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-get-active-licenses.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-get-asset-owner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-get-asset-owner.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-get-balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-get-balance.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-get-campaign-funds-allocation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-get-campaign-funds-allocation.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-get-campaign-funds-balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-get-campaign-funds-balance.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-get-campaign-is-active.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-get-campaign-is-active.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-get-campaign-is-ready.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-get-campaign-is-ready.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-get-campaign-quota-counter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-get-campaign-quota-counter.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-get-campaign-quota-limit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-get-campaign-quota-limit.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-get-campaign-total-usage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-get-campaign-total-usage.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-get-campaign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-get-campaign.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-get-campaigns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-get-campaigns.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-get-mmc-contract-balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-get-mmc-contract-balance.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-get-policies-terms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-get-policies-terms.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-get-policy-attestation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-get-policy-attestation.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-get-policy-terms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-get-policy-terms.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-get-smart-wallet-transactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-get-smart-wallet-transactions.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-get-subscription-campaign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-get-subscription-campaign.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-get-subtitles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-get-subtitles.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-get-vault-balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-get-vault-balance.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-has-access.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-has-access.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-has-role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-has-role.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-is-policy-authorized.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-is-policy-authorized.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-is-verified.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-is-verified.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-metadata.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-register-asset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-register-asset.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-sponsored-access-agreement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-sponsored-access-agreement.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-subscribe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-subscribe.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-transfer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-transfer.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-withdraw-metamask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-withdraw-metamask.ts -------------------------------------------------------------------------------- /src/hooks/protocol/use-withdraw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/protocol/use-withdraw.ts -------------------------------------------------------------------------------- /src/hooks/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/types.ts -------------------------------------------------------------------------------- /src/hooks/use-account-session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/use-account-session.ts -------------------------------------------------------------------------------- /src/hooks/use-auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/use-auth.ts -------------------------------------------------------------------------------- /src/hooks/use-bookmark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/use-bookmark.ts -------------------------------------------------------------------------------- /src/hooks/use-boolean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/use-boolean.ts -------------------------------------------------------------------------------- /src/hooks/use-copy-to-clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/use-copy-to-clipboard.ts -------------------------------------------------------------------------------- /src/hooks/use-countdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/use-countdown.ts -------------------------------------------------------------------------------- /src/hooks/use-debounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/use-debounce.ts -------------------------------------------------------------------------------- /src/hooks/use-event-listener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/use-event-listener.ts -------------------------------------------------------------------------------- /src/hooks/use-local-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/use-local-storage.ts -------------------------------------------------------------------------------- /src/hooks/use-metamask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/use-metamask.ts -------------------------------------------------------------------------------- /src/hooks/use-notification-payload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/use-notification-payload.ts -------------------------------------------------------------------------------- /src/hooks/use-notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/use-notifications.ts -------------------------------------------------------------------------------- /src/hooks/use-off-set-top.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/use-off-set-top.ts -------------------------------------------------------------------------------- /src/hooks/use-referrals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/use-referrals.ts -------------------------------------------------------------------------------- /src/hooks/use-responsive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/use-responsive.ts -------------------------------------------------------------------------------- /src/hooks/use-scroll-to-top.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/use-scroll-to-top.ts -------------------------------------------------------------------------------- /src/hooks/use-stale-while-loading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/use-stale-while-loading.ts -------------------------------------------------------------------------------- /src/hooks/use-submit-asset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/use-submit-asset.ts -------------------------------------------------------------------------------- /src/hooks/use-toggle-bookmark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/use-toggle-bookmark.ts -------------------------------------------------------------------------------- /src/hooks/use-transaction-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/use-transaction-data.ts -------------------------------------------------------------------------------- /src/hooks/use-web3-auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/hooks/use-web3-auth.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/init.js -------------------------------------------------------------------------------- /src/layouts/_common/account-popover/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/layouts/_common/account-popover/index.tsx -------------------------------------------------------------------------------- /src/layouts/_common/header-balance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/layouts/_common/header-balance.tsx -------------------------------------------------------------------------------- /src/layouts/_common/header-mmc-balance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/layouts/_common/header-mmc-balance.tsx -------------------------------------------------------------------------------- /src/layouts/_common/header-shadow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/layouts/_common/header-shadow.tsx -------------------------------------------------------------------------------- /src/layouts/_common/header-simple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/layouts/_common/header-simple.tsx -------------------------------------------------------------------------------- /src/layouts/_common/header-xp-balance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/layouts/_common/header-xp-balance.tsx -------------------------------------------------------------------------------- /src/layouts/_common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/layouts/_common/index.ts -------------------------------------------------------------------------------- /src/layouts/_common/nav-toggle-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/layouts/_common/nav-toggle-button.tsx -------------------------------------------------------------------------------- /src/layouts/_common/notifications-popover/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './notifications-popover'; 2 | -------------------------------------------------------------------------------- /src/layouts/_common/searchbar/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './searchbar'; 2 | -------------------------------------------------------------------------------- /src/layouts/_common/searchbar/result-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/layouts/_common/searchbar/result-item.tsx -------------------------------------------------------------------------------- /src/layouts/_common/searchbar/searchbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/layouts/_common/searchbar/searchbar.tsx -------------------------------------------------------------------------------- /src/layouts/_common/searchbar/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/layouts/_common/searchbar/types.ts -------------------------------------------------------------------------------- /src/layouts/_common/searchbar/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/layouts/_common/searchbar/utils.ts -------------------------------------------------------------------------------- /src/layouts/can-view-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/layouts/can-view-section.tsx -------------------------------------------------------------------------------- /src/layouts/compact/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './layout'; 2 | -------------------------------------------------------------------------------- /src/layouts/compact/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/layouts/compact/layout.tsx -------------------------------------------------------------------------------- /src/layouts/config-layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/layouts/config-layout.ts -------------------------------------------------------------------------------- /src/layouts/dashboard/config-navigation-mini.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/layouts/dashboard/config-navigation-mini.tsx -------------------------------------------------------------------------------- /src/layouts/dashboard/config-navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/layouts/dashboard/config-navigation.tsx -------------------------------------------------------------------------------- /src/layouts/dashboard/header-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/layouts/dashboard/header-content.tsx -------------------------------------------------------------------------------- /src/layouts/dashboard/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/layouts/dashboard/header.tsx -------------------------------------------------------------------------------- /src/layouts/dashboard/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './layout'; 2 | -------------------------------------------------------------------------------- /src/layouts/dashboard/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/layouts/dashboard/layout.tsx -------------------------------------------------------------------------------- /src/layouts/dashboard/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/layouts/dashboard/main.tsx -------------------------------------------------------------------------------- /src/layouts/dashboard/nav-mini.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/layouts/dashboard/nav-mini.tsx -------------------------------------------------------------------------------- /src/layouts/dashboard/nav-vertical-mini.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/layouts/dashboard/nav-vertical-mini.tsx -------------------------------------------------------------------------------- /src/layouts/dashboard/nav-vertical.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/layouts/dashboard/nav-vertical.tsx -------------------------------------------------------------------------------- /src/layouts/dashboard/support-box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/layouts/dashboard/support-box.tsx -------------------------------------------------------------------------------- /src/layouts/dashboard/terms-and-conditions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/layouts/dashboard/terms-and-conditions.tsx -------------------------------------------------------------------------------- /src/layouts/dashboard/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/layouts/dashboard/types.ts -------------------------------------------------------------------------------- /src/libs/apollo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/libs/apollo.ts -------------------------------------------------------------------------------- /src/libs/components/carousel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/libs/components/carousel/index.ts -------------------------------------------------------------------------------- /src/libs/finance-graphs/groupedTransactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/libs/finance-graphs/groupedTransactions.ts -------------------------------------------------------------------------------- /src/libs/ipfs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/libs/ipfs.ts -------------------------------------------------------------------------------- /src/libs/notifications/__test__/errors.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/libs/notifications/__test__/errors.test.ts -------------------------------------------------------------------------------- /src/libs/notifications/__test__/info.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/libs/notifications/__test__/info.test.ts -------------------------------------------------------------------------------- /src/libs/notifications/__test__/success.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/libs/notifications/__test__/success.test.ts -------------------------------------------------------------------------------- /src/libs/notifications/__test__/warning.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/libs/notifications/__test__/warning.test.ts -------------------------------------------------------------------------------- /src/libs/notifications/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/libs/notifications/errors.ts -------------------------------------------------------------------------------- /src/libs/notifications/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/libs/notifications/info.ts -------------------------------------------------------------------------------- /src/libs/notifications/internal-notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/libs/notifications/internal-notifications.ts -------------------------------------------------------------------------------- /src/libs/notifications/success.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/libs/notifications/success.ts -------------------------------------------------------------------------------- /src/libs/notifications/warnings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/libs/notifications/warnings.ts -------------------------------------------------------------------------------- /src/libs/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/libs/profile.ts -------------------------------------------------------------------------------- /src/libs/storage-available.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/libs/storage-available.ts -------------------------------------------------------------------------------- /src/libs/subscribe-notifications-supabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/libs/subscribe-notifications-supabase.ts -------------------------------------------------------------------------------- /src/libs/supabase-actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/libs/supabase-actions.ts -------------------------------------------------------------------------------- /src/libs/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/libs/types.ts -------------------------------------------------------------------------------- /src/locales/config-lang.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/locales/config-lang.ts -------------------------------------------------------------------------------- /src/locales/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/locales/i18n.ts -------------------------------------------------------------------------------- /src/locales/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/locales/index.ts -------------------------------------------------------------------------------- /src/locales/langs/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/locales/langs/ar.json -------------------------------------------------------------------------------- /src/locales/langs/cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/locales/langs/cn.json -------------------------------------------------------------------------------- /src/locales/langs/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/locales/langs/en.json -------------------------------------------------------------------------------- /src/locales/langs/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/locales/langs/fr.json -------------------------------------------------------------------------------- /src/locales/langs/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/locales/langs/vi.json -------------------------------------------------------------------------------- /src/locales/use-locales.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/locales/use-locales.ts -------------------------------------------------------------------------------- /src/pages/403.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/pages/403.tsx -------------------------------------------------------------------------------- /src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/pages/404.tsx -------------------------------------------------------------------------------- /src/pages/500.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/pages/500.tsx -------------------------------------------------------------------------------- /src/pages/achievements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/pages/achievements.tsx -------------------------------------------------------------------------------- /src/pages/analytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/pages/analytics.tsx -------------------------------------------------------------------------------- /src/pages/collaborations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/pages/collaborations.tsx -------------------------------------------------------------------------------- /src/pages/community.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/pages/community.tsx -------------------------------------------------------------------------------- /src/pages/events.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/pages/events.tsx -------------------------------------------------------------------------------- /src/pages/explore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/pages/explore.tsx -------------------------------------------------------------------------------- /src/pages/finance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/pages/finance.tsx -------------------------------------------------------------------------------- /src/pages/governance/list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/pages/governance/list.tsx -------------------------------------------------------------------------------- /src/pages/marketing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/pages/marketing.tsx -------------------------------------------------------------------------------- /src/pages/marketing/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/pages/marketing/index.tsx -------------------------------------------------------------------------------- /src/pages/marketplace.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/pages/marketplace.tsx -------------------------------------------------------------------------------- /src/pages/ownership.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/pages/ownership.tsx -------------------------------------------------------------------------------- /src/pages/publication/details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/pages/publication/details.tsx -------------------------------------------------------------------------------- /src/pages/studio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/pages/studio.tsx -------------------------------------------------------------------------------- /src/pages/user/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/pages/user/profile.tsx -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/redux/address/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/redux/address/index.ts -------------------------------------------------------------------------------- /src/redux/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/redux/auth/index.ts -------------------------------------------------------------------------------- /src/redux/blockchain-events/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/redux/blockchain-events/index.ts -------------------------------------------------------------------------------- /src/redux/drawer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/redux/drawer/index.ts -------------------------------------------------------------------------------- /src/redux/minibar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/redux/minibar/index.ts -------------------------------------------------------------------------------- /src/redux/notifications/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/redux/notifications/index.ts -------------------------------------------------------------------------------- /src/redux/recent-transactions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/redux/recent-transactions/index.ts -------------------------------------------------------------------------------- /src/redux/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/redux/reducer.ts -------------------------------------------------------------------------------- /src/redux/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/redux/store.ts -------------------------------------------------------------------------------- /src/redux/transactions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/redux/transactions/index.ts -------------------------------------------------------------------------------- /src/redux/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/redux/types.ts -------------------------------------------------------------------------------- /src/routes/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/routes/components/index.ts -------------------------------------------------------------------------------- /src/routes/components/router-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/routes/components/router-link.tsx -------------------------------------------------------------------------------- /src/routes/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/routes/hooks/index.ts -------------------------------------------------------------------------------- /src/routes/hooks/use-active-link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/routes/hooks/use-active-link.ts -------------------------------------------------------------------------------- /src/routes/hooks/use-params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/routes/hooks/use-params.ts -------------------------------------------------------------------------------- /src/routes/hooks/use-pathname.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/routes/hooks/use-pathname.ts -------------------------------------------------------------------------------- /src/routes/hooks/use-router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/routes/hooks/use-router.ts -------------------------------------------------------------------------------- /src/routes/hooks/use-search-params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/routes/hooks/use-search-params.ts -------------------------------------------------------------------------------- /src/routes/paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/routes/paths.ts -------------------------------------------------------------------------------- /src/routes/sections/dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/routes/sections/dashboard.tsx -------------------------------------------------------------------------------- /src/routes/sections/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/routes/sections/index.tsx -------------------------------------------------------------------------------- /src/sections/achievements/components/daily-rewards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/achievements/components/daily-rewards.tsx -------------------------------------------------------------------------------- /src/sections/achievements/components/mini-game-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/achievements/components/mini-game-card.tsx -------------------------------------------------------------------------------- /src/sections/achievements/components/perk-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/achievements/components/perk-item.tsx -------------------------------------------------------------------------------- /src/sections/achievements/components/perks-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/achievements/components/perks-list.tsx -------------------------------------------------------------------------------- /src/sections/achievements/components/user-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/achievements/components/user-sidebar.tsx -------------------------------------------------------------------------------- /src/sections/achievements/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/achievements/index.tsx -------------------------------------------------------------------------------- /src/sections/achievements/views/achievements-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/achievements/views/achievements-view.tsx -------------------------------------------------------------------------------- /src/sections/blank/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/blank/index.tsx -------------------------------------------------------------------------------- /src/sections/blank/views/blank-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/blank/views/blank-view.tsx -------------------------------------------------------------------------------- /src/sections/coming-soon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/coming-soon/index.tsx -------------------------------------------------------------------------------- /src/sections/coming-soon/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/coming-soon/types.ts -------------------------------------------------------------------------------- /src/sections/coming-soon/views/coming-soon-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/coming-soon/views/coming-soon-view.tsx -------------------------------------------------------------------------------- /src/sections/error/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/error/index.ts -------------------------------------------------------------------------------- /src/sections/error/views/error-403-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/error/views/error-403-view.tsx -------------------------------------------------------------------------------- /src/sections/error/views/error-404-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/error/views/error-404-view.tsx -------------------------------------------------------------------------------- /src/sections/error/views/error-500-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/error/views/error-500-view.tsx -------------------------------------------------------------------------------- /src/sections/explore/components/explore-bookmarks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/explore/components/explore-bookmarks.tsx -------------------------------------------------------------------------------- /src/sections/explore/components/explore-creators.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/explore/components/explore-creators.tsx -------------------------------------------------------------------------------- /src/sections/explore/components/explore-loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/explore/components/explore-loader.tsx -------------------------------------------------------------------------------- /src/sections/explore/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/explore/index.tsx -------------------------------------------------------------------------------- /src/sections/explore/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/explore/types.ts -------------------------------------------------------------------------------- /src/sections/explore/views/explore-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/explore/views/explore-view.tsx -------------------------------------------------------------------------------- /src/sections/finance/CONSTANTS.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/finance/CONSTANTS.tsx -------------------------------------------------------------------------------- /src/sections/finance/components/CONSTANTS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/finance/components/CONSTANTS.ts -------------------------------------------------------------------------------- /src/sections/finance/components/finance-box-row.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/finance/components/finance-box-row.tsx -------------------------------------------------------------------------------- /src/sections/finance/components/finance-contacts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/finance/components/finance-contacts.tsx -------------------------------------------------------------------------------- /src/sections/finance/components/finance-deposit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/finance/components/finance-deposit.tsx -------------------------------------------------------------------------------- /src/sections/finance/components/finance-earn-tokens.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/finance/components/finance-earn-tokens.tsx -------------------------------------------------------------------------------- /src/sections/finance/components/finance-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/finance/components/finance-modal.tsx -------------------------------------------------------------------------------- /src/sections/finance/components/finance-tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/finance/components/finance-tabs.tsx -------------------------------------------------------------------------------- /src/sections/finance/components/finance-withdraw.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/finance/components/finance-withdraw.tsx -------------------------------------------------------------------------------- /src/sections/finance/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/finance/index.tsx -------------------------------------------------------------------------------- /src/sections/finance/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/finance/types.ts -------------------------------------------------------------------------------- /src/sections/finance/views/finance-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/finance/views/finance-view.tsx -------------------------------------------------------------------------------- /src/sections/marketing/CONSTANTS.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/marketing/CONSTANTS.tsx -------------------------------------------------------------------------------- /src/sections/marketing/components/campaign-create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/marketing/components/campaign-create.tsx -------------------------------------------------------------------------------- /src/sections/marketing/components/campaign-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/marketing/components/campaign-table.tsx -------------------------------------------------------------------------------- /src/sections/marketing/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/marketing/index.tsx -------------------------------------------------------------------------------- /src/sections/marketing/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/marketing/types.ts -------------------------------------------------------------------------------- /src/sections/marketing/views/marketing-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/marketing/views/marketing-view.tsx -------------------------------------------------------------------------------- /src/sections/ownership/components/ownership-process.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/ownership/components/ownership-process.tsx -------------------------------------------------------------------------------- /src/sections/ownership/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/ownership/index.tsx -------------------------------------------------------------------------------- /src/sections/ownership/views/ownership-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/ownership/views/ownership-view.tsx -------------------------------------------------------------------------------- /src/sections/publication/CONSTANTS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/publication/CONSTANTS.ts -------------------------------------------------------------------------------- /src/sections/publication/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/publication/index.ts -------------------------------------------------------------------------------- /src/sections/publication/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/publication/types.ts -------------------------------------------------------------------------------- /src/sections/user/CONSTANTS.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/user/CONSTANTS.tsx -------------------------------------------------------------------------------- /src/sections/user/components/profile-cover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/user/components/profile-cover.tsx -------------------------------------------------------------------------------- /src/sections/user/components/profile-followers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/user/components/profile-followers.tsx -------------------------------------------------------------------------------- /src/sections/user/components/profile-following.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/user/components/profile-following.tsx -------------------------------------------------------------------------------- /src/sections/user/components/profile-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/user/components/profile-header.tsx -------------------------------------------------------------------------------- /src/sections/user/components/profile-home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/user/components/profile-home.tsx -------------------------------------------------------------------------------- /src/sections/user/components/profile-join.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/user/components/profile-join.tsx -------------------------------------------------------------------------------- /src/sections/user/components/profile-referrals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/user/components/profile-referrals.tsx -------------------------------------------------------------------------------- /src/sections/user/components/profile-report.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/user/components/profile-report.tsx -------------------------------------------------------------------------------- /src/sections/user/components/profile-right-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/user/components/profile-right-sidebar.tsx -------------------------------------------------------------------------------- /src/sections/user/components/profile-share.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/user/components/profile-share.tsx -------------------------------------------------------------------------------- /src/sections/user/components/profile-toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/user/components/profile-toolbar.tsx -------------------------------------------------------------------------------- /src/sections/user/components/profile-transfer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/user/components/profile-transfer.tsx -------------------------------------------------------------------------------- /src/sections/user/components/profile-update-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/user/components/profile-update-button.tsx -------------------------------------------------------------------------------- /src/sections/user/components/profile-user-info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/user/components/profile-user-info.tsx -------------------------------------------------------------------------------- /src/sections/user/components/profile-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/user/components/profile-wrapper.tsx -------------------------------------------------------------------------------- /src/sections/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/user/index.ts -------------------------------------------------------------------------------- /src/sections/user/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/user/types.ts -------------------------------------------------------------------------------- /src/sections/user/views/user-profile-view.skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/user/views/user-profile-view.skeleton.tsx -------------------------------------------------------------------------------- /src/sections/user/views/user-profile-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/sections/user/views/user-profile-view.tsx -------------------------------------------------------------------------------- /src/theme/css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/css.ts -------------------------------------------------------------------------------- /src/theme/custom-shadows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/custom-shadows.ts -------------------------------------------------------------------------------- /src/theme/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/index.tsx -------------------------------------------------------------------------------- /src/theme/options/contrast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/options/contrast.ts -------------------------------------------------------------------------------- /src/theme/options/dark-mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/options/dark-mode.ts -------------------------------------------------------------------------------- /src/theme/options/presets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/options/presets.ts -------------------------------------------------------------------------------- /src/theme/options/right-to-left.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/options/right-to-left.tsx -------------------------------------------------------------------------------- /src/theme/options/rtl-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/options/rtl-utils.ts -------------------------------------------------------------------------------- /src/theme/overrides/components/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/accordion.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/alert.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/appbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/appbar.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/autocomplete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/autocomplete.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/avatar.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/backdrop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/backdrop.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/badge.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/breadcrumbs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/breadcrumbs.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/button-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/button-group.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/button.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/card.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/checkbox.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/chip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/chip.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/css-baseline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/css-baseline.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/data-grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/data-grid.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/date-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/date-picker.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/dialog.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/drawer.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/fab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/fab.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/icons.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/list.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/loading-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/loading-button.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/menu.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/pagination.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/paper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/paper.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/popover.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/progress.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/radio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/radio.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/rating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/rating.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/select.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/skeleton.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/slider.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/stepper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/stepper.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/svg-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/svg-icon.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/switch.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/table.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/tabs.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/textfield.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/textfield.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/timeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/timeline.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/toggle-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/toggle-button.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/tooltip.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/tree-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/tree-view.tsx -------------------------------------------------------------------------------- /src/theme/overrides/components/typography.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/components/typography.tsx -------------------------------------------------------------------------------- /src/theme/overrides/default-props.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/default-props.tsx -------------------------------------------------------------------------------- /src/theme/overrides/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/overrides/index.ts -------------------------------------------------------------------------------- /src/theme/palette.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/palette.ts -------------------------------------------------------------------------------- /src/theme/shadows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/shadows.ts -------------------------------------------------------------------------------- /src/theme/typography.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/theme/typography.ts -------------------------------------------------------------------------------- /src/types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/types/types.ts -------------------------------------------------------------------------------- /src/utils/__test__/__snapshots__/colors.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/utils/__test__/__snapshots__/colors.test.ts.snap -------------------------------------------------------------------------------- /src/utils/__test__/__snapshots__/comment.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/utils/__test__/__snapshots__/comment.test.ts.snap -------------------------------------------------------------------------------- /src/utils/__test__/change-case.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/utils/__test__/change-case.test.ts -------------------------------------------------------------------------------- /src/utils/__test__/colors.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/utils/__test__/colors.test.ts -------------------------------------------------------------------------------- /src/utils/__test__/comment.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/utils/__test__/comment.test.ts -------------------------------------------------------------------------------- /src/utils/__test__/decibear.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/utils/__test__/decibear.test.ts -------------------------------------------------------------------------------- /src/utils/__test__/events.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/utils/__test__/events.test.ts -------------------------------------------------------------------------------- /src/utils/__test__/flatten-array.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/utils/__test__/flatten-array.test.ts -------------------------------------------------------------------------------- /src/utils/__test__/format-number.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/utils/__test__/format-number.test.ts -------------------------------------------------------------------------------- /src/utils/__test__/format-time.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/utils/__test__/format-time.test.ts -------------------------------------------------------------------------------- /src/utils/__test__/supabase.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/utils/__test__/supabase.test.ts -------------------------------------------------------------------------------- /src/utils/__test__/text-transform.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/utils/__test__/text-transform.test.ts -------------------------------------------------------------------------------- /src/utils/change-case.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/utils/change-case.ts -------------------------------------------------------------------------------- /src/utils/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/utils/colors.ts -------------------------------------------------------------------------------- /src/utils/comment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/utils/comment.ts -------------------------------------------------------------------------------- /src/utils/dicebear.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/utils/dicebear.ts -------------------------------------------------------------------------------- /src/utils/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/utils/events.ts -------------------------------------------------------------------------------- /src/utils/flatten-array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/utils/flatten-array.ts -------------------------------------------------------------------------------- /src/utils/format-number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/utils/format-number.ts -------------------------------------------------------------------------------- /src/utils/format-time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/utils/format-time.ts -------------------------------------------------------------------------------- /src/utils/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/utils/image.ts -------------------------------------------------------------------------------- /src/utils/is-loading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/utils/is-loading.ts -------------------------------------------------------------------------------- /src/utils/os-detection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/utils/os-detection.ts -------------------------------------------------------------------------------- /src/utils/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/utils/profile.ts -------------------------------------------------------------------------------- /src/utils/publication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/utils/publication.ts -------------------------------------------------------------------------------- /src/utils/ranks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/utils/ranks.ts -------------------------------------------------------------------------------- /src/utils/supabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/utils/supabase.ts -------------------------------------------------------------------------------- /src/utils/testing/Testing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/utils/testing/Testing.tsx -------------------------------------------------------------------------------- /src/utils/text-transform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/utils/text-transform.ts -------------------------------------------------------------------------------- /src/utils/uuidv4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/utils/uuidv4.ts -------------------------------------------------------------------------------- /src/utils/wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/src/utils/wallet.ts -------------------------------------------------------------------------------- /stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/stats.html -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WatchItDev/watchit-app/HEAD/vite.config.ts --------------------------------------------------------------------------------