@clickview/player 0.0.0-rc.12 → 0.0.0-rc.14
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.
- package/.storybook/stories/Clips.stories.tsx +0 -1
- package/dist/libs/common/src/react/utils/ArrayHelper.d.ts +44 -0
- package/dist/libs/shared/src/components/div-button/DivButton.d.ts +10 -0
- package/dist/libs/shared/src/components/widgets/items/resource-widget-item/ResourceWidgetItem.d.ts +1 -5
- package/dist/libs/shared/src/interfaces/models/Video.d.ts +3 -2
- package/dist/player-app.css +20 -98
- package/dist/player-app.js +752 -1152
- package/dist/projects/player/src/components/chapter-bar-items/chapter-bar-item.d.ts +3 -3
- package/dist/projects/player/src/components/chapter-bar-items/chapter-bar-items.d.ts +3 -3
- package/dist/projects/player/src/components/chapter-bar-items/chapter-bar-load-progress.d.ts +3 -3
- package/dist/projects/player/src/components/chapter-bar-items/chapter-bar-play-progress.d.ts +3 -3
- package/dist/projects/player/src/components/chapters-button/chapter-menu-item.d.ts +3 -3
- package/dist/projects/player/src/components/thumbnail-display/thumbnail-display.d.ts +3 -3
- package/dist/projects/player/src/interfaces/models/PlaybackObject.d.ts +8 -0
- package/dist/projects/player/src/players/base-player.d.ts +3 -0
- package/dist/projects/player/src/players/player.d.ts +1 -5
- package/dist/projects/player/src/plugins/create-clip-button-plugin/components/create-clip-button.d.ts +1 -0
- package/dist/projects/player/src/plugins/create-clip-button-plugin/create-clip-button-plugin.d.ts +10 -0
- package/dist/projects/player/src/plugins/create-clip-plugin/components/clip-timepoint-selector/clip-timepoint-selector-handle.d.ts +3 -3
- package/dist/projects/player/src/plugins/create-clip-plugin/components/clip-timepoint-selector/clip-timepoint-selector.d.ts +4 -4
- package/dist/projects/player/src/plugins/interactive-plugin/components/create-components/create-missing-word/create-missing-word.d.ts +0 -0
- package/dist/projects/player/src/plugins/interactive-plugin/components/create-components/create-multiple-choice/create-multiple-choice.d.ts +0 -0
- package/dist/projects/player/src/plugins/interactive-plugin/components/create-components/create-multiple-choice/multiple-choice-answer.d.ts +0 -0
- package/dist/projects/player/src/plugins/interactive-plugin/components/create-components/create-short-answer.ts/create-short-answer.d.ts +2 -2
- package/dist/projects/player/src/plugins/interactive-plugin/components/create-components/create-true-or-false/create-true-or-false.d.ts +0 -0
- package/dist/projects/player/src/plugins/interactive-plugin/components/create-components/create-true-or-false/true-or-false-answer.d.ts +0 -0
- package/dist/projects/player/src/plugins/interactive-plugin/components/create-components/create-type-selector/create-type-selector.d.ts +0 -1
- package/dist/projects/player/src/plugins/interactive-plugin/components/feedback-tooltip/feedback-tooltip.d.ts +6 -0
- package/dist/projects/player/src/plugins/interactive-plugin/components/required-star/required-star.d.ts +2 -0
- package/dist/projects/player/src/plugins/interactive-plugin/components/seek-bar/interactive-bar-items.d.ts +4 -4
- package/dist/projects/player/src/plugins/interactive-plugin/interactive-plugin.d.ts +1 -0
- package/dist/projects/player/src/plugins/picture-in-picture-plugin/picture-in-picture-plugin.d.ts +0 -0
- package/dist/projects/player/src/plugins/resources-plugin/components/resource-menu-item/resource-menu-item.d.ts +0 -30
- package/dist/projects/player/src/plugins/resources-plugin/components/resources-button/resources-button.d.ts +0 -1
- package/dist/projects/player/src/plugins/resources-plugin/resources-plugin.d.ts +0 -14
- package/dist/projects/player/src/plugins/touch-controls-plugin/components/touch-controls/touch-controls.d.ts +3 -3
- package/package.json +3 -3
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import * as _ from 'underscore';
|
|
2
|
+
import { HashObject } from '../interfaces';
|
|
3
|
+
declare type Iterator<T, TResult = T> = (value: T, index: number, list: T[]) => TResult;
|
|
4
|
+
export declare const ArrayHelper: {
|
|
5
|
+
first<T>(arr: T[]): T;
|
|
6
|
+
firstFew<T_1>(arr: T_1[], count: number): T_1[];
|
|
7
|
+
last<T_2>(arr: T_2[]): T_2;
|
|
8
|
+
lastFew<T_3>(arr: T_3[], count: number): T_3[];
|
|
9
|
+
max<T_4, TResult = T_4>(arr: T_4[], iterator?: Iterator<T_4, TResult>): T_4;
|
|
10
|
+
cloneAndReplaceAtIdx<T_5>(arr: T_5[], idx: number, newVal: T_5, defaultValue?: any): T_5[];
|
|
11
|
+
moveItem<T_6>(arr: T_6[], fromIdx: number, toIdx: number): T_6[];
|
|
12
|
+
isEmpty<T_7>(arr: T_7[]): boolean;
|
|
13
|
+
findIndex<T_8>(arr: T_8[], predicate: (item: T_8) => boolean): number;
|
|
14
|
+
findWhere<T_9, U extends HashObject<any>>(arr: T_9[], properties: U): T_9;
|
|
15
|
+
where<T_10, U_1 extends HashObject<any>>(arr: T_10[], properties: U_1): T_10[];
|
|
16
|
+
groupBy<T_11>(arr: T_11[], property: string): {
|
|
17
|
+
[index: string]: T_11[];
|
|
18
|
+
};
|
|
19
|
+
flatten<T_12>(arr: T_12[], shallow?: boolean): T_12[];
|
|
20
|
+
intersection<T_13>(...arrays: T_13[][]): T_13[];
|
|
21
|
+
/**
|
|
22
|
+
* Add a value to an array, or if it is already in the array, remove it.
|
|
23
|
+
*
|
|
24
|
+
* @param arr array of values
|
|
25
|
+
* @param value value to be added or removed.
|
|
26
|
+
*/
|
|
27
|
+
addOrRemove<T_14 = string | number>(arr: T_14[], value: T_14): T_14[];
|
|
28
|
+
/**
|
|
29
|
+
* This is the same addOrRemove function above, except it doesn't mutate the array in the argument
|
|
30
|
+
* and returns a branch new array.
|
|
31
|
+
*/
|
|
32
|
+
addOrRemoveImmutable<T_15>(arr: T_15[], value: T_15): T_15[];
|
|
33
|
+
/**
|
|
34
|
+
* Returns a (stably) sorted copy of list, ranked in ascending order
|
|
35
|
+
* by the results of running each value through iteratee.
|
|
36
|
+
*
|
|
37
|
+
* @param arr array of values
|
|
38
|
+
* @param iteratee an iterator function or a string name of the property to sort by.
|
|
39
|
+
*/
|
|
40
|
+
sortBy<T_16 extends HashObject<any>, TSort = T_16>(arr: T_16[], iteratee?: Iterator<T_16, TSort> | keyof T_16): T_16[];
|
|
41
|
+
chunk<T_17>(array: _.Collection<T_17>, count: number): T_17[][];
|
|
42
|
+
uniq<T_18 extends string | number | HashObject<any>, TSort_1 = T_18>(array: T_18[], iteratee?: Iterator<T_18, TSort_1> | keyof T_18): T_18[];
|
|
43
|
+
};
|
|
44
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
interface DivButtonProps extends React.ButtonHTMLAttributes<HTMLDivElement> {
|
|
3
|
+
onClick: (...args: any) => any;
|
|
4
|
+
}
|
|
5
|
+
/**
|
|
6
|
+
* This element lets us use `div` elements as buttons without losing the accessibility of
|
|
7
|
+
* a regular HTML button element
|
|
8
|
+
*/
|
|
9
|
+
export declare function DivButton(props: React.PropsWithChildren<DivButtonProps>): JSX.Element;
|
|
10
|
+
export {};
|
package/dist/libs/shared/src/components/widgets/items/resource-widget-item/ResourceWidgetItem.d.ts
CHANGED
|
@@ -3,15 +3,11 @@ import { Core } from 'libs/common/core';
|
|
|
3
3
|
import { HashObject } from 'libs/common/react/interfaces';
|
|
4
4
|
import { AnalyticsOptions } from 'libs/analytics/interfaces';
|
|
5
5
|
import { Resource, Link } from 'libs/shared/interfaces';
|
|
6
|
-
interface
|
|
6
|
+
export interface ResourceWidgetItemProps {
|
|
7
7
|
data: Resource | Link;
|
|
8
8
|
appLink: Core.AppLink;
|
|
9
9
|
analyticsData?: HashObject;
|
|
10
10
|
analyticsOptions?: AnalyticsOptions;
|
|
11
11
|
imageCdnUrl: string;
|
|
12
12
|
}
|
|
13
|
-
export declare function ResourceTile(props: ResourceTileProps): JSX.Element;
|
|
14
|
-
export interface ResourceWidgetItemProps extends ResourceTileProps {
|
|
15
|
-
}
|
|
16
13
|
export declare const ResourceWidgetItem: React.NamedExoticComponent<ResourceWidgetItemProps>;
|
|
17
|
-
export {};
|
|
@@ -27,8 +27,9 @@ export interface Video extends BaseObject {
|
|
|
27
27
|
restrictions?: RestrictedObject[];
|
|
28
28
|
lastProgressPoint?: number;
|
|
29
29
|
favouritedBy?: UserCollection;
|
|
30
|
-
|
|
31
|
-
|
|
30
|
+
_hasInteractives?: HasInteractive;
|
|
31
|
+
_videoProgress?: VideoProgress;
|
|
32
32
|
_hasCurriculumLinks?: boolean;
|
|
33
33
|
_curriculumLinks?: CurriculumLinks;
|
|
34
|
+
hasInteractives?: boolean;
|
|
34
35
|
}
|
package/dist/player-app.css
CHANGED
|
@@ -193,7 +193,7 @@
|
|
|
193
193
|
|
|
194
194
|
@font-face {
|
|
195
195
|
font-family: "CVPlayer";
|
|
196
|
-
src: url("data:application/font-woff;charset=utf-8;base64,
|
|
196
|
+
src: url("data:application/font-woff;charset=utf-8;base64,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") format("woff"); }
|
|
197
197
|
|
|
198
198
|
.cv-icon {
|
|
199
199
|
line-height: 1; }
|
|
@@ -246,6 +246,12 @@
|
|
|
246
246
|
.cv-icon-replay:before {
|
|
247
247
|
content: "\f10d"; }
|
|
248
248
|
|
|
249
|
+
.cv-icon-clip:before {
|
|
250
|
+
content: "\f10e"; }
|
|
251
|
+
|
|
252
|
+
.cv-icon-resources:before {
|
|
253
|
+
content: "\f10f"; }
|
|
254
|
+
|
|
249
255
|
.video-js .vjs-big-play-button .vjs-icon-placeholder:before, .vjs-button > .vjs-icon-placeholder:before, .video-js .vjs-modal-dialog, .vjs-modal-dialog .vjs-modal-dialog-content {
|
|
250
256
|
position: absolute;
|
|
251
257
|
top: 0;
|
|
@@ -1624,6 +1630,9 @@ video::-webkit-media-text-track-display {
|
|
|
1624
1630
|
text-shadow: none;
|
|
1625
1631
|
box-shadow: none; }
|
|
1626
1632
|
|
|
1633
|
+
.font-size-base {
|
|
1634
|
+
font-size: 0.875rem; }
|
|
1635
|
+
|
|
1627
1636
|
.vjs-resize-manager {
|
|
1628
1637
|
position: absolute;
|
|
1629
1638
|
top: 0;
|
|
@@ -1635,12 +1644,10 @@ video::-webkit-media-text-track-display {
|
|
|
1635
1644
|
|
|
1636
1645
|
.video-js *:focus:not(:focus-visible),
|
|
1637
1646
|
.video-js .vjs-menu *:focus:not(:focus-visible) {
|
|
1638
|
-
outline: none;
|
|
1639
|
-
background: none; }
|
|
1647
|
+
outline: none; }
|
|
1640
1648
|
|
|
1641
1649
|
.js-focus-visible .video-js *:focus:not(.focus-visible) {
|
|
1642
|
-
outline: none;
|
|
1643
|
-
background: none; }
|
|
1650
|
+
outline: none; }
|
|
1644
1651
|
|
|
1645
1652
|
.video-js .vjs-local-cache-indicator {
|
|
1646
1653
|
position: absolute;
|
|
@@ -1698,6 +1705,9 @@ video::-webkit-media-text-track-display {
|
|
|
1698
1705
|
.video-js .cv-collapsed > button {
|
|
1699
1706
|
display: none; }
|
|
1700
1707
|
|
|
1708
|
+
.video-js button.cv-collapsed {
|
|
1709
|
+
display: none; }
|
|
1710
|
+
|
|
1701
1711
|
.video-js .vjs-button > .vjs-icon-placeholder:before {
|
|
1702
1712
|
font-size: 1.3em; }
|
|
1703
1713
|
|
|
@@ -2105,94 +2115,11 @@ li.cv-chapter-menu-item {
|
|
|
2105
2115
|
text-shadow: none;
|
|
2106
2116
|
opacity: 1; }
|
|
2107
2117
|
|
|
2108
|
-
.cv
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
position: relative;
|
|
2114
|
-
width: 100%;
|
|
2115
|
-
height: 100%; }
|
|
2116
|
-
.cv--thumbnail--3lfBf img {
|
|
2117
|
-
position: absolute;
|
|
2118
|
-
top: 0;
|
|
2119
|
-
bottom: 0;
|
|
2120
|
-
left: 0;
|
|
2121
|
-
right: 0; }
|
|
2122
|
-
|
|
2123
|
-
.cv--sixteenByNine--2LqZ8 {
|
|
2124
|
-
padding-bottom: 56.25%; }
|
|
2125
|
-
|
|
2126
|
-
.cv--nineBySixteen--136ry {
|
|
2127
|
-
padding-bottom: 177.77778%; }
|
|
2128
|
-
|
|
2129
|
-
.cv--oneByOne--2wYLa {
|
|
2130
|
-
padding-bottom: 100%; }
|
|
2131
|
-
|
|
2132
|
-
.cv--twoByThree--1eC6Q {
|
|
2133
|
-
padding-bottom: 150%; }
|
|
2134
|
-
|
|
2135
|
-
.cv--item--yzAZk {
|
|
2136
|
-
width: 25%; }
|
|
2137
|
-
@media (max-width: 768px) {
|
|
2138
|
-
.cv--item--yzAZk {
|
|
2139
|
-
width: 33.33333%; } }
|
|
2140
|
-
@media (max-width: 576px) {
|
|
2141
|
-
.cv--item--yzAZk {
|
|
2142
|
-
width: 50%; } }
|
|
2143
|
-
|
|
2144
|
-
.cv--background--2FYoc {
|
|
2145
|
-
height: 10rem; }
|
|
2146
|
-
@media (max-width: 992px) {
|
|
2147
|
-
.cv--background--2FYoc {
|
|
2148
|
-
height: 8rem; } }
|
|
2149
|
-
.cv--background--2FYoc:hover {
|
|
2150
|
-
text-decoration: none; }
|
|
2151
|
-
|
|
2152
|
-
.cv--thumbnailContainer--14YzS {
|
|
2153
|
-
height: 66.66667%;
|
|
2154
|
-
border-top-left-radius: 0.5rem;
|
|
2155
|
-
border-top-right-radius: 0.5rem;
|
|
2156
|
-
-webkit-filter: drop-shadow(0px -1px 4px rgba(0, 0, 0, 0.1));
|
|
2157
|
-
filter: drop-shadow(0px -1px 4px rgba(0, 0, 0, 0.1)); }
|
|
2158
|
-
|
|
2159
|
-
.cv--teacherPack--1H-bZ .cv--text--fDGTW {
|
|
2160
|
-
color: #38A2E8; }
|
|
2161
|
-
|
|
2162
|
-
.cv--teacherPack--1H-bZ .cv--background--2FYoc {
|
|
2163
|
-
background-color: #d8edfa; }
|
|
2164
|
-
|
|
2165
|
-
.cv--atomGuide--2UrFB .cv--text--fDGTW {
|
|
2166
|
-
color: #7A76E8; }
|
|
2167
|
-
|
|
2168
|
-
.cv--atomGuide--2UrFB .cv--background--2FYoc {
|
|
2169
|
-
background-color: #e4e3fa; }
|
|
2170
|
-
|
|
2171
|
-
.cv--studentActivity--3bk9l .cv--text--fDGTW {
|
|
2172
|
-
color: #B679C7; }
|
|
2173
|
-
|
|
2174
|
-
.cv--studentActivity--3bk9l .cv--background--2FYoc {
|
|
2175
|
-
background-color: #f1e5f4; }
|
|
2176
|
-
|
|
2177
|
-
.cv--additionalMaterials--3KgEr .cv--text--fDGTW {
|
|
2178
|
-
color: #5DC786; }
|
|
2179
|
-
|
|
2180
|
-
.cv--additionalMaterials--3KgEr .cv--background--2FYoc {
|
|
2181
|
-
background-color: #cfeedb; }
|
|
2182
|
-
|
|
2183
|
-
.video-js .cv-resource-item {
|
|
2184
|
-
padding: 0.5em 1em; }
|
|
2185
|
-
|
|
2186
|
-
.video-js .cv-resources-button {
|
|
2187
|
-
cursor: pointer; }
|
|
2188
|
-
.video-js .cv-resources-button .vjs-icon-placeholder::before {
|
|
2189
|
-
font-family: CVPlayer;
|
|
2190
|
-
/* Defined in font/icon-map.js */
|
|
2191
|
-
/* TODO: Add correct icon to fonts*/
|
|
2192
|
-
content: "R"; }
|
|
2193
|
-
|
|
2194
|
-
.video-js .cv-create-short-answer {
|
|
2195
|
-
color: #313543; }
|
|
2118
|
+
.video-js .cv-create-clip-button .vjs-icon-placeholder::before {
|
|
2119
|
+
font-family: CVPlayer;
|
|
2120
|
+
/* Defined in font/icon-map.js */
|
|
2121
|
+
/* TODO: Add correct icon to fonts*/
|
|
2122
|
+
content: "\f10e"; }
|
|
2196
2123
|
|
|
2197
2124
|
.video-js .cv-interaction-title {
|
|
2198
2125
|
position: relative;
|
|
@@ -2263,11 +2190,6 @@ li.cv-chapter-menu-item {
|
|
|
2263
2190
|
display: flex;
|
|
2264
2191
|
margin-top: 1.25rem; }
|
|
2265
2192
|
|
|
2266
|
-
.video-js .cv-interactive-question {
|
|
2267
|
-
color: #313543;
|
|
2268
|
-
font-size: 1rem; }
|
|
2269
|
-
|
|
2270
|
-
|
|
2271
2193
|
.video-js .cv-interactive-container {
|
|
2272
2194
|
position: absolute;
|
|
2273
2195
|
top: 0;
|