@capytale/meta-player 0.8.3 → 0.9.0

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 (106) hide show
  1. package/.prettierrc.json +4 -4
  2. package/LICENSE +674 -674
  3. package/README.md +12 -12
  4. package/eslint.config.js +28 -28
  5. package/index.html +15 -15
  6. package/package.json +60 -60
  7. package/public/themes/lara-dark-blue/theme.css +7015 -7015
  8. package/public/themes/lara-light-blue/theme.css +7005 -7005
  9. package/src/App.tsx +140 -139
  10. package/src/AppRedux.css +39 -39
  11. package/src/MetaPlayer.tsx +170 -170
  12. package/src/activityJs.ts +7 -7
  13. package/src/app/createAppSlice.ts +6 -6
  14. package/src/app/hooks.ts +12 -12
  15. package/src/app/store.ts +52 -52
  16. package/src/app.module.scss +80 -80
  17. package/src/demo.tsx +87 -87
  18. package/src/external/prime.ts +5 -5
  19. package/src/features/activityData/ExitWarning.ts +28 -28
  20. package/src/features/activityData/IsAntiCheatExitDetectionDisabledSetter.tsx +19 -19
  21. package/src/features/activityData/IsDirtySetter.tsx +17 -17
  22. package/src/features/activityData/MetaPlayerOptionsSetter.tsx +41 -41
  23. package/src/features/activityData/activityDataSlice.ts +252 -256
  24. package/src/features/activityData/activityJsData.ts +82 -82
  25. package/src/features/activityData/hooks.ts +34 -34
  26. package/src/features/activityData/metaPlayerOptions.ts +23 -23
  27. package/src/features/activityData/uiState.ts +20 -20
  28. package/src/features/activityJS/ActivityJSProvider.tsx +339 -339
  29. package/src/features/activityJS/AfterResetAction.tsx +23 -23
  30. package/src/features/activityJS/AfterSaveAction.tsx +23 -23
  31. package/src/features/activityJS/BeforeResetAction.tsx +23 -23
  32. package/src/features/activityJS/BeforeSaveAction.tsx +23 -23
  33. package/src/features/activityJS/Saver.tsx +167 -167
  34. package/src/features/activityJS/hooks.ts +85 -85
  35. package/src/features/activityJS/internal-hooks.ts +96 -96
  36. package/src/features/activityJS/saverSlice.ts +96 -96
  37. package/src/features/activitySettings/ActivitySettingsSetter.tsx +21 -21
  38. package/src/features/activitySettings/hooks.ts +12 -12
  39. package/src/features/activitySettings/index.tsx +43 -43
  40. package/src/features/activitySettings/store.ts +108 -108
  41. package/src/features/activitySettings/style.module.scss +8 -8
  42. package/src/features/activitySettings/types.ts +140 -140
  43. package/src/features/activitySettings/ui.tsx +299 -299
  44. package/src/features/functionalities/AttachedFilesFunctionality.ts +23 -23
  45. package/src/features/functionalities/PreviewDialog.tsx +83 -83
  46. package/src/features/functionalities/functionalitiesSlice.ts +98 -98
  47. package/src/features/functionalities/hooks.ts +70 -70
  48. package/src/features/layout/hooks.ts +7 -7
  49. package/src/features/layout/layoutSlice.ts +93 -90
  50. package/src/features/navbar/activity-info/index.tsx +54 -54
  51. package/src/features/navbar/activity-info/style.module.scss +38 -38
  52. package/src/features/navbar/activity-menu/ActivityQuickActions.tsx +57 -57
  53. package/src/features/navbar/activity-menu/index.tsx +154 -154
  54. package/src/features/navbar/activity-menu/style.module.scss +7 -7
  55. package/src/features/navbar/capytale-menu/CloneDialog.tsx +75 -75
  56. package/src/features/navbar/capytale-menu/Countdown.tsx +312 -312
  57. package/src/features/navbar/capytale-menu/CountdownAndSaveButton.tsx +115 -115
  58. package/src/features/navbar/capytale-menu/index.tsx +260 -260
  59. package/src/features/navbar/capytale-menu/style.module.scss +8 -8
  60. package/src/features/navbar/index.tsx +39 -39
  61. package/src/features/navbar/navbarSlice.ts +79 -79
  62. package/src/features/navbar/review-navbar/GradingNav.tsx +128 -128
  63. package/src/features/navbar/review-navbar/index.tsx +18 -18
  64. package/src/features/navbar/review-navbar/style.module.scss +22 -22
  65. package/src/features/navbar/sidebars/ActivitySidebarActions.tsx +57 -57
  66. package/src/features/navbar/sidebars/AttachedFilesSidebarContent.module.scss +43 -43
  67. package/src/features/navbar/sidebars/AttachedFilesSidebarContent.tsx +181 -181
  68. package/src/features/navbar/sidebars/SettingsSidebarContent.tsx +192 -192
  69. package/src/features/navbar/sidebars/style.module.scss +15 -15
  70. package/src/features/navbar/student-utils.ts +11 -11
  71. package/src/features/navbar/style.module.scss +65 -65
  72. package/src/features/pedago/InstructionsEditor.tsx +102 -102
  73. package/src/features/pedago/PdfEditor.tsx +91 -91
  74. package/src/features/pedago/PedagoCommands.tsx +353 -353
  75. package/src/features/pedago/SharedNotesEditor.tsx +144 -144
  76. package/src/features/pedago/hooks.ts +99 -0
  77. package/src/features/pedago/index.tsx +197 -207
  78. package/src/features/pedago/style.module.scss +233 -233
  79. package/src/features/theming/ThemeSwitcher.tsx +51 -51
  80. package/src/features/theming/hooks.ts +6 -6
  81. package/src/features/theming/themingSlice.ts +93 -93
  82. package/src/features/toast.tsx +38 -38
  83. package/src/hooks/index.ts +16 -16
  84. package/src/index.css +132 -132
  85. package/src/index.ts +90 -90
  86. package/src/logo.svg +1 -1
  87. package/src/my_json_data.js +4146 -4146
  88. package/src/settings.ts +6 -6
  89. package/src/types.ts +9 -9
  90. package/src/utils/ButtonDoubleIcon.tsx +35 -35
  91. package/src/utils/CardSelector.tsx +41 -41
  92. package/src/utils/ErrorBoundary.tsx +41 -41
  93. package/src/utils/PopupButton.tsx +134 -134
  94. package/src/utils/activity.ts +8 -8
  95. package/src/utils/breakpoints.ts +4 -4
  96. package/src/utils/capytale.ts +10 -10
  97. package/src/utils/clipboard.ts +11 -11
  98. package/src/utils/download.ts +7 -7
  99. package/src/utils/equality.ts +32 -32
  100. package/src/utils/server-clock.ts +42 -42
  101. package/src/utils/style.module.scss +45 -45
  102. package/src/utils/useFullscreen.ts +65 -65
  103. package/src/vite-env.d.ts +1 -1
  104. package/tsconfig.json +28 -28
  105. package/tsconfig.node.json +9 -9
  106. package/vite.config.ts +11 -11
package/src/App.tsx CHANGED
@@ -1,139 +1,140 @@
1
- import { Splitter, SplitterPanel } from "primereact/splitter";
2
- import Navbar from "./features/navbar";
3
-
4
- import styles from "./app.module.scss";
5
- import Pedago from "./features/pedago";
6
- import { useAppDispatch, useAppSelector } from "./app/hooks";
7
- import { selectThemeIsDark } from "./features/theming/themingSlice";
8
-
9
- import { Ripple } from "primereact/ripple";
10
- import { classNames } from "primereact/utils";
11
- import {
12
- selectIsPedagoVisible,
13
- selectOrientation,
14
- selectShowSaveForStudents,
15
- toggleIsPedagoVisible,
16
- } from "./features/layout/layoutSlice";
17
- import { FC, KeyboardEvent, PropsWithChildren, useCallback } from "react";
18
- import { Tooltip } from "primereact/tooltip";
19
- import {
20
- selectHasGradingOrComments,
21
- selectHasInstructions,
22
- selectIsDirty,
23
- selectMode,
24
- selectShowSaveButton,
25
- } from "./features/activityData/activityDataSlice";
26
- import settings from "./settings";
27
- import ReviewNavbar from "./features/navbar/review-navbar";
28
- import { useSave } from "./features/activityData/hooks";
29
- import PreviewDialog from "./features/functionalities/PreviewDialog";
30
-
31
- type AppProps = PropsWithChildren<{}>;
32
-
33
- const App: FC<AppProps> = (props) => {
34
- const isDark = useAppSelector(selectThemeIsDark) as boolean;
35
- const mode = useAppSelector(selectMode);
36
- const isHorizontal = useAppSelector(selectOrientation) === "horizontal";
37
- const isPedagoVisible = useAppSelector(selectIsPedagoVisible) as boolean;
38
- const hasInstructions = useAppSelector(selectHasInstructions);
39
- const hasGradingOrComments = useAppSelector(selectHasGradingOrComments);
40
- const hasPedago =
41
- hasInstructions || hasGradingOrComments || mode === "review";
42
- const dispatch = useAppDispatch();
43
- const showPedago = hasPedago && isPedagoVisible;
44
- const isDirty = useAppSelector(selectIsDirty);
45
- const save = useSave();
46
-
47
- const showSaveButton = useAppSelector(selectShowSaveButton);
48
- const showSaveForStudents = useAppSelector(selectShowSaveForStudents);
49
- const hasSaveButton =
50
- showSaveButton && !(mode === "assignment" && !showSaveForStudents);
51
-
52
- const handleCtrlS = useCallback(
53
- (e: KeyboardEvent<HTMLDivElement>) => {
54
- if ((e.ctrlKey || e.metaKey) && e.key === "s") {
55
- e.preventDefault();
56
- if (hasSaveButton && isDirty) save(); // Checks if can save inside of save()
57
- }
58
- },
59
- [hasSaveButton, isDirty, save],
60
- );
61
-
62
- const pedagoOpenLabel = hasPedago
63
- ? "Afficher les consignes"
64
- : mode === "create"
65
- ? "Ce type d'activité n'accepte pas de consigne"
66
- : "Pas de consignes ni de note";
67
-
68
- return (
69
- <div
70
- className={classNames(
71
- styles.app,
72
- isDark ? "dark-theme" : "light-theme",
73
- isHorizontal ? "layout-horizontal" : "layout-vertical",
74
- )}
75
- onKeyDown={handleCtrlS}
76
- >
77
- <div className={styles.navbarContainer}>
78
- <Navbar />
79
- {mode === "review" && <ReviewNavbar />}
80
- </div>
81
- <div className={styles.pedagoContainer} data-show-pedago={showPedago}>
82
- <div
83
- className={classNames(
84
- styles.hiddenPedago,
85
- hasPedago ? null : styles.noPedago,
86
- )}
87
- >
88
- <div
89
- className={classNames(
90
- styles.hiddenPedagoButton,
91
- hasPedago ? "p-ripple" : null,
92
- )}
93
- onClick={
94
- hasPedago ? () => dispatch(toggleIsPedagoVisible()) : undefined
95
- }
96
- data-pr-tooltip={pedagoOpenLabel}
97
- aria-label={pedagoOpenLabel}
98
- role={hasPedago ? "button" : "note"}
99
- >
100
- <i
101
- className={classNames(
102
- "pi",
103
- hasPedago
104
- ? isHorizontal
105
- ? "pi-angle-double-down"
106
- : "pi-angle-double-right"
107
- : "pi-minus-circle",
108
- )}
109
- />
110
- <Ripple />
111
- </div>
112
- <Tooltip
113
- target={"." + styles.hiddenPedagoButton}
114
- showDelay={settings.TOOLTIP_SHOW_DELAY}
115
- position={isHorizontal ? "bottom" : "right"}
116
- mouseTrack={!isHorizontal}
117
- />
118
- </div>
119
- <Splitter
120
- className={styles.appPedagoSplitter}
121
- layout={isHorizontal ? "vertical" : "horizontal"}
122
- >
123
- <SplitterPanel minSize={15} size={30} className={styles.pedagoPanel}>
124
- <Pedago key="pedago" />
125
- </SplitterPanel>
126
- <SplitterPanel minSize={40} size={70} className={styles.contentPanel}>
127
- <div className="meta-player-content-cover"></div>
128
- <div id="meta-player-content" aria-label="Activité">
129
- {props.children}
130
- </div>
131
- </SplitterPanel>
132
- </Splitter>
133
- </div>
134
- <PreviewDialog />
135
- </div>
136
- );
137
- };
138
-
139
- export default App;
1
+ import { Splitter, SplitterPanel } from "primereact/splitter";
2
+ import Navbar from "./features/navbar";
3
+
4
+ import styles from "./app.module.scss";
5
+ import Pedago from "./features/pedago";
6
+ import { useAppDispatch, useAppSelector } from "./app/hooks";
7
+ import { selectThemeIsDark } from "./features/theming/themingSlice";
8
+
9
+ import { Ripple } from "primereact/ripple";
10
+ import { classNames } from "primereact/utils";
11
+ import {
12
+ selectShowSaveForStudents,
13
+ setIsPedagoVisible,
14
+ } from "./features/layout/layoutSlice";
15
+ import {
16
+ FC,
17
+ KeyboardEvent,
18
+ PropsWithChildren,
19
+ useCallback,
20
+ useMemo,
21
+ } from "react";
22
+ import { Tooltip } from "primereact/tooltip";
23
+ import {
24
+ selectIsDirty,
25
+ selectMode,
26
+ selectShowSaveButton,
27
+ } from "./features/activityData/activityDataSlice";
28
+ import settings from "./settings";
29
+ import ReviewNavbar from "./features/navbar/review-navbar";
30
+ import { useSave } from "./features/activityData/hooks";
31
+ import PreviewDialog from "./features/functionalities/PreviewDialog";
32
+ import { usePedagoOptions } from "./features/pedago/hooks";
33
+
34
+ type AppProps = PropsWithChildren<{}>;
35
+
36
+ const App: FC<AppProps> = (props) => {
37
+ const isDark = useAppSelector(selectThemeIsDark) as boolean;
38
+ const mode = useAppSelector(selectMode);
39
+ const { showPedago, hasPedago, isHorizontal } = usePedagoOptions();
40
+
41
+ const dispatch = useAppDispatch();
42
+ const isDirty = useAppSelector(selectIsDirty);
43
+ const save = useSave();
44
+
45
+ const showSaveButton = useAppSelector(selectShowSaveButton);
46
+ const showSaveForStudents = useAppSelector(selectShowSaveForStudents);
47
+ const hasSaveButton =
48
+ showSaveButton && !(mode === "assignment" && !showSaveForStudents);
49
+
50
+ const handleCtrlS = useCallback(
51
+ (e: KeyboardEvent<HTMLDivElement>) => {
52
+ if ((e.ctrlKey || e.metaKey) && e.key === "s") {
53
+ e.preventDefault();
54
+ if (hasSaveButton && isDirty) save(); // Checks if can save inside of save()
55
+ }
56
+ },
57
+ [hasSaveButton, isDirty, save],
58
+ );
59
+
60
+ const pedagoOpenLabel = hasPedago
61
+ ? "Afficher les consignes"
62
+ : mode === "create"
63
+ ? "Ce type d'activité n'accepte pas de consigne"
64
+ : "Pas de consignes ni de note";
65
+
66
+ const togglePedago = useMemo(() => {
67
+ if (!hasPedago) return undefined;
68
+ return () => dispatch(setIsPedagoVisible(!showPedago));
69
+ }, [hasPedago, showPedago]);
70
+
71
+ return (
72
+ <div
73
+ className={classNames(
74
+ styles.app,
75
+ isDark ? "dark-theme" : "light-theme",
76
+ isHorizontal ? "layout-horizontal" : "layout-vertical",
77
+ )}
78
+ onKeyDown={handleCtrlS}
79
+ >
80
+ <div className={styles.navbarContainer}>
81
+ <Navbar />
82
+ {mode === "review" && <ReviewNavbar />}
83
+ </div>
84
+ <div className={styles.pedagoContainer} data-show-pedago={showPedago}>
85
+ <div
86
+ className={classNames(
87
+ styles.hiddenPedago,
88
+ hasPedago ? null : styles.noPedago,
89
+ )}
90
+ >
91
+ <div
92
+ className={classNames(
93
+ styles.hiddenPedagoButton,
94
+ hasPedago ? "p-ripple" : null,
95
+ )}
96
+ onClick={togglePedago}
97
+ data-pr-tooltip={pedagoOpenLabel}
98
+ aria-label={pedagoOpenLabel}
99
+ role={hasPedago ? "button" : "note"}
100
+ >
101
+ <i
102
+ className={classNames(
103
+ "pi",
104
+ hasPedago
105
+ ? isHorizontal
106
+ ? "pi-angle-double-down"
107
+ : "pi-angle-double-right"
108
+ : "pi-minus-circle",
109
+ )}
110
+ />
111
+ <Ripple />
112
+ </div>
113
+ <Tooltip
114
+ target={"." + styles.hiddenPedagoButton}
115
+ showDelay={settings.TOOLTIP_SHOW_DELAY}
116
+ position={isHorizontal ? "bottom" : "right"}
117
+ mouseTrack={!isHorizontal}
118
+ />
119
+ </div>
120
+ <Splitter
121
+ className={styles.appPedagoSplitter}
122
+ layout={isHorizontal ? "vertical" : "horizontal"}
123
+ >
124
+ <SplitterPanel minSize={15} size={30} className={styles.pedagoPanel}>
125
+ <Pedago key="pedago" />
126
+ </SplitterPanel>
127
+ <SplitterPanel minSize={40} size={70} className={styles.contentPanel}>
128
+ <div className="meta-player-content-cover"></div>
129
+ <div id="meta-player-content" aria-label="Activité">
130
+ {props.children}
131
+ </div>
132
+ </SplitterPanel>
133
+ </Splitter>
134
+ </div>
135
+ <PreviewDialog />
136
+ </div>
137
+ );
138
+ };
139
+
140
+ export default App;
package/src/AppRedux.css CHANGED
@@ -1,39 +1,39 @@
1
- .App {
2
- text-align: center;
3
- }
4
-
5
- .App-logo {
6
- height: 40vmin;
7
- pointer-events: none;
8
- }
9
-
10
- @media (prefers-reduced-motion: no-preference) {
11
- .App-logo {
12
- animation: App-logo-float infinite 3s ease-in-out;
13
- }
14
- }
15
-
16
- .App-header {
17
- min-height: 100vh;
18
- display: flex;
19
- flex-direction: column;
20
- align-items: center;
21
- justify-content: center;
22
- font-size: calc(10px + 2vmin);
23
- }
24
-
25
- .App-link {
26
- color: rgb(112, 76, 182);
27
- }
28
-
29
- @keyframes App-logo-float {
30
- 0% {
31
- transform: translateY(0);
32
- }
33
- 50% {
34
- transform: translateY(10px);
35
- }
36
- 100% {
37
- transform: translateY(0px);
38
- }
39
- }
1
+ .App {
2
+ text-align: center;
3
+ }
4
+
5
+ .App-logo {
6
+ height: 40vmin;
7
+ pointer-events: none;
8
+ }
9
+
10
+ @media (prefers-reduced-motion: no-preference) {
11
+ .App-logo {
12
+ animation: App-logo-float infinite 3s ease-in-out;
13
+ }
14
+ }
15
+
16
+ .App-header {
17
+ min-height: 100vh;
18
+ display: flex;
19
+ flex-direction: column;
20
+ align-items: center;
21
+ justify-content: center;
22
+ font-size: calc(10px + 2vmin);
23
+ }
24
+
25
+ .App-link {
26
+ color: rgb(112, 76, 182);
27
+ }
28
+
29
+ @keyframes App-logo-float {
30
+ 0% {
31
+ transform: translateY(0);
32
+ }
33
+ 50% {
34
+ transform: translateY(10px);
35
+ }
36
+ 100% {
37
+ transform: translateY(0px);
38
+ }
39
+ }