├── .DS_Store ├── api ├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .styleci.yml ├── app │ ├── Console │ │ ├── Commands │ │ │ ├── AppListPt.php │ │ │ └── AppListUsers.php │ │ └── Kernel.php │ ├── Events │ │ ├── PartyInvitationAccepted.php │ │ ├── PartyInvitationCancelled.php │ │ ├── PartyInvitationDeclined.php │ │ ├── PartyInvitationSent.php │ │ ├── PartyLogEvent.php │ │ ├── PartyMessage.php │ │ ├── PartyState.php │ │ ├── PartyVideoChanged.php │ │ ├── UserInvitationCancelled.php │ │ └── UserInvitationReceived.php │ ├── Exceptions │ │ └── Handler.php │ ├── Genre.php │ ├── Http │ │ ├── Controllers │ │ │ ├── Auth │ │ │ │ ├── ForgotPasswordController.php │ │ │ │ ├── LoginController.php │ │ │ │ ├── RegisterController.php │ │ │ │ ├── ResetPasswordController.php │ │ │ │ └── VerificationController.php │ │ │ ├── Controller.php │ │ │ ├── Hooks │ │ │ │ ├── PusherController.php │ │ │ │ ├── PusherHook.php │ │ │ │ └── PusherHookEvent.php │ │ │ ├── MeController.php │ │ │ ├── PartiesController.php │ │ │ ├── PartyInvitationsController.php │ │ │ ├── PartyLogsController.php │ │ │ └── ShowsController.php │ │ ├── Kernel.php │ │ ├── Middleware │ │ │ ├── Authenticate.php │ │ │ ├── CheckForMaintenanceMode.php │ │ │ ├── EncryptCookies.php │ │ │ ├── MemberOfParty.php │ │ │ ├── RecipientOfInvitation.php │ │ │ ├── RedirectIfAuthenticated.php │ │ │ ├── TrimStrings.php │ │ │ ├── TrustProxies.php │ │ │ └── VerifyCsrfToken.php │ │ └── Requests │ │ │ ├── ChangePartyVideo.php │ │ │ ├── DoInvitation.php │ │ │ ├── GetPartyLogs.php │ │ │ ├── RegisterUser.php │ │ │ ├── SendInvitation.php │ │ │ ├── SendPartyMessage.php │ │ │ ├── StoreParty.php │ │ │ ├── UpdatePartyState.php │ │ │ └── UpdatePartyTime.php │ ├── Party.php │ ├── PartyActivity.php │ ├── PartyInvitation.php │ ├── PartyLog.php │ ├── PartyMessage.php │ ├── Providers │ │ ├── AppServiceProvider.php │ │ ├── AuthServiceProvider.php │ │ ├── BroadcastServiceProvider.php │ │ ├── EventServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── Rules │ │ └── RequestAccessCode.php │ ├── Show.php │ ├── ShowGroup.php │ ├── ShowVideo.php │ ├── Support │ │ └── Helper.php │ └── User.php ├── artisan ├── bootstrap │ ├── app.php │ └── cache │ │ └── .gitignore ├── composer.json ├── composer.lock ├── config │ ├── app.php │ ├── auth.php │ ├── broadcasting.php │ ├── cache.php │ ├── config.php │ ├── database.php │ ├── filesystems.php │ ├── hashing.php │ ├── logging.php │ ├── mail.php │ ├── queue.php │ ├── services.php │ ├── session.php │ └── view.php ├── database │ ├── .gitignore │ ├── factories │ │ └── UserFactory.php │ ├── migrations │ │ ├── 2014_10_12_000000_create_users_table.php │ │ ├── 2014_10_12_100000_create_password_resets_table.php │ │ ├── 2019_05_04_100523_create_parties_table.php │ │ ├── 2019_05_04_100535_create_party_invitations_table.php │ │ ├── 2019_05_04_100644_create_party_user_table.php │ │ ├── 2019_05_04_100855_create_party_logs_table.php │ │ ├── 2019_05_04_101312_create_shows_table.php │ │ ├── 2019_05_04_101518_create_show_groups_table.php │ │ ├── 2019_05_04_101534_create_show_videos_table.php │ │ ├── 2019_05_05_015450_create_genres_table.php │ │ ├── 2019_05_05_015536_create_genre_show_table.php │ │ ├── 2019_05_05_042049_create_party_log_messages_table.php │ │ ├── 2019_05_05_042109_create_party_log_activities_table.php │ │ ├── 2019_06_20_142020_create_user_admin_record.php │ │ ├── 2019_07_02_023016_add_subtitle_url_column_to_show_videos_table.php │ │ ├── 2019_07_15_025106_add_is_dismissed_column__to_party_user_table.php │ │ ├── 2019_08_07_190850_update_synopsis_to_text_type_column_in_shows_table.php │ │ └── 2019_08_20_211514_add_is_online_column_to_users_table.php │ └── seeds │ │ ├── DatabaseSeeder.php │ │ └── ShowSeeder.php ├── package.json ├── phpunit.xml ├── public │ ├── .htaccess │ ├── css │ │ └── app.css │ ├── favicon.ico │ ├── index.php │ ├── js │ │ └── app.js │ └── robots.txt ├── resources │ ├── js │ │ ├── app.js │ │ ├── bootstrap.js │ │ └── components │ │ │ └── ExampleComponent.vue │ ├── lang │ │ └── en │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ ├── sass │ │ ├── _variables.scss │ │ └── app.scss │ └── views │ │ └── welcome.blade.php ├── routes │ ├── api.php │ ├── channels.php │ ├── console.php │ └── web.php ├── server.php ├── storage │ ├── app │ │ ├── .gitignore │ │ └── public │ │ │ └── .gitignore │ ├── framework │ │ ├── .gitignore │ │ ├── cache │ │ │ ├── .gitignore │ │ │ └── data │ │ │ │ └── .gitignore │ │ ├── sessions │ │ │ └── .gitignore │ │ ├── testing │ │ │ └── .gitignore │ │ └── views │ │ │ └── .gitignore │ └── logs │ │ └── .gitignore ├── tests │ ├── CreatesApplication.php │ ├── Feature │ │ └── ExampleTest.php │ ├── TestCase.php │ └── Unit │ │ └── ExampleTest.php ├── webpack.mix.js └── yarn.lock ├── misc ├── extract-subs-movie-batch.js ├── extract-subs-movie.js ├── extract-subs-series.js ├── generate-text-files.js ├── rename-series.js ├── utils.js ├── validate-sub.js └── wbb-rename.js ├── preview.png ├── readme.md └── ui ├── .env.example ├── .gitignore ├── .prettierrc ├── netlify └── _redirects ├── package-lock.json ├── package.json ├── src ├── assets │ ├── audio │ │ ├── chat-ener.ogg │ │ ├── chat-inactive.ogg │ │ ├── chat-leave.ogg │ │ ├── chat-send.ogg │ │ ├── invitation-old.ogg │ │ └── invitation.ogg │ ├── author.jpg │ ├── download-img.svg │ ├── download-step-1.png │ ├── download-step-2.png │ ├── download-step-3.png │ ├── download-step-4.png │ ├── dummy-avatar.png │ ├── faq-img.svg │ ├── loader.svg │ ├── login-img.svg │ ├── register-img.svg │ └── show-thumbnail-218x146.jpg ├── components │ ├── .dummy-component │ │ ├── index.tsx │ │ └── style.css │ ├── CountdownTimer │ │ └── index.tsx │ ├── GatewayDestWithFallback │ │ └── index.tsx │ ├── ImageAspectRatio │ │ ├── index.tsx │ │ └── style.css │ ├── KeyCastr │ │ ├── index.tsx │ │ └── style.css │ ├── RoutePermission │ │ ├── GuestRoute.tsx │ │ ├── PrivateRoute.tsx │ │ └── index.ts │ ├── RouterSwitch │ │ └── index.tsx │ ├── SeasonSelection │ │ ├── index.tsx │ │ └── style.css │ ├── StandardImageAspectRatio │ │ └── index.tsx │ ├── Toast │ │ ├── index.tsx │ │ └── style.css │ ├── UiAccordion │ │ ├── index.tsx │ │ └── style.css │ ├── UiAvatar │ │ ├── index.tsx │ │ ├── style.css │ │ └── utils.ts │ ├── UiAvatarGroup │ │ ├── index.tsx │ │ └── style.css │ ├── UiButton │ │ ├── index.tsx │ │ └── style.css │ ├── UiButtonLoader │ │ ├── index.tsx │ │ └── style.css │ ├── UiContainer │ │ ├── index.tsx │ │ └── style.css │ ├── UiFormGroup │ │ ├── index.tsx │ │ └── style.css │ ├── UiFormSpacer │ │ └── index.tsx │ ├── UiGlobalLoader │ │ └── index.tsx │ ├── UiInput │ │ ├── index.tsx │ │ └── style.css │ ├── UiInputSlider │ │ ├── index.tsx │ │ └── style.css │ ├── UiLoader │ │ ├── index.tsx │ │ └── style.css │ ├── UiLogo │ │ ├── index.tsx │ │ └── style.css │ ├── UiModal │ │ ├── index.tsx │ │ └── style.css │ ├── UiNavigation │ │ ├── index.tsx │ │ └── style.css │ ├── UiPlainButton │ │ ├── index.tsx │ │ └── style.css │ ├── UiPresenceAvatar │ │ ├── index.tsx │ │ └── style.css │ ├── UiSelect │ │ ├── index.tsx │ │ └── style.css │ ├── UiSpacer │ │ ├── index.tsx │ │ └── style.css │ ├── UiUserAvatar │ │ └── index.tsx │ └── WindowVhSetter │ │ └── index.ts ├── config.ts ├── contexts │ └── Auth │ │ └── index.tsx ├── custom.d.ts ├── global.css ├── hooks │ ├── useBufferState.ts │ ├── useCollectionState.ts │ ├── useCountdownTimer.ts │ ├── useFormState.ts │ ├── useFullscreen.ts │ ├── useIsPWA.ts │ ├── useMediaMode.ts │ ├── useNow.ts │ ├── usePropRef.ts │ ├── usePusher.ts │ ├── useRequest.ts │ ├── useRouterBlock.ts │ ├── useUpdateDebounce.ts │ └── useWindowVisibility.ts ├── index.html ├── index.tsx ├── lib │ ├── axios │ │ ├── AxiosManager.tsx │ │ ├── index.ts │ │ ├── instance.ts │ │ ├── interceptor-app-init.ts │ │ ├── interceptor-error-handling.ts │ │ ├── interceptor-expired-tokens.ts │ │ ├── interceptor-oauth.ts │ │ ├── interceptor-pusher.ts │ │ ├── interceptor-toast-errors.ts │ │ └── types.ts │ ├── history │ │ └── index.ts │ ├── pusher │ │ ├── PusherManager.tsx │ │ └── index.ts │ ├── srt2obj │ │ └── index.ts │ └── uuid │ │ └── index.ts ├── manifest.webmanifest ├── screens │ ├── .dummy-route │ │ ├── index.tsx │ │ └── style.css │ ├── app.download │ │ ├── index.tsx │ │ └── style.css │ ├── app.home │ │ ├── AuthHome │ │ │ ├── index.tsx │ │ │ └── style.css │ │ ├── GuestHome │ │ │ ├── index.tsx │ │ │ └── style.css │ │ ├── ShowModal │ │ │ ├── index.tsx │ │ │ └── style.css │ │ ├── YouWereWatching │ │ │ ├── index.tsx │ │ │ └── style.css │ │ └── index.tsx │ ├── app.settings-faq │ │ ├── faq.ts │ │ ├── index.tsx │ │ └── style.css │ ├── app.settings-password │ │ ├── index.tsx │ │ └── style.css │ ├── app.settings-profile │ │ ├── index.tsx │ │ └── style.css │ ├── app.settings │ │ ├── index.tsx │ │ └── style.css │ ├── app.watch.home │ │ ├── ChatInvitationModal │ │ │ ├── index.tsx │ │ │ └── style.css │ │ ├── ChatWidget │ │ │ ├── index.tsx │ │ │ └── style.css │ │ ├── ChatWidgetTip │ │ │ ├── index.tsx │ │ │ └── style.css │ │ ├── KeyboardInfoModal │ │ │ ├── index.tsx │ │ │ └── style.css │ │ ├── MobileTitleBar │ │ │ ├── index.tsx │ │ │ └── style.css │ │ ├── PlayerModal │ │ │ ├── index.tsx │ │ │ └── style.css │ │ ├── PlayerSeeker │ │ │ ├── index.tsx │ │ │ └── style.css │ │ ├── PlayerStateBufferedIndicator │ │ │ ├── index.tsx │ │ │ └── style.css │ │ ├── PlayerTooltip │ │ │ ├── index.tsx │ │ │ └── style.css │ │ ├── SeasonSelectionModal │ │ │ ├── index.tsx │ │ │ └── style.css │ │ ├── SubtitleSlot │ │ │ ├── constants.ts │ │ │ ├── index.tsx │ │ │ ├── style.css │ │ │ └── utils.ts │ │ ├── VolumeControl │ │ │ ├── index.tsx │ │ │ └── style.css │ │ ├── index.tsx │ │ ├── style.css │ │ └── usePlayerHotkeys.ts │ ├── app.watch │ │ ├── Context │ │ │ ├── Context.ts │ │ │ ├── index.ts │ │ │ └── usePartyContext.ts │ │ ├── index.tsx │ │ ├── style.css │ │ └── types.ts │ ├── app │ │ ├── AppHeading │ │ │ ├── index.tsx │ │ │ └── style.css │ │ ├── AppHeadingSettings │ │ │ ├── index.tsx │ │ │ └── style.css │ │ ├── InvitationModal │ │ │ ├── index.tsx │ │ │ ├── style.css │ │ │ └── types.ts │ │ ├── constants.ts │ │ ├── index.tsx │ │ └── style.css │ ├── login │ │ ├── index.tsx │ │ └── style.css │ ├── logout │ │ └── index.tsx │ └── register │ │ ├── index.tsx │ │ └── style.css ├── types.ts ├── types │ └── react-input-slider │ │ └── index.d.ts └── utils │ ├── api │ └── getValidationMessage.ts │ ├── clamp.ts │ ├── date │ ├── fromReadableTime.ts │ ├── getFormattedDuration.ts │ ├── getFormattedDurationWithoutSeconds.ts │ ├── getFormattedRemainingTime.ts │ ├── getRemainingTime.ts │ ├── getStandardFormattedDateTime.ts │ ├── parseStandardTime.ts │ └── toReadableTime.ts │ ├── dom │ └── isFocusedToInput.ts │ ├── goify.ts │ ├── last.ts │ ├── random.ts │ ├── shows │ ├── getAirDetails.ts │ ├── getVideoDetails.ts │ └── getVideoPreviewImage.ts │ ├── toSearchIndexObject.ts │ └── toSearchObject.ts └── tsconfig.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/.DS_Store -------------------------------------------------------------------------------- /api/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/.editorconfig -------------------------------------------------------------------------------- /api/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/.env.example -------------------------------------------------------------------------------- /api/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/.gitattributes -------------------------------------------------------------------------------- /api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/.gitignore -------------------------------------------------------------------------------- /api/.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/.styleci.yml -------------------------------------------------------------------------------- /api/app/Console/Commands/AppListPt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Console/Commands/AppListPt.php -------------------------------------------------------------------------------- /api/app/Console/Commands/AppListUsers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Console/Commands/AppListUsers.php -------------------------------------------------------------------------------- /api/app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Console/Kernel.php -------------------------------------------------------------------------------- /api/app/Events/PartyInvitationAccepted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Events/PartyInvitationAccepted.php -------------------------------------------------------------------------------- /api/app/Events/PartyInvitationCancelled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Events/PartyInvitationCancelled.php -------------------------------------------------------------------------------- /api/app/Events/PartyInvitationDeclined.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Events/PartyInvitationDeclined.php -------------------------------------------------------------------------------- /api/app/Events/PartyInvitationSent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Events/PartyInvitationSent.php -------------------------------------------------------------------------------- /api/app/Events/PartyLogEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Events/PartyLogEvent.php -------------------------------------------------------------------------------- /api/app/Events/PartyMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Events/PartyMessage.php -------------------------------------------------------------------------------- /api/app/Events/PartyState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Events/PartyState.php -------------------------------------------------------------------------------- /api/app/Events/PartyVideoChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Events/PartyVideoChanged.php -------------------------------------------------------------------------------- /api/app/Events/UserInvitationCancelled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Events/UserInvitationCancelled.php -------------------------------------------------------------------------------- /api/app/Events/UserInvitationReceived.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Events/UserInvitationReceived.php -------------------------------------------------------------------------------- /api/app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /api/app/Genre.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Genre.php -------------------------------------------------------------------------------- /api/app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /api/app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /api/app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /api/app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /api/app/Http/Controllers/Auth/VerificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Http/Controllers/Auth/VerificationController.php -------------------------------------------------------------------------------- /api/app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /api/app/Http/Controllers/Hooks/PusherController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Http/Controllers/Hooks/PusherController.php -------------------------------------------------------------------------------- /api/app/Http/Controllers/Hooks/PusherHook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Http/Controllers/Hooks/PusherHook.php -------------------------------------------------------------------------------- /api/app/Http/Controllers/Hooks/PusherHookEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Http/Controllers/Hooks/PusherHookEvent.php -------------------------------------------------------------------------------- /api/app/Http/Controllers/MeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Http/Controllers/MeController.php -------------------------------------------------------------------------------- /api/app/Http/Controllers/PartiesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Http/Controllers/PartiesController.php -------------------------------------------------------------------------------- /api/app/Http/Controllers/PartyInvitationsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Http/Controllers/PartyInvitationsController.php -------------------------------------------------------------------------------- /api/app/Http/Controllers/PartyLogsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Http/Controllers/PartyLogsController.php -------------------------------------------------------------------------------- /api/app/Http/Controllers/ShowsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Http/Controllers/ShowsController.php -------------------------------------------------------------------------------- /api/app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Http/Kernel.php -------------------------------------------------------------------------------- /api/app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /api/app/Http/Middleware/CheckForMaintenanceMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Http/Middleware/CheckForMaintenanceMode.php -------------------------------------------------------------------------------- /api/app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /api/app/Http/Middleware/MemberOfParty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Http/Middleware/MemberOfParty.php -------------------------------------------------------------------------------- /api/app/Http/Middleware/RecipientOfInvitation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Http/Middleware/RecipientOfInvitation.php -------------------------------------------------------------------------------- /api/app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /api/app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /api/app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /api/app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /api/app/Http/Requests/ChangePartyVideo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Http/Requests/ChangePartyVideo.php -------------------------------------------------------------------------------- /api/app/Http/Requests/DoInvitation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Http/Requests/DoInvitation.php -------------------------------------------------------------------------------- /api/app/Http/Requests/GetPartyLogs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Http/Requests/GetPartyLogs.php -------------------------------------------------------------------------------- /api/app/Http/Requests/RegisterUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Http/Requests/RegisterUser.php -------------------------------------------------------------------------------- /api/app/Http/Requests/SendInvitation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Http/Requests/SendInvitation.php -------------------------------------------------------------------------------- /api/app/Http/Requests/SendPartyMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Http/Requests/SendPartyMessage.php -------------------------------------------------------------------------------- /api/app/Http/Requests/StoreParty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Http/Requests/StoreParty.php -------------------------------------------------------------------------------- /api/app/Http/Requests/UpdatePartyState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Http/Requests/UpdatePartyState.php -------------------------------------------------------------------------------- /api/app/Http/Requests/UpdatePartyTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Http/Requests/UpdatePartyTime.php -------------------------------------------------------------------------------- /api/app/Party.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Party.php -------------------------------------------------------------------------------- /api/app/PartyActivity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/PartyActivity.php -------------------------------------------------------------------------------- /api/app/PartyInvitation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/PartyInvitation.php -------------------------------------------------------------------------------- /api/app/PartyLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/PartyLog.php -------------------------------------------------------------------------------- /api/app/PartyMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/PartyMessage.php -------------------------------------------------------------------------------- /api/app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /api/app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /api/app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /api/app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /api/app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /api/app/Rules/RequestAccessCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Rules/RequestAccessCode.php -------------------------------------------------------------------------------- /api/app/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Show.php -------------------------------------------------------------------------------- /api/app/ShowGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/ShowGroup.php -------------------------------------------------------------------------------- /api/app/ShowVideo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/ShowVideo.php -------------------------------------------------------------------------------- /api/app/Support/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/Support/Helper.php -------------------------------------------------------------------------------- /api/app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/app/User.php -------------------------------------------------------------------------------- /api/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/artisan -------------------------------------------------------------------------------- /api/bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/bootstrap/app.php -------------------------------------------------------------------------------- /api/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /api/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/composer.json -------------------------------------------------------------------------------- /api/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/composer.lock -------------------------------------------------------------------------------- /api/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/config/app.php -------------------------------------------------------------------------------- /api/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/config/auth.php -------------------------------------------------------------------------------- /api/config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/config/broadcasting.php -------------------------------------------------------------------------------- /api/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/config/cache.php -------------------------------------------------------------------------------- /api/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/config/config.php -------------------------------------------------------------------------------- /api/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/config/database.php -------------------------------------------------------------------------------- /api/config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/config/filesystems.php -------------------------------------------------------------------------------- /api/config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/config/hashing.php -------------------------------------------------------------------------------- /api/config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/config/logging.php -------------------------------------------------------------------------------- /api/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/config/mail.php -------------------------------------------------------------------------------- /api/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/config/queue.php -------------------------------------------------------------------------------- /api/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/config/services.php -------------------------------------------------------------------------------- /api/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/config/session.php -------------------------------------------------------------------------------- /api/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/config/view.php -------------------------------------------------------------------------------- /api/database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/database/.gitignore -------------------------------------------------------------------------------- /api/database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/database/factories/UserFactory.php -------------------------------------------------------------------------------- /api/database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /api/database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /api/database/migrations/2019_05_04_100523_create_parties_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/database/migrations/2019_05_04_100523_create_parties_table.php -------------------------------------------------------------------------------- /api/database/migrations/2019_05_04_100535_create_party_invitations_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/database/migrations/2019_05_04_100535_create_party_invitations_table.php -------------------------------------------------------------------------------- /api/database/migrations/2019_05_04_100644_create_party_user_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/database/migrations/2019_05_04_100644_create_party_user_table.php -------------------------------------------------------------------------------- /api/database/migrations/2019_05_04_100855_create_party_logs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/database/migrations/2019_05_04_100855_create_party_logs_table.php -------------------------------------------------------------------------------- /api/database/migrations/2019_05_04_101312_create_shows_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/database/migrations/2019_05_04_101312_create_shows_table.php -------------------------------------------------------------------------------- /api/database/migrations/2019_05_04_101518_create_show_groups_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/database/migrations/2019_05_04_101518_create_show_groups_table.php -------------------------------------------------------------------------------- /api/database/migrations/2019_05_04_101534_create_show_videos_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/database/migrations/2019_05_04_101534_create_show_videos_table.php -------------------------------------------------------------------------------- /api/database/migrations/2019_05_05_015450_create_genres_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/database/migrations/2019_05_05_015450_create_genres_table.php -------------------------------------------------------------------------------- /api/database/migrations/2019_05_05_015536_create_genre_show_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/database/migrations/2019_05_05_015536_create_genre_show_table.php -------------------------------------------------------------------------------- /api/database/migrations/2019_05_05_042049_create_party_log_messages_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/database/migrations/2019_05_05_042049_create_party_log_messages_table.php -------------------------------------------------------------------------------- /api/database/migrations/2019_05_05_042109_create_party_log_activities_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/database/migrations/2019_05_05_042109_create_party_log_activities_table.php -------------------------------------------------------------------------------- /api/database/migrations/2019_06_20_142020_create_user_admin_record.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/database/migrations/2019_06_20_142020_create_user_admin_record.php -------------------------------------------------------------------------------- /api/database/migrations/2019_07_02_023016_add_subtitle_url_column_to_show_videos_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/database/migrations/2019_07_02_023016_add_subtitle_url_column_to_show_videos_table.php -------------------------------------------------------------------------------- /api/database/migrations/2019_07_15_025106_add_is_dismissed_column__to_party_user_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/database/migrations/2019_07_15_025106_add_is_dismissed_column__to_party_user_table.php -------------------------------------------------------------------------------- /api/database/migrations/2019_08_07_190850_update_synopsis_to_text_type_column_in_shows_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/database/migrations/2019_08_07_190850_update_synopsis_to_text_type_column_in_shows_table.php -------------------------------------------------------------------------------- /api/database/migrations/2019_08_20_211514_add_is_online_column_to_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/database/migrations/2019_08_20_211514_add_is_online_column_to_users_table.php -------------------------------------------------------------------------------- /api/database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /api/database/seeds/ShowSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/database/seeds/ShowSeeder.php -------------------------------------------------------------------------------- /api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/package.json -------------------------------------------------------------------------------- /api/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/phpunit.xml -------------------------------------------------------------------------------- /api/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/public/.htaccess -------------------------------------------------------------------------------- /api/public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/public/css/app.css -------------------------------------------------------------------------------- /api/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/public/index.php -------------------------------------------------------------------------------- /api/public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/public/js/app.js -------------------------------------------------------------------------------- /api/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /api/resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/resources/js/app.js -------------------------------------------------------------------------------- /api/resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/resources/js/bootstrap.js -------------------------------------------------------------------------------- /api/resources/js/components/ExampleComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/resources/js/components/ExampleComponent.vue -------------------------------------------------------------------------------- /api/resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/resources/lang/en/auth.php -------------------------------------------------------------------------------- /api/resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /api/resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /api/resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/resources/lang/en/validation.php -------------------------------------------------------------------------------- /api/resources/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/resources/sass/_variables.scss -------------------------------------------------------------------------------- /api/resources/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/resources/sass/app.scss -------------------------------------------------------------------------------- /api/resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /api/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/routes/api.php -------------------------------------------------------------------------------- /api/routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/routes/channels.php -------------------------------------------------------------------------------- /api/routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/routes/console.php -------------------------------------------------------------------------------- /api/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/routes/web.php -------------------------------------------------------------------------------- /api/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/server.php -------------------------------------------------------------------------------- /api/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /api/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /api/storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/storage/framework/.gitignore -------------------------------------------------------------------------------- /api/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /api/storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /api/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /api/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /api/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /api/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /api/tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/tests/CreatesApplication.php -------------------------------------------------------------------------------- /api/tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /api/tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/tests/TestCase.php -------------------------------------------------------------------------------- /api/tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /api/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/webpack.mix.js -------------------------------------------------------------------------------- /api/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/api/yarn.lock -------------------------------------------------------------------------------- /misc/extract-subs-movie-batch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/misc/extract-subs-movie-batch.js -------------------------------------------------------------------------------- /misc/extract-subs-movie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/misc/extract-subs-movie.js -------------------------------------------------------------------------------- /misc/extract-subs-series.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/misc/extract-subs-series.js -------------------------------------------------------------------------------- /misc/generate-text-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/misc/generate-text-files.js -------------------------------------------------------------------------------- /misc/rename-series.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/misc/rename-series.js -------------------------------------------------------------------------------- /misc/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/misc/utils.js -------------------------------------------------------------------------------- /misc/validate-sub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/misc/validate-sub.js -------------------------------------------------------------------------------- /misc/wbb-rename.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/misc/wbb-rename.js -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/preview.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/readme.md -------------------------------------------------------------------------------- /ui/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/.env.example -------------------------------------------------------------------------------- /ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/.gitignore -------------------------------------------------------------------------------- /ui/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/.prettierrc -------------------------------------------------------------------------------- /ui/netlify/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/netlify/_redirects -------------------------------------------------------------------------------- /ui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/package-lock.json -------------------------------------------------------------------------------- /ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/package.json -------------------------------------------------------------------------------- /ui/src/assets/audio/chat-ener.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/assets/audio/chat-ener.ogg -------------------------------------------------------------------------------- /ui/src/assets/audio/chat-inactive.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/assets/audio/chat-inactive.ogg -------------------------------------------------------------------------------- /ui/src/assets/audio/chat-leave.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/assets/audio/chat-leave.ogg -------------------------------------------------------------------------------- /ui/src/assets/audio/chat-send.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/assets/audio/chat-send.ogg -------------------------------------------------------------------------------- /ui/src/assets/audio/invitation-old.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/assets/audio/invitation-old.ogg -------------------------------------------------------------------------------- /ui/src/assets/audio/invitation.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/assets/audio/invitation.ogg -------------------------------------------------------------------------------- /ui/src/assets/author.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/assets/author.jpg -------------------------------------------------------------------------------- /ui/src/assets/download-img.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/assets/download-img.svg -------------------------------------------------------------------------------- /ui/src/assets/download-step-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/assets/download-step-1.png -------------------------------------------------------------------------------- /ui/src/assets/download-step-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/assets/download-step-2.png -------------------------------------------------------------------------------- /ui/src/assets/download-step-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/assets/download-step-3.png -------------------------------------------------------------------------------- /ui/src/assets/download-step-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/assets/download-step-4.png -------------------------------------------------------------------------------- /ui/src/assets/dummy-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/assets/dummy-avatar.png -------------------------------------------------------------------------------- /ui/src/assets/faq-img.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/assets/faq-img.svg -------------------------------------------------------------------------------- /ui/src/assets/loader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/assets/loader.svg -------------------------------------------------------------------------------- /ui/src/assets/login-img.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/assets/login-img.svg -------------------------------------------------------------------------------- /ui/src/assets/register-img.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/assets/register-img.svg -------------------------------------------------------------------------------- /ui/src/assets/show-thumbnail-218x146.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/assets/show-thumbnail-218x146.jpg -------------------------------------------------------------------------------- /ui/src/components/.dummy-component/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/.dummy-component/index.tsx -------------------------------------------------------------------------------- /ui/src/components/.dummy-component/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/components/CountdownTimer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/CountdownTimer/index.tsx -------------------------------------------------------------------------------- /ui/src/components/GatewayDestWithFallback/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/GatewayDestWithFallback/index.tsx -------------------------------------------------------------------------------- /ui/src/components/ImageAspectRatio/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/ImageAspectRatio/index.tsx -------------------------------------------------------------------------------- /ui/src/components/ImageAspectRatio/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/ImageAspectRatio/style.css -------------------------------------------------------------------------------- /ui/src/components/KeyCastr/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/KeyCastr/index.tsx -------------------------------------------------------------------------------- /ui/src/components/KeyCastr/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/KeyCastr/style.css -------------------------------------------------------------------------------- /ui/src/components/RoutePermission/GuestRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/RoutePermission/GuestRoute.tsx -------------------------------------------------------------------------------- /ui/src/components/RoutePermission/PrivateRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/RoutePermission/PrivateRoute.tsx -------------------------------------------------------------------------------- /ui/src/components/RoutePermission/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/RoutePermission/index.ts -------------------------------------------------------------------------------- /ui/src/components/RouterSwitch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/RouterSwitch/index.tsx -------------------------------------------------------------------------------- /ui/src/components/SeasonSelection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/SeasonSelection/index.tsx -------------------------------------------------------------------------------- /ui/src/components/SeasonSelection/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/SeasonSelection/style.css -------------------------------------------------------------------------------- /ui/src/components/StandardImageAspectRatio/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/StandardImageAspectRatio/index.tsx -------------------------------------------------------------------------------- /ui/src/components/Toast/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/Toast/index.tsx -------------------------------------------------------------------------------- /ui/src/components/Toast/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/Toast/style.css -------------------------------------------------------------------------------- /ui/src/components/UiAccordion/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/UiAccordion/index.tsx -------------------------------------------------------------------------------- /ui/src/components/UiAccordion/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/UiAccordion/style.css -------------------------------------------------------------------------------- /ui/src/components/UiAvatar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/UiAvatar/index.tsx -------------------------------------------------------------------------------- /ui/src/components/UiAvatar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/UiAvatar/style.css -------------------------------------------------------------------------------- /ui/src/components/UiAvatar/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/UiAvatar/utils.ts -------------------------------------------------------------------------------- /ui/src/components/UiAvatarGroup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/UiAvatarGroup/index.tsx -------------------------------------------------------------------------------- /ui/src/components/UiAvatarGroup/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/UiAvatarGroup/style.css -------------------------------------------------------------------------------- /ui/src/components/UiButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/UiButton/index.tsx -------------------------------------------------------------------------------- /ui/src/components/UiButton/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/UiButton/style.css -------------------------------------------------------------------------------- /ui/src/components/UiButtonLoader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/UiButtonLoader/index.tsx -------------------------------------------------------------------------------- /ui/src/components/UiButtonLoader/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/components/UiContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/UiContainer/index.tsx -------------------------------------------------------------------------------- /ui/src/components/UiContainer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/UiContainer/style.css -------------------------------------------------------------------------------- /ui/src/components/UiFormGroup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/UiFormGroup/index.tsx -------------------------------------------------------------------------------- /ui/src/components/UiFormGroup/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/UiFormGroup/style.css -------------------------------------------------------------------------------- /ui/src/components/UiFormSpacer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/UiFormSpacer/index.tsx -------------------------------------------------------------------------------- /ui/src/components/UiGlobalLoader/index.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/components/UiInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/UiInput/index.tsx -------------------------------------------------------------------------------- /ui/src/components/UiInput/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/UiInput/style.css -------------------------------------------------------------------------------- /ui/src/components/UiInputSlider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/UiInputSlider/index.tsx -------------------------------------------------------------------------------- /ui/src/components/UiInputSlider/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/components/UiLoader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/UiLoader/index.tsx -------------------------------------------------------------------------------- /ui/src/components/UiLoader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/UiLoader/style.css -------------------------------------------------------------------------------- /ui/src/components/UiLogo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/UiLogo/index.tsx -------------------------------------------------------------------------------- /ui/src/components/UiLogo/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/UiLogo/style.css -------------------------------------------------------------------------------- /ui/src/components/UiModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/UiModal/index.tsx -------------------------------------------------------------------------------- /ui/src/components/UiModal/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/UiModal/style.css -------------------------------------------------------------------------------- /ui/src/components/UiNavigation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/UiNavigation/index.tsx -------------------------------------------------------------------------------- /ui/src/components/UiNavigation/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/UiNavigation/style.css -------------------------------------------------------------------------------- /ui/src/components/UiPlainButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/UiPlainButton/index.tsx -------------------------------------------------------------------------------- /ui/src/components/UiPlainButton/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/UiPlainButton/style.css -------------------------------------------------------------------------------- /ui/src/components/UiPresenceAvatar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/UiPresenceAvatar/index.tsx -------------------------------------------------------------------------------- /ui/src/components/UiPresenceAvatar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/UiPresenceAvatar/style.css -------------------------------------------------------------------------------- /ui/src/components/UiSelect/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/UiSelect/index.tsx -------------------------------------------------------------------------------- /ui/src/components/UiSelect/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/UiSelect/style.css -------------------------------------------------------------------------------- /ui/src/components/UiSpacer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/UiSpacer/index.tsx -------------------------------------------------------------------------------- /ui/src/components/UiSpacer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/UiSpacer/style.css -------------------------------------------------------------------------------- /ui/src/components/UiUserAvatar/index.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/components/WindowVhSetter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/components/WindowVhSetter/index.ts -------------------------------------------------------------------------------- /ui/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/config.ts -------------------------------------------------------------------------------- /ui/src/contexts/Auth/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/contexts/Auth/index.tsx -------------------------------------------------------------------------------- /ui/src/custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/custom.d.ts -------------------------------------------------------------------------------- /ui/src/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/global.css -------------------------------------------------------------------------------- /ui/src/hooks/useBufferState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/hooks/useBufferState.ts -------------------------------------------------------------------------------- /ui/src/hooks/useCollectionState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/hooks/useCollectionState.ts -------------------------------------------------------------------------------- /ui/src/hooks/useCountdownTimer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/hooks/useCountdownTimer.ts -------------------------------------------------------------------------------- /ui/src/hooks/useFormState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/hooks/useFormState.ts -------------------------------------------------------------------------------- /ui/src/hooks/useFullscreen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/hooks/useFullscreen.ts -------------------------------------------------------------------------------- /ui/src/hooks/useIsPWA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/hooks/useIsPWA.ts -------------------------------------------------------------------------------- /ui/src/hooks/useMediaMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/hooks/useMediaMode.ts -------------------------------------------------------------------------------- /ui/src/hooks/useNow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/hooks/useNow.ts -------------------------------------------------------------------------------- /ui/src/hooks/usePropRef.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/hooks/usePropRef.ts -------------------------------------------------------------------------------- /ui/src/hooks/usePusher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/hooks/usePusher.ts -------------------------------------------------------------------------------- /ui/src/hooks/useRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/hooks/useRequest.ts -------------------------------------------------------------------------------- /ui/src/hooks/useRouterBlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/hooks/useRouterBlock.ts -------------------------------------------------------------------------------- /ui/src/hooks/useUpdateDebounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/hooks/useUpdateDebounce.ts -------------------------------------------------------------------------------- /ui/src/hooks/useWindowVisibility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/hooks/useWindowVisibility.ts -------------------------------------------------------------------------------- /ui/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/index.html -------------------------------------------------------------------------------- /ui/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/index.tsx -------------------------------------------------------------------------------- /ui/src/lib/axios/AxiosManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/lib/axios/AxiosManager.tsx -------------------------------------------------------------------------------- /ui/src/lib/axios/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/lib/axios/index.ts -------------------------------------------------------------------------------- /ui/src/lib/axios/instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/lib/axios/instance.ts -------------------------------------------------------------------------------- /ui/src/lib/axios/interceptor-app-init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/lib/axios/interceptor-app-init.ts -------------------------------------------------------------------------------- /ui/src/lib/axios/interceptor-error-handling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/lib/axios/interceptor-error-handling.ts -------------------------------------------------------------------------------- /ui/src/lib/axios/interceptor-expired-tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/lib/axios/interceptor-expired-tokens.ts -------------------------------------------------------------------------------- /ui/src/lib/axios/interceptor-oauth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/lib/axios/interceptor-oauth.ts -------------------------------------------------------------------------------- /ui/src/lib/axios/interceptor-pusher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/lib/axios/interceptor-pusher.ts -------------------------------------------------------------------------------- /ui/src/lib/axios/interceptor-toast-errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/lib/axios/interceptor-toast-errors.ts -------------------------------------------------------------------------------- /ui/src/lib/axios/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/lib/axios/types.ts -------------------------------------------------------------------------------- /ui/src/lib/history/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/lib/history/index.ts -------------------------------------------------------------------------------- /ui/src/lib/pusher/PusherManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/lib/pusher/PusherManager.tsx -------------------------------------------------------------------------------- /ui/src/lib/pusher/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/lib/pusher/index.ts -------------------------------------------------------------------------------- /ui/src/lib/srt2obj/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/lib/srt2obj/index.ts -------------------------------------------------------------------------------- /ui/src/lib/uuid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/lib/uuid/index.ts -------------------------------------------------------------------------------- /ui/src/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/manifest.webmanifest -------------------------------------------------------------------------------- /ui/src/screens/.dummy-route/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/.dummy-route/index.tsx -------------------------------------------------------------------------------- /ui/src/screens/.dummy-route/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/screens/app.download/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.download/index.tsx -------------------------------------------------------------------------------- /ui/src/screens/app.download/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.download/style.css -------------------------------------------------------------------------------- /ui/src/screens/app.home/AuthHome/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.home/AuthHome/index.tsx -------------------------------------------------------------------------------- /ui/src/screens/app.home/AuthHome/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.home/AuthHome/style.css -------------------------------------------------------------------------------- /ui/src/screens/app.home/GuestHome/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.home/GuestHome/index.tsx -------------------------------------------------------------------------------- /ui/src/screens/app.home/GuestHome/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.home/GuestHome/style.css -------------------------------------------------------------------------------- /ui/src/screens/app.home/ShowModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.home/ShowModal/index.tsx -------------------------------------------------------------------------------- /ui/src/screens/app.home/ShowModal/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.home/ShowModal/style.css -------------------------------------------------------------------------------- /ui/src/screens/app.home/YouWereWatching/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.home/YouWereWatching/index.tsx -------------------------------------------------------------------------------- /ui/src/screens/app.home/YouWereWatching/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.home/YouWereWatching/style.css -------------------------------------------------------------------------------- /ui/src/screens/app.home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.home/index.tsx -------------------------------------------------------------------------------- /ui/src/screens/app.settings-faq/faq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.settings-faq/faq.ts -------------------------------------------------------------------------------- /ui/src/screens/app.settings-faq/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.settings-faq/index.tsx -------------------------------------------------------------------------------- /ui/src/screens/app.settings-faq/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.settings-faq/style.css -------------------------------------------------------------------------------- /ui/src/screens/app.settings-password/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.settings-password/index.tsx -------------------------------------------------------------------------------- /ui/src/screens/app.settings-password/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/screens/app.settings-profile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.settings-profile/index.tsx -------------------------------------------------------------------------------- /ui/src/screens/app.settings-profile/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.settings-profile/style.css -------------------------------------------------------------------------------- /ui/src/screens/app.settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.settings/index.tsx -------------------------------------------------------------------------------- /ui/src/screens/app.settings/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.settings/style.css -------------------------------------------------------------------------------- /ui/src/screens/app.watch.home/ChatInvitationModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.watch.home/ChatInvitationModal/index.tsx -------------------------------------------------------------------------------- /ui/src/screens/app.watch.home/ChatInvitationModal/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.watch.home/ChatInvitationModal/style.css -------------------------------------------------------------------------------- /ui/src/screens/app.watch.home/ChatWidget/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.watch.home/ChatWidget/index.tsx -------------------------------------------------------------------------------- /ui/src/screens/app.watch.home/ChatWidget/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.watch.home/ChatWidget/style.css -------------------------------------------------------------------------------- /ui/src/screens/app.watch.home/ChatWidgetTip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.watch.home/ChatWidgetTip/index.tsx -------------------------------------------------------------------------------- /ui/src/screens/app.watch.home/ChatWidgetTip/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.watch.home/ChatWidgetTip/style.css -------------------------------------------------------------------------------- /ui/src/screens/app.watch.home/KeyboardInfoModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.watch.home/KeyboardInfoModal/index.tsx -------------------------------------------------------------------------------- /ui/src/screens/app.watch.home/KeyboardInfoModal/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.watch.home/KeyboardInfoModal/style.css -------------------------------------------------------------------------------- /ui/src/screens/app.watch.home/MobileTitleBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.watch.home/MobileTitleBar/index.tsx -------------------------------------------------------------------------------- /ui/src/screens/app.watch.home/MobileTitleBar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.watch.home/MobileTitleBar/style.css -------------------------------------------------------------------------------- /ui/src/screens/app.watch.home/PlayerModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.watch.home/PlayerModal/index.tsx -------------------------------------------------------------------------------- /ui/src/screens/app.watch.home/PlayerModal/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.watch.home/PlayerModal/style.css -------------------------------------------------------------------------------- /ui/src/screens/app.watch.home/PlayerSeeker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.watch.home/PlayerSeeker/index.tsx -------------------------------------------------------------------------------- /ui/src/screens/app.watch.home/PlayerSeeker/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.watch.home/PlayerSeeker/style.css -------------------------------------------------------------------------------- /ui/src/screens/app.watch.home/PlayerStateBufferedIndicator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.watch.home/PlayerStateBufferedIndicator/index.tsx -------------------------------------------------------------------------------- /ui/src/screens/app.watch.home/PlayerStateBufferedIndicator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.watch.home/PlayerStateBufferedIndicator/style.css -------------------------------------------------------------------------------- /ui/src/screens/app.watch.home/PlayerTooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.watch.home/PlayerTooltip/index.tsx -------------------------------------------------------------------------------- /ui/src/screens/app.watch.home/PlayerTooltip/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.watch.home/PlayerTooltip/style.css -------------------------------------------------------------------------------- /ui/src/screens/app.watch.home/SeasonSelectionModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.watch.home/SeasonSelectionModal/index.tsx -------------------------------------------------------------------------------- /ui/src/screens/app.watch.home/SeasonSelectionModal/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.watch.home/SeasonSelectionModal/style.css -------------------------------------------------------------------------------- /ui/src/screens/app.watch.home/SubtitleSlot/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.watch.home/SubtitleSlot/constants.ts -------------------------------------------------------------------------------- /ui/src/screens/app.watch.home/SubtitleSlot/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.watch.home/SubtitleSlot/index.tsx -------------------------------------------------------------------------------- /ui/src/screens/app.watch.home/SubtitleSlot/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.watch.home/SubtitleSlot/style.css -------------------------------------------------------------------------------- /ui/src/screens/app.watch.home/SubtitleSlot/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.watch.home/SubtitleSlot/utils.ts -------------------------------------------------------------------------------- /ui/src/screens/app.watch.home/VolumeControl/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.watch.home/VolumeControl/index.tsx -------------------------------------------------------------------------------- /ui/src/screens/app.watch.home/VolumeControl/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.watch.home/VolumeControl/style.css -------------------------------------------------------------------------------- /ui/src/screens/app.watch.home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.watch.home/index.tsx -------------------------------------------------------------------------------- /ui/src/screens/app.watch.home/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.watch.home/style.css -------------------------------------------------------------------------------- /ui/src/screens/app.watch.home/usePlayerHotkeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.watch.home/usePlayerHotkeys.ts -------------------------------------------------------------------------------- /ui/src/screens/app.watch/Context/Context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.watch/Context/Context.ts -------------------------------------------------------------------------------- /ui/src/screens/app.watch/Context/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.watch/Context/index.ts -------------------------------------------------------------------------------- /ui/src/screens/app.watch/Context/usePartyContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.watch/Context/usePartyContext.ts -------------------------------------------------------------------------------- /ui/src/screens/app.watch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.watch/index.tsx -------------------------------------------------------------------------------- /ui/src/screens/app.watch/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/screens/app.watch/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app.watch/types.ts -------------------------------------------------------------------------------- /ui/src/screens/app/AppHeading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app/AppHeading/index.tsx -------------------------------------------------------------------------------- /ui/src/screens/app/AppHeading/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/screens/app/AppHeadingSettings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app/AppHeadingSettings/index.tsx -------------------------------------------------------------------------------- /ui/src/screens/app/AppHeadingSettings/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/screens/app/InvitationModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app/InvitationModal/index.tsx -------------------------------------------------------------------------------- /ui/src/screens/app/InvitationModal/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app/InvitationModal/style.css -------------------------------------------------------------------------------- /ui/src/screens/app/InvitationModal/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app/InvitationModal/types.ts -------------------------------------------------------------------------------- /ui/src/screens/app/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app/constants.ts -------------------------------------------------------------------------------- /ui/src/screens/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/app/index.tsx -------------------------------------------------------------------------------- /ui/src/screens/app/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ui/src/screens/login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/login/index.tsx -------------------------------------------------------------------------------- /ui/src/screens/login/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/login/style.css -------------------------------------------------------------------------------- /ui/src/screens/logout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/logout/index.tsx -------------------------------------------------------------------------------- /ui/src/screens/register/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/register/index.tsx -------------------------------------------------------------------------------- /ui/src/screens/register/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/screens/register/style.css -------------------------------------------------------------------------------- /ui/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/types.ts -------------------------------------------------------------------------------- /ui/src/types/react-input-slider/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/types/react-input-slider/index.d.ts -------------------------------------------------------------------------------- /ui/src/utils/api/getValidationMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/utils/api/getValidationMessage.ts -------------------------------------------------------------------------------- /ui/src/utils/clamp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/utils/clamp.ts -------------------------------------------------------------------------------- /ui/src/utils/date/fromReadableTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/utils/date/fromReadableTime.ts -------------------------------------------------------------------------------- /ui/src/utils/date/getFormattedDuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/utils/date/getFormattedDuration.ts -------------------------------------------------------------------------------- /ui/src/utils/date/getFormattedDurationWithoutSeconds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/utils/date/getFormattedDurationWithoutSeconds.ts -------------------------------------------------------------------------------- /ui/src/utils/date/getFormattedRemainingTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/utils/date/getFormattedRemainingTime.ts -------------------------------------------------------------------------------- /ui/src/utils/date/getRemainingTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/utils/date/getRemainingTime.ts -------------------------------------------------------------------------------- /ui/src/utils/date/getStandardFormattedDateTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/utils/date/getStandardFormattedDateTime.ts -------------------------------------------------------------------------------- /ui/src/utils/date/parseStandardTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/utils/date/parseStandardTime.ts -------------------------------------------------------------------------------- /ui/src/utils/date/toReadableTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/utils/date/toReadableTime.ts -------------------------------------------------------------------------------- /ui/src/utils/dom/isFocusedToInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/utils/dom/isFocusedToInput.ts -------------------------------------------------------------------------------- /ui/src/utils/goify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/utils/goify.ts -------------------------------------------------------------------------------- /ui/src/utils/last.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/utils/last.ts -------------------------------------------------------------------------------- /ui/src/utils/random.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/utils/random.ts -------------------------------------------------------------------------------- /ui/src/utils/shows/getAirDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/utils/shows/getAirDetails.ts -------------------------------------------------------------------------------- /ui/src/utils/shows/getVideoDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/utils/shows/getVideoDetails.ts -------------------------------------------------------------------------------- /ui/src/utils/shows/getVideoPreviewImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/utils/shows/getVideoPreviewImage.ts -------------------------------------------------------------------------------- /ui/src/utils/toSearchIndexObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/utils/toSearchIndexObject.ts -------------------------------------------------------------------------------- /ui/src/utils/toSearchObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/src/utils/toSearchObject.ts -------------------------------------------------------------------------------- /ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonsea0927/careflix/HEAD/ui/tsconfig.json --------------------------------------------------------------------------------