@clickview/online 0.0.4-dev.1 → 0.0.4-rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. package/dist/en.json +1 -1
  2. package/dist/libs/analytics/src/clients/CollectionApiClient.d.ts +0 -1
  3. package/dist/libs/analytics/src/interfaces/AnalyticsTypes.d.ts +6 -5
  4. package/dist/libs/analytics/src/interfaces/User.d.ts +0 -11
  5. package/dist/libs/analytics/src/models/CollectionEvent.d.ts +0 -6
  6. package/dist/libs/analytics/src/utils/CollectionApiClientHelper.d.ts +1 -1
  7. package/dist/libs/common/src/react/utils/TextHelper.d.ts +0 -3
  8. package/dist/libs/shared/src/components/actions/ActionButton.d.ts +2 -6
  9. package/dist/libs/shared/src/components/actions/ActionsDropdown.d.ts +1 -2
  10. package/dist/libs/shared/src/components/widgets/fixed-widget/FixedWidgetUtils.d.ts +1 -1
  11. package/dist/libs/shared/src/hooks/UseLazyLoad.d.ts +1 -1
  12. package/dist/libs/shared/src/interfaces/models/Library.d.ts +0 -2
  13. package/dist/libs/shared/src/interfaces/models/Video.d.ts +2 -1
  14. package/dist/libs/shared/src/interfaces/models/Widget.d.ts +1 -2
  15. package/dist/online-app.css +2 -6
  16. package/dist/online-app.js +3 -3
  17. package/dist/projects/online/src/index.d.ts +1 -6
  18. package/dist/projects/online/src/shared/constants/Actions.d.ts +0 -19
  19. package/dist/projects/online/src/shared/constants/RadioChannels.d.ts +0 -2
  20. package/package.json +3 -3
  21. package/typings/libs/FutureCoreHelper.d.ts +0 -5
  22. package/dist/libs/analytics/src/utils/UrlHelper.d.ts +0 -3
  23. package/dist/libs/common/src/react/constants/ViewModelActions.d.ts +0 -3
  24. package/dist/libs/common/src/react/interfaces/ViewModelAction.d.ts +0 -5
  25. package/dist/libs/common/src/react/interfaces/ViewModelPayload.d.ts +0 -5
  26. package/dist/libs/common/src/react/reducers/ViewModelReducer.d.ts +0 -3
  27. package/dist/libs/shared/src/components/svgs/clickview-logo/ClickViewLogo.d.ts +0 -3
  28. package/dist/online-app.css.map +0 -1
  29. package/dist/online-app.js.map +0 -1
  30. package/dist/projects/online/src/apps/libraries/LibrariesApplication.d.ts +0 -11
  31. package/dist/projects/online/src/apps/libraries/components/libraries-list/LibrariesList.d.ts +0 -7
  32. package/dist/projects/online/src/apps/libraries/components/libraries-list/partial-loading/PartialLibrariesList.d.ts +0 -2
  33. package/dist/projects/online/src/apps/libraries/components/library-item/LibraryItem.d.ts +0 -7
  34. package/dist/projects/online/src/apps/libraries/flight-requests/LibrariesRequests.d.ts +0 -7
  35. package/dist/projects/online/src/apps/libraries/utils/LibraryHelper.d.ts +0 -9
  36. package/dist/projects/online/src/apps/libraries/views/libraries/LibrariesView.d.ts +0 -2
  37. package/dist/projects/online/src/apps/movies-and-tv/MoviesAndTvApplication.d.ts +0 -12
  38. package/dist/projects/online/src/apps/movies-and-tv/views/movies-and-tv/MoviesAndTvView.d.ts +0 -2
  39. package/dist/projects/online/src/apps/playlists/OnlinePlaylistsApplication.d.ts +0 -32
  40. package/dist/projects/online/src/apps/playlists/components/playlist-header/PartialPlaylistHeader.d.ts +0 -2
  41. package/dist/projects/online/src/apps/playlists/components/video-list/VideoList.d.ts +0 -8
  42. package/dist/projects/online/src/apps/playlists/flight-requests/ClassificationRequests.d.ts +0 -4
  43. package/dist/projects/online/src/apps/playlists/views/play-shared-playlist/PlaySharedPlaylistView.d.ts +0 -11
  44. package/dist/projects/online/src/apps/playlists/views/play-shared-playlist/index.d.ts +0 -1
  45. package/dist/projects/online/src/apps/playlists/views/shared-playlist/SharedPlaylistView.d.ts +0 -6
  46. package/dist/projects/online/src/apps/subjects/views/classification-playlist/components/PartialPlaylistHeader.d.ts +0 -2
  47. package/dist/projects/online/src/shared/components/info-banner/InfoBanner.d.ts +0 -2
  48. package/dist/projects/online/src/shared/hooks/UseMixinVideoRestrictions.d.ts +0 -14
@@ -1,11 +0,0 @@
1
- import { Core } from "../../../../../libs/common/src/backbone";
2
- import { ReactApplication } from "../../../../../libs/common/src/react/core/ReactApplication";
3
- import { OnlineLayoutViewOptions, OnlineLayoutView } from "../../shared/layouts";
4
- export declare class LibrariesApplication extends ReactApplication {
5
- protected layout: OnlineLayoutView;
6
- get name(): string;
7
- static get router(): any;
8
- get channelName(): string;
9
- get layoutOptions(): Core.LayoutOptions<OnlineLayoutViewOptions>;
10
- index(): void;
11
- }
@@ -1,7 +0,0 @@
1
- /// <reference types="react" />
2
- import { Library } from "../../../../../../../libs/shared/src/interfaces";
3
- interface LibrariesListProps {
4
- libraries: Library[];
5
- }
6
- export declare function LibrariesList(props: LibrariesListProps): JSX.Element;
7
- export {};
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare function PartialLibrariesList(): JSX.Element;
@@ -1,7 +0,0 @@
1
- /// <reference types="react" />
2
- import { Library } from "../../../../../../../libs/shared/src/interfaces";
3
- interface LibraryItemProps {
4
- library: Library;
5
- }
6
- export declare function LibraryItem(props: LibraryItemProps): JSX.Element;
7
- export {};
@@ -1,7 +0,0 @@
1
- import { Flight } from "../../../../../../libs/common/src/react";
2
- export declare const LibrariesRequests: {
3
- libraries(): Flight.Request;
4
- interactives(): Flight.Request;
5
- recentLibraryVideos(id: string): Flight.Request;
6
- mostRecentVideos(): Flight.Request;
7
- };
@@ -1,9 +0,0 @@
1
- import { Library } from "../../../../../../libs/shared/src/interfaces";
2
- export declare const LibraryHelper: {
3
- isPrimaryLibrary(library: Library): boolean;
4
- isSecondaryLibrary(library: Library): boolean;
5
- isMoviesAndTv(library: Library): boolean;
6
- isHostedLibrary(library: Library): boolean;
7
- isCustomLibrary(library: Library): boolean;
8
- isSupplementaryLibrary(library: Library): boolean;
9
- };
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare function LibrariesView(): JSX.Element;
@@ -1,12 +0,0 @@
1
- import { Core } from "../../../../../libs/common/src/backbone";
2
- import { ReactApplication } from "../../../../../libs/common/src/react/core/ReactApplication";
3
- import { OnlineLayoutViewOptions, OnlineLayoutView } from "../../shared/layouts";
4
- export declare class MoviesAndTvApplication extends ReactApplication {
5
- protected layout: OnlineLayoutView;
6
- get name(): string;
7
- static get router(): any;
8
- get channelName(): string;
9
- get layoutOptions(): Core.LayoutOptions<OnlineLayoutViewOptions>;
10
- index(): void;
11
- addToPlaylist(videoId: string): void;
12
- }
@@ -1,2 +0,0 @@
1
- /// <reference types="react" />
2
- export declare function MoviesAndTvView(): JSX.Element;
@@ -1,32 +0,0 @@
1
- import { Core } from "../../../../../libs/common/src/backbone";
2
- import { ReactApplication } from "../../../../../libs/common/src/react/core/ReactApplication";
3
- import { HashObject } from "../../../../../libs/common/src/react/interfaces/HashObject";
4
- import { OnlineLayoutView, OnlineLayoutViewOptions } from "../../shared/layouts";
5
- export declare class PlaylistApplication extends ReactApplication {
6
- protected layout: OnlineLayoutView;
7
- private currentPlaylistId;
8
- initialize(): void;
9
- get name(): string;
10
- static get router(): any;
11
- get channelName(): string;
12
- get layoutOptions(): Core.LayoutOptions<OnlineLayoutViewOptions>;
13
- index(params: HashObject): void;
14
- playlist(playlistId: string): void;
15
- newPlaylist(): void;
16
- editPlaylist(playlistId: string): void;
17
- deletePlaylist(playlistId: string): void;
18
- removeVideoFromPlaylist(videoId: string, playlistId: string): void;
19
- playPlaylistVideo(playlistId: string, videoId: string): void;
20
- sharePlaylist(playlistId: string): void;
21
- sharedPlaylist(shareCode: string): void;
22
- playSharedPlaylistVideo(shareCode: string, videoId: string): void;
23
- accessDenied(): void;
24
- notFound(): void;
25
- migrationInProgress(): void;
26
- private renderLeftNav;
27
- private setCurrentPlaylist;
28
- private hideLeftNav;
29
- private getPopupProps;
30
- private getVideoAppLink;
31
- private getPhrase;
32
- }
@@ -1,2 +0,0 @@
1
- import * as React from 'react';
2
- export declare function PartialPlaylistHeader(): React.ReactElement;
@@ -1,8 +0,0 @@
1
- /// <reference types="react" />
2
- import { Video } from "../../../../../../../libs/shared/src/interfaces";
3
- import { VideoItemComponentProps } from './VideoItemComponent';
4
- interface VideoListProps extends Omit<VideoItemComponentProps, 'video' | 'idx'> {
5
- videos: Video[];
6
- }
7
- export declare const VideoList: (props: VideoListProps) => JSX.Element;
8
- export {};
@@ -1,4 +0,0 @@
1
- import { Flight } from "../../../../../../libs/common/src/react";
2
- export declare const ClassificationRequests: {
3
- classification(id: string): Flight.Request;
4
- };
@@ -1,11 +0,0 @@
1
- import * as React from 'react';
2
- import { Core } from "../../../../../../../libs/common/src/backbone";
3
- import { Playlist, Video } from "../../../../../../../libs/shared/src/interfaces";
4
- interface PlaySharedPlaylistViewProps {
5
- shareCode: string;
6
- videoId: string;
7
- getPlaylistAppLink: (playlist: Playlist) => Core.AppLink;
8
- getVideoAppLink: (video: Video) => Core.AppLink;
9
- }
10
- export declare function PlaySharedPlaylistView(props: PlaySharedPlaylistViewProps): React.ReactElement;
11
- export {};
@@ -1 +0,0 @@
1
- export * from './PlayPlaylistView';
@@ -1,6 +0,0 @@
1
- import * as React from 'react';
2
- interface SharedPlaylistViewProps {
3
- shareCode: string;
4
- }
5
- export declare function SharedPlaylistView(props: SharedPlaylistViewProps): React.ReactElement;
6
- export {};
@@ -1,2 +0,0 @@
1
- import * as React from 'react';
2
- export declare function PartialPlaylistHeader(): React.ReactElement;
@@ -1,2 +0,0 @@
1
- import React from 'react';
2
- export declare function InfoBanner(props: React.PropsWithChildren<{}>): JSX.Element;
@@ -1,14 +0,0 @@
1
- import { Flight } from "../../../../../libs/common/src/react";
2
- import { VideoCollection, Video, Restriction } from "../../../../../libs/shared/src/interfaces";
3
- interface MixinVideoRestrictionsResponse {
4
- response: Flight.Response<Restriction[]>;
5
- fetchRestrictions: () => void;
6
- }
7
- /**
8
- *
9
- * @param videos videos to fetch restrictions for
10
- *
11
- * Returns a function to re-fetch restrictions
12
- */
13
- export declare function useMixinVideoRestrictions(videos: VideoCollection | Video[]): MixinVideoRestrictionsResponse;
14
- export {};