dce-reactkit 3.0.0-beta.4 → 3.0.0-beta.40

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 (60) hide show
  1. package/.eslintrc.js +95 -0
  2. package/README.md +1 -546
  3. package/dist/cjs/index.js +784 -85
  4. package/dist/cjs/index.js.map +1 -1
  5. package/dist/cjs/types/components/AppWrapper.d.ts +25 -2
  6. package/dist/cjs/types/components/ButtonInputGroup.d.ts +12 -0
  7. package/dist/cjs/types/components/CheckboxButton.d.ts +20 -0
  8. package/dist/cjs/types/components/RadioButton.d.ts +20 -0
  9. package/dist/cjs/types/components/SimpleDateChooser.d.ts +21 -0
  10. package/dist/cjs/types/components/TabBox.d.ts +1 -0
  11. package/dist/cjs/types/helpers/genRouteHandler.d.ts +30 -0
  12. package/dist/cjs/types/helpers/getOrdinal.d.ts +8 -0
  13. package/dist/cjs/types/helpers/getTimeInfoInET.d.ts +17 -0
  14. package/dist/cjs/types/helpers/handleError.d.ts +18 -0
  15. package/dist/cjs/types/helpers/handleSuccess.d.ts +8 -0
  16. package/dist/cjs/types/helpers/visitServerEndpoint.d.ts +23 -0
  17. package/dist/cjs/types/index.d.ts +10 -1
  18. package/dist/cjs/types/server/initServer.d.ts +21 -0
  19. package/dist/cjs/types/types/ParamType.d.ts +17 -0
  20. package/dist/cjs/types/types/ReactKitErrorCode.d.ts +3 -1
  21. package/dist/esm/index.js +776 -86
  22. package/dist/esm/index.js.map +1 -1
  23. package/dist/esm/types/components/AppWrapper.d.ts +25 -2
  24. package/dist/esm/types/components/ButtonInputGroup.d.ts +12 -0
  25. package/dist/esm/types/components/CheckboxButton.d.ts +20 -0
  26. package/dist/esm/types/components/RadioButton.d.ts +20 -0
  27. package/dist/esm/types/components/SimpleDateChooser.d.ts +21 -0
  28. package/dist/esm/types/components/TabBox.d.ts +1 -0
  29. package/dist/esm/types/helpers/genRouteHandler.d.ts +30 -0
  30. package/dist/esm/types/helpers/getOrdinal.d.ts +8 -0
  31. package/dist/esm/types/helpers/getTimeInfoInET.d.ts +17 -0
  32. package/dist/esm/types/helpers/handleError.d.ts +18 -0
  33. package/dist/esm/types/helpers/handleSuccess.d.ts +8 -0
  34. package/dist/esm/types/helpers/visitServerEndpoint.d.ts +23 -0
  35. package/dist/esm/types/index.d.ts +10 -1
  36. package/dist/esm/types/server/initServer.d.ts +21 -0
  37. package/dist/esm/types/types/ParamType.d.ts +17 -0
  38. package/dist/esm/types/types/ReactKitErrorCode.d.ts +3 -1
  39. package/dist/index.d.ts +182 -10
  40. package/package.json +13 -1
  41. package/rollup.config.js +0 -1
  42. package/src/components/AppWrapper.tsx +73 -15
  43. package/src/components/ButtonInputGroup.tsx +89 -0
  44. package/src/components/CheckboxButton.tsx +100 -0
  45. package/src/components/ErrorBox.tsx +4 -4
  46. package/src/components/LoadingSpinner.tsx +3 -3
  47. package/src/components/Modal.tsx +185 -71
  48. package/src/components/RadioButton.tsx +102 -0
  49. package/src/components/SimpleDateChooser.tsx +217 -0
  50. package/src/components/TabBox.tsx +65 -58
  51. package/src/helpers/genRouteHandler.ts +326 -0
  52. package/src/helpers/getOrdinal.tsx +13 -0
  53. package/src/helpers/getTimeInfoInET.tsx +56 -0
  54. package/src/helpers/handleError.ts +65 -0
  55. package/src/helpers/handleSuccess.ts +18 -0
  56. package/src/helpers/visitServerEndpoint.tsx +110 -0
  57. package/src/index.ts +21 -0
  58. package/src/server/initServer.ts +53 -0
  59. package/src/types/ParamType.ts +18 -0
  60. package/src/types/ReactKitErrorCode.tsx +3 -1
@@ -15,6 +15,8 @@ type Props = {
15
15
  title: React.ReactNode,
16
16
  // Children/contents inside the box
17
17
  children: React.ReactNode,
18
+ // If true, don't add padding below the tab box
19
+ noBottomPadding?: boolean,
18
20
  };
19
21
 
20
22
  /*------------------------------------------------------------------------*/
@@ -22,63 +24,67 @@ type Props = {
22
24
  /*------------------------------------------------------------------------*/
23
25
 
24
26
  const style = `
25
- /* Tab Box */
26
- .TabBox-box {
27
- /* Light Border */
28
- border: 2px solid #dedede;
29
-
30
- /* Rounded Corners (except top-left) */
31
- border-bottom-right-radius: 5px;
32
- border-bottom-left-radius: 5px;
33
- border-top-right-radius: 5px;
34
-
35
- /* Very Light Gray Border */
36
- background: #fdfdfd;
37
-
38
- /* Align Contents on Left */
39
- text-align: left;
40
- }
41
-
42
- /* Container for Title */
43
- .TabBox-title-container {
44
- /* Place on Left */
45
- position: relative;
46
- left: 0;
47
- text-align: left;
48
- }
49
-
50
- /* Tab-style Title */
51
- .TabBox-title {
52
- /* Place so it Barely Overlaps the Box Border */
53
- display: inline-block;
54
- position: relative;
55
- top: 2px; /* Gives Illusion that Border Doesn't Exist Below Tab */
56
-
57
- /* Title-sized Font */
58
- font-size: 25px;
59
-
60
- /* Add Border on Top and Sides */
61
- border-top: 2px solid #dedede;
62
- border-left: 2px solid #dedede;
63
- border-right: 2px solid #dedede;
64
-
65
- /* Round the Top Corners */
66
- border-top-left-radius: 5px;
67
- border-top-right-radius: 5px;
68
-
69
- /* Add Text Padding */
70
- padding-left: 12px;
71
- padding-right: 12px;
72
-
73
- /* Match Background Color of Box */
74
- background: #fdfdfd;
75
- }
76
-
77
- /* Make the TabBox's Children Appear Above Title if Overlap Occurs */
78
- .TabBox-children {
79
- position: relative;
80
- z-index: 1;
81
- }
27
+ /* Tab Box */
28
+ .TabBox-box {
29
+ /* Light Border */
30
+ border: 0.15rem solid #dedede;
31
+
32
+ /* Rounded Corners (except top-left) */
33
+ border-bottom-right-radius: 0.3rem;
34
+ border-bottom-left-radius: 0.3rem;
35
+ border-top-right-radius: 0.3rem;
36
+
37
+ /* Very Light Gray Border */
38
+ background: #fdfdfd;
39
+
40
+ /* Align Contents on Left */
41
+ text-align: left;
42
+
43
+ /* Add Text Padding */
44
+ padding-left: 0.3rem;
45
+ padding-right: 0.3rem;
46
+ }
47
+
48
+ /* Container for Title */
49
+ .TabBox-title-container {
50
+ /* Place on Left */
51
+ position: relative;
52
+ left: 0;
53
+ text-align: left;
54
+ }
55
+
56
+ /* Tab-style Title */
57
+ .TabBox-title {
58
+ /* Place so it Barely Overlaps the Box Border */
59
+ display: inline-block;
60
+ position: relative;
61
+ top: 0.15rem; /* Gives Illusion that Border Doesn't Exist Below Tab */
62
+
63
+ /* Title-sized Font */
64
+ font-size: 1.5rem;
65
+
66
+ /* Add Border on Top and Sides */
67
+ border-top: 0.15rem solid #dedede;
68
+ border-left: 0.15rem solid #dedede;
69
+ border-right: 0.15rem solid #dedede;
70
+
71
+ /* Round the Top Corners */
72
+ border-top-left-radius: 0.3rem;
73
+ border-top-right-radius: 0.3rem;
74
+
75
+ /* Add Text Padding */
76
+ padding-left: 0.5rem;
77
+ padding-right: 0.5rem;
78
+
79
+ /* Match Background Color of Box */
80
+ background: #fdfdfd;
81
+ }
82
+
83
+ /* Make the TabBox's Children Appear Above Title if Overlap Occurs */
84
+ .TabBox-children {
85
+ position: relative;
86
+ z-index: 1;
87
+ }
82
88
  `;
83
89
 
84
90
  /*------------------------------------------------------------------------*/
@@ -95,6 +101,7 @@ const TabBox: React.FC<Props> = (props) => {
95
101
  const {
96
102
  title,
97
103
  children,
104
+ noBottomPadding,
98
105
  } = props;
99
106
 
100
107
  /*------------------------------------------------------------------------*/
@@ -107,7 +114,7 @@ const TabBox: React.FC<Props> = (props) => {
107
114
 
108
115
  // Full UI
109
116
  return (
110
- <div>
117
+ <div className={`TabBox-container ${noBottomPadding ? '' : 'mb-2'}`}>
111
118
  {/* Style */}
112
119
  <style>{style}</style>
113
120
 
@@ -0,0 +1,326 @@
1
+ // Import caccl functions
2
+ import { cacclGetLaunchInfo } from '../server/initServer';
3
+
4
+ // Import shared types
5
+ import ReactKitErrorCode from '../types/ReactKitErrorCode';
6
+ import ParamType from '../types/ParamType';
7
+
8
+ // Import helpers
9
+ import handleError from './handleError';
10
+ import handleSuccess from './handleSuccess';
11
+
12
+ /**
13
+ * Generate an express API route handler
14
+ * @author Gabe Abrams
15
+ * @param opts object containing all arguments
16
+ * @param opts.paramTypes map containing the types for each parameter that is
17
+ * included in the request (map: param name => type)
18
+ * @param opts.handler function that processes the request
19
+ * @returns express route handler that takes the following arguments:
20
+ * params (map: param name => value), handleSuccess (function for handling
21
+ * successful requests), handleError (function for handling failed requests),
22
+ * req (express request object), res (express response object)
23
+ */
24
+ const genRouteHandler = (
25
+ opts: {
26
+ paramTypes?: {
27
+ [k: string]: ParamType
28
+ },
29
+ handler: (
30
+ opts: {
31
+ params: {
32
+ [k: string]: any
33
+ },
34
+ handleSuccess: (body: any) => void,
35
+ handleError: (error: any) => void,
36
+ req: any,
37
+ res: any,
38
+ },
39
+ ) => void,
40
+ },
41
+ ) => {
42
+ // Return a route handler
43
+ return async (req: any, res: any) => {
44
+ // Output params
45
+ const output: { [k in string]: any } = {};
46
+
47
+ /*----------------------------------------*/
48
+ /* Parse Params */
49
+ /*----------------------------------------*/
50
+
51
+ // Process items one by one
52
+ const paramList = Object.entries(opts.paramTypes ?? {});
53
+ for (let i = 0; i < paramList.length; i++) {
54
+ const [name, type] = paramList[i];
55
+
56
+ // Find the value as a string
57
+ const value = (
58
+ req.params[name]
59
+ || req.query[name]
60
+ || req.body[name]
61
+ );
62
+
63
+ // Parse
64
+ if (type === ParamType.Boolean || type === ParamType.BooleanOptional) {
65
+ // Boolean
66
+
67
+ // Handle case where value doesn't exist
68
+ if (value === undefined) {
69
+ if (type === ParamType.BooleanOptional) {
70
+ output[name] = undefined;
71
+ } else {
72
+ return handleError(
73
+ res,
74
+ {
75
+ message: `Parameter ${name} is required, but it was not included.`,
76
+ code: ReactKitErrorCode.MissingParameter,
77
+ status: 422,
78
+ },
79
+ );
80
+ }
81
+ } else {
82
+ // Value exists
83
+
84
+ // Simplify value
85
+ const simpleVal = (
86
+ String(value)
87
+ .trim()
88
+ .toLowerCase()
89
+ );
90
+
91
+ // Parse
92
+ output[name] = (
93
+ [
94
+ 'true',
95
+ 'yes',
96
+ 'y',
97
+ '1',
98
+ 't',
99
+ ].indexOf(simpleVal) >= 0
100
+ );
101
+ }
102
+ } else if (type === ParamType.Float || type === ParamType.FloatOptional) {
103
+ // Float
104
+
105
+ // Handle case where value doesn't exist
106
+ if (value === undefined) {
107
+ if (type === ParamType.FloatOptional) {
108
+ output[name] = undefined;
109
+ } else {
110
+ return handleError(
111
+ res,
112
+ {
113
+ message: `Parameter ${name} is required, but it was not included.`,
114
+ code: ReactKitErrorCode.MissingParameter,
115
+ status: 422,
116
+ },
117
+ );
118
+ }
119
+ } else if (!Number.isNaN(Number.parseFloat(String(value)))) {
120
+ // Value is a number
121
+ output[name] = Number.parseFloat(String(value));
122
+ } else {
123
+ // Issue!
124
+ return handleError(
125
+ res,
126
+ {
127
+ message: `Request data was malformed: ${name} was not a valid float.`,
128
+ code: ReactKitErrorCode.InvalidParameter,
129
+ status: 422,
130
+ },
131
+ );
132
+ }
133
+ } else if (type === ParamType.Int || type === ParamType.IntOptional) {
134
+ // Int
135
+
136
+ // Handle case where value doesn't exist
137
+ if (value === undefined) {
138
+ if (type === ParamType.IntOptional) {
139
+ output[name] = undefined;
140
+ } else {
141
+ return handleError(
142
+ res,
143
+ {
144
+ message: `Parameter ${name} is required, but it was not included.`,
145
+ code: ReactKitErrorCode.MissingParameter,
146
+ status: 422,
147
+ },
148
+ );
149
+ }
150
+ } else if (!Number.isNaN(Number.parseInt(String(value), 10))) {
151
+ // Value is a number
152
+ output[name] = Number.parseInt(String(value), 10);
153
+ } else {
154
+ // Issue!
155
+ return handleError(
156
+ res,
157
+ {
158
+ message: `Request data was malformed: ${name} was not a valid int.`,
159
+ code: ReactKitErrorCode.InvalidParameter,
160
+ status: 422,
161
+ },
162
+ );
163
+ }
164
+ } else if (type === ParamType.JSON || type === ParamType.JSONOptional) {
165
+ // Stringified JSON
166
+
167
+ // Handle case where value doesn't exist
168
+ if (value === undefined) {
169
+ if (type === ParamType.JSONOptional) {
170
+ output[name] = undefined;
171
+ } else {
172
+ return handleError(
173
+ res,
174
+ {
175
+ message: `Parameter ${name} is required, but it was not included.`,
176
+ code: ReactKitErrorCode.MissingParameter,
177
+ status: 422,
178
+ },
179
+ );
180
+ }
181
+ } else {
182
+ // Value exists
183
+
184
+ // Parse
185
+ try {
186
+ output[name] = JSON.parse(String(value));
187
+ } catch (err) {
188
+ return handleError(
189
+ res,
190
+ {
191
+ message: `Request data was malformed: ${name} was not a valid JSON payload.`,
192
+ code: ReactKitErrorCode.InvalidParameter,
193
+ status: 422,
194
+ },
195
+ );
196
+ }
197
+ }
198
+ } else if (type === ParamType.String || type === ParamType.StringOptional) {
199
+ // String
200
+
201
+ // Handle case where value doesn't exist
202
+ if (value === undefined) {
203
+ if (type === ParamType.StringOptional) {
204
+ output[name] = undefined;
205
+ } else {
206
+ return handleError(
207
+ res,
208
+ {
209
+ message: `Parameter ${name} is required, but it was not included.`,
210
+ code: ReactKitErrorCode.MissingParameter,
211
+ status: 422,
212
+ },
213
+ );
214
+ }
215
+ } else {
216
+ // Value exists
217
+
218
+ // Leave as is
219
+ output[name] = value;
220
+ }
221
+ } else {
222
+ // No valid data type
223
+ return handleError(
224
+ res,
225
+ {
226
+ message: `An internal error occurred: we could not determine the type of ${name}.`,
227
+ code: ReactKitErrorCode.InvalidParameter,
228
+ status: 422,
229
+ },
230
+ );
231
+ }
232
+ }
233
+
234
+ /*----------------------------------------*/
235
+ /* Launch Info */
236
+ /*----------------------------------------*/
237
+
238
+ // Get launch info
239
+ const { launched, launchInfo } = cacclGetLaunchInfo(req);
240
+ if (!launched || !launchInfo) {
241
+ return handleError(
242
+ res,
243
+ {
244
+ message: 'Your session has expired. Please refresh the page and try again.',
245
+ code: ReactKitErrorCode.SessionExpired,
246
+ status: 440,
247
+ },
248
+ );
249
+ }
250
+
251
+ // Error if user info cannot be found
252
+ if (
253
+ !launchInfo.userId
254
+ || !launchInfo.userFirstName
255
+ || !launchInfo.userLastName
256
+ || (
257
+ launchInfo.notInCourse
258
+ && !launchInfo.isAdmin
259
+ )
260
+ || (
261
+ !launchInfo.isTTM
262
+ && !launchInfo.isLearner
263
+ && !launchInfo.isAdmin
264
+ )
265
+ ) {
266
+ return handleError(
267
+ res,
268
+ {
269
+ message: 'Your session was invalid. Please refresh the page and try again.',
270
+ code: ReactKitErrorCode.SessionExpired,
271
+ status: 440,
272
+ },
273
+ );
274
+ }
275
+
276
+ // Add launch info to output
277
+ output.userId = launchInfo.userId;
278
+ output.userFirstName = launchInfo.userFirstName;
279
+ output.userLastName = launchInfo.userLastName;
280
+ output.isLearner = !!launchInfo.isLearner;
281
+ output.isTTM = !!launchInfo.isTTM;
282
+ output.isAdmin = !!launchInfo.isAdmin;
283
+ output.isWatchingInPrivate = !!(req.session.isWatchingInPrivate);
284
+
285
+ /*----------------------------------------*/
286
+ /* Require Course Consistency */
287
+ /*----------------------------------------*/
288
+
289
+ // Make sure the user actually launched from the appropriate course
290
+ if (
291
+ output.courseId
292
+ && launchInfo.courseId
293
+ && output.courseId !== launchInfo.courseId
294
+ && !output.isTTM
295
+ && !output.isAdmin
296
+ ) {
297
+ // Course of interest is not the launch course
298
+ return handleError(
299
+ res,
300
+ {
301
+ message: 'You switched sessions by opening Immersive Classroom in another tab. Please refresh the page and try again.',
302
+ code: ReactKitErrorCode.WrongCourse,
303
+ status: 401,
304
+ },
305
+ );
306
+ }
307
+
308
+ /*------------------------------------------------------------------------*/
309
+ /* Call handler */
310
+ /*------------------------------------------------------------------------*/
311
+
312
+ opts.handler({
313
+ params: output,
314
+ handleSuccess: (body: any) => {
315
+ return handleSuccess(res, body);
316
+ },
317
+ handleError: (error: any) => {
318
+ return handleError(res, error);
319
+ },
320
+ req,
321
+ res,
322
+ });
323
+ };
324
+ };
325
+
326
+ export default genRouteHandler;
@@ -0,0 +1,13 @@
1
+ const ORDINALS = ['th', 'st', 'nd', 'rd'];
2
+
3
+ /**
4
+ * Get a number's ordinal
5
+ * @author Gabe Abrams
6
+ * @param num the number being analyzed
7
+ * @returns ordinal
8
+ */
9
+ const getOrdinal = (num: number): string => {
10
+ return (ORDINALS[(num - 20) % 10] ?? ORDINALS[num] ?? ORDINALS[0]);
11
+ };
12
+
13
+ export default getOrdinal;
@@ -0,0 +1,56 @@
1
+ /**
2
+ * Get current time info in US Boston Eastern Time, independent of machine
3
+ * timezone
4
+ * @author Gabe Abrams
5
+ * @param {Date} [date=now] the date to get info on
6
+ * @returns object with timestamp (ms since epoch) and numbers
7
+ * corresponding to ET time values for year, month, day, hour, minute
8
+ */
9
+ const getTimeInfoInET = (date?: Date): {
10
+ timestamp: number,
11
+ year: number,
12
+ month: number,
13
+ day: number,
14
+ hour: number,
15
+ minute: number,
16
+ } => {
17
+ // Create a time string
18
+ const d = (date || new Date());
19
+ const str = d.toLocaleString(
20
+ 'en-US', // Using US encoding (it's the only one installed on containers)
21
+ { timeZone: 'America/New_York' } // Force EST timezone
22
+ );
23
+
24
+ // Parse the string for the date/time info
25
+ const [dateStr, timeStr] = str.split(', '); // Format: MM/DD/YYYY, HH:MM:SS AM
26
+ const [monthStr, dayStr, yearStr] = dateStr.split('/'); // Format: MM/DD/YYYY
27
+ const [hourStr, minStr, ending] = timeStr.split(':'); // Format: HH:MM:SS AM
28
+
29
+ // Create all time numbers
30
+ const timestamp = d.getTime();
31
+ const year = Number.parseInt(yearStr, 10);
32
+ const month = Number.parseInt(monthStr, 10);
33
+ const day = Number.parseInt(dayStr, 10);
34
+ const minute = Number.parseInt(minStr, 10);
35
+ let hour = Number.parseInt(hourStr, 10);
36
+ // Convert from am/pm to 24hr
37
+ const isAM = ending.toLowerCase().includes('am');
38
+ const isPM = !isAM;
39
+ if (isPM && hour !== 12) {
40
+ hour += 12;
41
+ } else if (isAM && hour === 12) {
42
+ hour = 0;
43
+ }
44
+
45
+ // Return
46
+ return {
47
+ timestamp,
48
+ year,
49
+ month,
50
+ day,
51
+ hour,
52
+ minute,
53
+ };
54
+ };
55
+
56
+ export default getTimeInfoInET;
@@ -0,0 +1,65 @@
1
+ // Import shared types
2
+ import ReactKitErrorCode from '../types/ReactKitErrorCode';
3
+
4
+ /**
5
+ * Handle an error and respond to the client
6
+ * @author Gabe Abrams
7
+ * @param res express response
8
+ * @param error error info
9
+ * @param opts.err the error to send to the client
10
+ * or the error message
11
+ * @param [opts.code] an error code (only used if err.code is not
12
+ * included)
13
+ * @param [opts.status=500] the https status code to use
14
+ * defined)
15
+ */
16
+ const handleError = (
17
+ res: any,
18
+ error: (
19
+ | {
20
+ message: any,
21
+ code?: string,
22
+ status?: number,
23
+ }
24
+ | Error
25
+ | string
26
+ | any
27
+ ),
28
+ ): undefined => {
29
+ // Get the error message
30
+ let message;
31
+ if (error && (error as any).message) {
32
+ message = (error.message || 'An unknown error occurred.');
33
+ } else if (typeof error === 'string') {
34
+ message = (
35
+ error.trim().length > 0
36
+ ? error
37
+ : 'An unknown error occurred.'
38
+ );
39
+ } else {
40
+ message = 'An unknown error occurred.';
41
+ }
42
+
43
+ // Get the error code
44
+ const code = (error.code || ReactKitErrorCode.NoCode);
45
+
46
+ // Get the status code
47
+ const status = (error.status || 500);
48
+
49
+ // Respond to user
50
+ res
51
+ // Set the http status code
52
+ .status(status)
53
+ // Send a JSON response
54
+ .json({
55
+ // Error message
56
+ message,
57
+ // Error code
58
+ code,
59
+ // Success = false flag so client can detect server-side errors
60
+ success: false,
61
+ });
62
+ return undefined;
63
+ };
64
+
65
+ export default handleError;
@@ -0,0 +1,18 @@
1
+ /**
2
+ * Send successful API response
3
+ * @author Gabe Abrams
4
+ * @param res express response
5
+ * @param body the body of the response to send to the client
6
+ */
7
+ const handleSuccess = (res: any, body: any): undefined => {
8
+ // Send a http 200 json response
9
+ res.json({
10
+ // Include the body as a parameter
11
+ body,
12
+ // Success = true flag so client can detect successful responses
13
+ success: true,
14
+ });
15
+ return undefined;
16
+ };
17
+
18
+ export default handleSuccess;