@cuemath/leap 3.1.13-akm-2 → 3.1.13-akm-3

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.
@@ -1,80 +1,110 @@
1
- import { jsxs as S, jsx as l } from "react/jsx-runtime";
2
- import { memo as t, forwardRef as y, useState as R, useMemo as d, useCallback as x, useImperativeHandle as A } from "react";
3
- import { Accuracy as g } from "./accuracy/accuracy.js";
4
- import { Clock as w } from "./clock/clock.js";
5
- import { EPostGameStat as m } from "./enums/post-game-stats-enum.js";
6
- import { Points as k } from "./points/points.js";
1
+ import { jsx as n, jsxs as f } from "react/jsx-runtime";
2
+ import { memo as y, forwardRef as S, useState as d, useMemo as u, useCallback as s, useImperativeHandle as C } from "react";
3
+ import { Accuracy as v } from "./accuracy/accuracy.js";
4
+ import { Clock as g } from "./clock/clock.js";
5
+ import { DigitalMeter as A } from "./digital-meter/digital-meter.js";
6
+ import { EPostGameStat as t } from "./enums/post-game-stats-enum.js";
7
+ import { Points as R } from "./points/points.js";
7
8
  import { StatsWrapper as I, BlackBg as P } from "./post-game-stats-styled.js";
8
- import { Score as E } from "./score/score.js";
9
- import { Streak as O } from "./streak/streak.js";
10
- const U = t(
11
- y(({ stats: e, show: f, onComplete: p }, v) => {
12
- var i, c;
13
- const [o, C] = R(0), r = d(() => e[o], [o, e]), h = x(() => {
14
- var u;
15
- if ((u = r == null ? void 0 : r.onComplete) == null || u.call(r), o === e.length - 1) {
16
- p == null || p();
9
+ import { Score as w } from "./score/score.js";
10
+ import { Streak as E } from "./streak/streak.js";
11
+ const $ = y(
12
+ S(({ stats: p, show: h, onComplete: m }, T) => {
13
+ const [o, c] = d(0), e = u(() => p[o], [o, p]), a = s(() => {
14
+ var r;
15
+ if ((r = e == null ? void 0 : e.onComplete) == null || r.call(e), o === p.length - 1) {
16
+ m == null || m();
17
17
  return;
18
18
  }
19
- C((T) => T + 1);
20
- }, [o, p, e.length, r]), n = x(() => {
21
- r != null && r.stopAtEnd || h();
22
- }, [r, h]);
23
- return A(v, () => ({
24
- moveToNextAndPlay: h
25
- })), !f || e.length === 0 || o >= e.length ? null : /* @__PURE__ */ S(I, { children: [
26
- /* @__PURE__ */ l(P, {}),
27
- /* @__PURE__ */ l(
28
- k,
29
- {
30
- point: e[o].value,
31
- show: e[o].type === m.POINT,
32
- onComplete: n,
33
- onReveal: (i = e[o]) == null ? void 0 : i.onReveal
34
- }
35
- ),
36
- /* @__PURE__ */ l(
37
- E,
38
- {
39
- currentScore: e[o].value,
40
- highScore: e[o].maxValue ?? 0,
41
- show: e[o].type === m.SCORE,
42
- onComplete: n,
43
- helperText: e[o].helperText
44
- }
45
- ),
46
- /* @__PURE__ */ l(
47
- O,
48
- {
49
- currStreak: e[o].value,
50
- show: e[o].type === m.STREAK,
51
- onComplete: n,
52
- helperText: e[o].helperText,
53
- onReveal: (c = e[o]) == null ? void 0 : c.onReveal
54
- }
55
- ),
56
- /* @__PURE__ */ l(
57
- g,
58
- {
59
- accuracy: e[o].value,
60
- show: e[o].type === m.ACCURACY,
61
- onComplete: n,
62
- helperText: e[o].helperText
63
- }
64
- ),
65
- /* @__PURE__ */ l(
66
- w,
67
- {
68
- timeInMs: e[o].value,
69
- show: e[o].type === m.CLOCK,
70
- onComplete: n,
71
- helperText: e[o].helperText
72
- }
73
- )
19
+ c((i) => i + 1);
20
+ }, [o, m, p.length, e]), l = s(() => {
21
+ e != null && e.stopAtEnd || a();
22
+ }, [e, a]);
23
+ C(T, () => ({
24
+ moveToNextAndPlay: a
25
+ }));
26
+ const x = u(() => {
27
+ if (!e)
28
+ return null;
29
+ const r = `${e.type}-${o}`;
30
+ return {
31
+ [t.SCORE]: /* @__PURE__ */ n(
32
+ w,
33
+ {
34
+ currentScore: e.value,
35
+ highScore: e.maxValue ?? 0,
36
+ show: e.type === t.SCORE,
37
+ onComplete: l,
38
+ helperText: e.helperText
39
+ },
40
+ r
41
+ ),
42
+ [t.POINT]: /* @__PURE__ */ n(
43
+ R,
44
+ {
45
+ point: e.value,
46
+ show: e.type === t.POINT,
47
+ onComplete: l,
48
+ onReveal: e.onReveal
49
+ },
50
+ r
51
+ ),
52
+ [t.DIGITAL_METER]: /* @__PURE__ */ n(
53
+ A,
54
+ {
55
+ value: e.value,
56
+ maxValue: e.maxValue ?? 1,
57
+ targetValue: e.targetValue,
58
+ displayText: e.displayText ?? "",
59
+ progressType: e.progressType ?? "linear",
60
+ helperTextPrimary: e.helperTextPrimary ?? "",
61
+ helperTextSecondary: e.helperTextSecondary ?? "",
62
+ actAsTimer: e.actAsTimer,
63
+ show: !0,
64
+ onComplete: l
65
+ },
66
+ r
67
+ ),
68
+ [t.STREAK]: /* @__PURE__ */ n(
69
+ E,
70
+ {
71
+ currStreak: e.value,
72
+ show: !0,
73
+ onComplete: l,
74
+ helperText: e.helperText,
75
+ onReveal: e.onReveal
76
+ },
77
+ r
78
+ ),
79
+ [t.ACCURACY]: /* @__PURE__ */ n(
80
+ v,
81
+ {
82
+ accuracy: e.value,
83
+ show: !0,
84
+ onComplete: l,
85
+ helperText: e.helperText
86
+ },
87
+ r
88
+ ),
89
+ [t.CLOCK]: /* @__PURE__ */ n(
90
+ g,
91
+ {
92
+ timeInMs: e.value,
93
+ show: !0,
94
+ onComplete: l,
95
+ helperText: e.helperText
96
+ },
97
+ r
98
+ )
99
+ }[e.type] ?? null;
100
+ }, [e, o, l]);
101
+ return !h || p.length === 0 || o >= p.length ? null : /* @__PURE__ */ f(I, { children: [
102
+ /* @__PURE__ */ n(P, {}),
103
+ x
74
104
  ] });
75
105
  })
76
106
  );
77
107
  export {
78
- U as PostGameStats
108
+ $ as PostGameStats
79
109
  };
80
110
  //# sourceMappingURL=post-game-stats.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"post-game-stats.js","sources":["../../../src/features/post-game-stats/post-game-stats.tsx"],"sourcesContent":["import type { IPostGameStatsProps, IPostGameStatsRef } from './post-game-stats-types';\n\nimport { useState, memo, useCallback, forwardRef, useImperativeHandle, useMemo } from 'react';\n\nimport { Accuracy } from './accuracy/accuracy';\nimport { Clock } from './clock/clock';\nimport { EPostGameStat } from './enums/post-game-stats-enum';\nimport { Points } from './points/points';\nimport * as Styled from './post-game-stats-styled';\nimport { Score } from './score/score';\nimport { Streak } from './streak/streak';\n\nexport const PostGameStats = memo(\n forwardRef<IPostGameStatsRef, IPostGameStatsProps>(({ stats, show, onComplete }, ref) => {\n const [currStatIndex, setCurrentStatIndex] = useState(0);\n const currStatData = useMemo(() => stats[currStatIndex], [currStatIndex, stats]);\n\n const moveToNextAndPlay = useCallback(() => {\n currStatData?.onComplete?.();\n\n if (currStatIndex === stats.length - 1) {\n onComplete?.();\n\n return;\n }\n setCurrentStatIndex(prev => prev + 1);\n }, [currStatIndex, onComplete, stats.length, currStatData]);\n\n const onStatAnimationComplete = useCallback(() => {\n if (currStatData?.stopAtEnd) {\n return;\n }\n moveToNextAndPlay(); // Autoplay since stopAtEnd is false\n }, [currStatData, moveToNextAndPlay]);\n\n useImperativeHandle(ref, () => ({\n moveToNextAndPlay,\n }));\n\n if (!show || stats.length === 0 || currStatIndex >= stats.length) {\n return null;\n }\n\n return (\n <Styled.StatsWrapper>\n <Styled.BlackBg />\n <Points\n point={stats[currStatIndex]!.value}\n show={stats[currStatIndex]!.type === EPostGameStat.POINT}\n onComplete={onStatAnimationComplete}\n onReveal={stats[currStatIndex]?.onReveal}\n />\n <Score\n currentScore={stats[currStatIndex]!.value}\n highScore={stats[currStatIndex]!.maxValue ?? 0}\n show={stats[currStatIndex]!.type === EPostGameStat.SCORE}\n onComplete={onStatAnimationComplete}\n helperText={stats[currStatIndex]!.helperText}\n />\n <Streak\n currStreak={stats[currStatIndex]!.value}\n show={stats[currStatIndex]!.type === EPostGameStat.STREAK}\n onComplete={onStatAnimationComplete}\n helperText={stats[currStatIndex]!.helperText}\n onReveal={stats[currStatIndex]?.onReveal}\n />\n <Accuracy\n accuracy={stats[currStatIndex]!.value}\n show={stats[currStatIndex]!.type === EPostGameStat.ACCURACY}\n onComplete={onStatAnimationComplete}\n helperText={stats[currStatIndex]!.helperText}\n />\n <Clock\n timeInMs={stats[currStatIndex]!.value}\n show={stats[currStatIndex]!.type === EPostGameStat.CLOCK}\n onComplete={onStatAnimationComplete}\n helperText={stats[currStatIndex]!.helperText}\n />\n </Styled.StatsWrapper>\n );\n }),\n);\n"],"names":["PostGameStats","memo","forwardRef","stats","show","onComplete","ref","currStatIndex","setCurrentStatIndex","useState","currStatData","useMemo","moveToNextAndPlay","useCallback","_a","prev","onStatAnimationComplete","useImperativeHandle","jsxs","Styled.StatsWrapper","jsx","Styled.BlackBg","Points","EPostGameStat","Score","Streak","_b","Accuracy","Clock"],"mappings":";;;;;;;;;AAYO,MAAMA,IAAgBC;AAAA,EAC3BC,EAAmD,CAAC,EAAE,OAAAC,GAAO,MAAAC,GAAM,YAAAC,EAAA,GAAcC,MAAQ;;AACvF,UAAM,CAACC,GAAeC,CAAmB,IAAIC,EAAS,CAAC,GACjDC,IAAeC,EAAQ,MAAMR,EAAMI,CAAa,GAAG,CAACA,GAAeJ,CAAK,CAAC,GAEzES,IAAoBC,EAAY,MAAM;;AAGtC,WAFJC,IAAAJ,KAAA,gBAAAA,EAAc,eAAd,QAAAI,EAAA,KAAAJ,IAEIH,MAAkBJ,EAAM,SAAS,GAAG;AACzB,QAAAE,KAAA,QAAAA;AAEb;AAAA,MACF;AACoB,MAAAG,EAAA,CAAAO,MAAQA,IAAO,CAAC;AAAA,IAAA,GACnC,CAACR,GAAeF,GAAYF,EAAM,QAAQO,CAAY,CAAC,GAEpDM,IAA0BH,EAAY,MAAM;AAChD,MAAIH,KAAA,QAAAA,EAAc,aAGAE;IAAA,GACjB,CAACF,GAAcE,CAAiB,CAAC;AAMpC,WAJAK,EAAoBX,GAAK,OAAO;AAAA,MAC9B,mBAAAM;AAAA,IACA,EAAA,GAEE,CAACR,KAAQD,EAAM,WAAW,KAAKI,KAAiBJ,EAAM,SACjD,OAIP,gBAAAe,EAACC,GAAA,EACC,UAAA;AAAA,MAAC,gBAAAC,EAAAC,GAAA,EAAe;AAAA,MAChB,gBAAAD;AAAA,QAACE;AAAA,QAAA;AAAA,UACC,OAAOnB,EAAMI,CAAa,EAAG;AAAA,UAC7B,MAAMJ,EAAMI,CAAa,EAAG,SAASgB,EAAc;AAAA,UACnD,YAAYP;AAAA,UACZ,WAAUF,IAAAX,EAAMI,CAAa,MAAnB,gBAAAO,EAAsB;AAAA,QAAA;AAAA,MAClC;AAAA,MACA,gBAAAM;AAAA,QAACI;AAAA,QAAA;AAAA,UACC,cAAcrB,EAAMI,CAAa,EAAG;AAAA,UACpC,WAAWJ,EAAMI,CAAa,EAAG,YAAY;AAAA,UAC7C,MAAMJ,EAAMI,CAAa,EAAG,SAASgB,EAAc;AAAA,UACnD,YAAYP;AAAA,UACZ,YAAYb,EAAMI,CAAa,EAAG;AAAA,QAAA;AAAA,MACpC;AAAA,MACA,gBAAAa;AAAA,QAACK;AAAA,QAAA;AAAA,UACC,YAAYtB,EAAMI,CAAa,EAAG;AAAA,UAClC,MAAMJ,EAAMI,CAAa,EAAG,SAASgB,EAAc;AAAA,UACnD,YAAYP;AAAA,UACZ,YAAYb,EAAMI,CAAa,EAAG;AAAA,UAClC,WAAUmB,IAAAvB,EAAMI,CAAa,MAAnB,gBAAAmB,EAAsB;AAAA,QAAA;AAAA,MAClC;AAAA,MACA,gBAAAN;AAAA,QAACO;AAAA,QAAA;AAAA,UACC,UAAUxB,EAAMI,CAAa,EAAG;AAAA,UAChC,MAAMJ,EAAMI,CAAa,EAAG,SAASgB,EAAc;AAAA,UACnD,YAAYP;AAAA,UACZ,YAAYb,EAAMI,CAAa,EAAG;AAAA,QAAA;AAAA,MACpC;AAAA,MACA,gBAAAa;AAAA,QAACQ;AAAA,QAAA;AAAA,UACC,UAAUzB,EAAMI,CAAa,EAAG;AAAA,UAChC,MAAMJ,EAAMI,CAAa,EAAG,SAASgB,EAAc;AAAA,UACnD,YAAYP;AAAA,UACZ,YAAYb,EAAMI,CAAa,EAAG;AAAA,QAAA;AAAA,MACpC;AAAA,IACF,EAAA,CAAA;AAAA,EAAA,CAEH;AACH;"}
1
+ {"version":3,"file":"post-game-stats.js","sources":["../../../src/features/post-game-stats/post-game-stats.tsx"],"sourcesContent":["import type { IPostGameStatsProps, IPostGameStatsRef } from './post-game-stats-types';\n\nimport { useState, memo, useCallback, forwardRef, useImperativeHandle, useMemo } from 'react';\n\nimport { Accuracy } from './accuracy/accuracy';\nimport { Clock } from './clock/clock';\nimport { DigitalMeter } from './digital-meter/digital-meter';\nimport { EPostGameStat } from './enums/post-game-stats-enum';\nimport { Points } from './points/points';\nimport * as Styled from './post-game-stats-styled';\nimport { Score } from './score/score';\nimport { Streak } from './streak/streak';\n\nexport const PostGameStats = memo(\n forwardRef<IPostGameStatsRef, IPostGameStatsProps>(({ stats, show, onComplete }, ref) => {\n const [currStatIndex, setCurrentStatIndex] = useState(0);\n const currStatData = useMemo(() => stats[currStatIndex], [currStatIndex, stats]);\n\n const moveToNextAndPlay = useCallback(() => {\n currStatData?.onComplete?.();\n\n if (currStatIndex === stats.length - 1) {\n onComplete?.();\n\n return;\n }\n setCurrentStatIndex(prev => prev + 1);\n }, [currStatIndex, onComplete, stats.length, currStatData]);\n\n const onStatAnimationComplete = useCallback(() => {\n if (currStatData?.stopAtEnd) {\n return;\n }\n moveToNextAndPlay(); // Autoplay since stopAtEnd is false\n }, [currStatData, moveToNextAndPlay]);\n\n useImperativeHandle(ref, () => ({\n moveToNextAndPlay,\n }));\n\n const renderCurrentStat = useMemo(() => {\n if (!currStatData) {\n return null;\n }\n\n const key = `${currStatData.type}-${currStatIndex}`;\n\n const renderStat = {\n [EPostGameStat.SCORE]: (\n <Score\n key={key}\n currentScore={currStatData.value}\n highScore={currStatData.maxValue ?? 0}\n show={currStatData.type === EPostGameStat.SCORE}\n onComplete={onStatAnimationComplete}\n helperText={currStatData.helperText}\n />\n ),\n\n [EPostGameStat.POINT]: (\n <Points\n key={key}\n point={currStatData.value}\n show={currStatData.type === EPostGameStat.POINT}\n onComplete={onStatAnimationComplete}\n onReveal={currStatData.onReveal}\n />\n ),\n [EPostGameStat.DIGITAL_METER]: (\n <DigitalMeter\n key={key}\n value={currStatData.value}\n maxValue={currStatData.maxValue ?? 1}\n targetValue={currStatData.targetValue}\n displayText={currStatData.displayText ?? ''}\n progressType={currStatData.progressType ?? 'linear'}\n helperTextPrimary={currStatData.helperTextPrimary ?? ''}\n helperTextSecondary={currStatData.helperTextSecondary ?? ''}\n actAsTimer={currStatData.actAsTimer}\n show={true}\n onComplete={onStatAnimationComplete}\n />\n ),\n [EPostGameStat.STREAK]: (\n <Streak\n key={key}\n currStreak={currStatData.value}\n show={true}\n onComplete={onStatAnimationComplete}\n helperText={currStatData.helperText}\n onReveal={currStatData.onReveal}\n />\n ),\n [EPostGameStat.ACCURACY]: (\n <Accuracy\n key={key}\n accuracy={currStatData.value}\n show={true}\n onComplete={onStatAnimationComplete}\n helperText={currStatData.helperText}\n />\n ),\n [EPostGameStat.CLOCK]: (\n <Clock\n key={key}\n timeInMs={currStatData.value}\n show={true}\n onComplete={onStatAnimationComplete}\n helperText={currStatData.helperText}\n />\n ),\n };\n\n return renderStat[currStatData.type] ?? null;\n }, [currStatData, currStatIndex, onStatAnimationComplete]);\n\n if (!show || stats.length === 0 || currStatIndex >= stats.length) {\n return null;\n }\n\n return (\n <Styled.StatsWrapper>\n <Styled.BlackBg />\n\n {renderCurrentStat}\n </Styled.StatsWrapper>\n );\n }),\n);\n"],"names":["PostGameStats","memo","forwardRef","stats","show","onComplete","ref","currStatIndex","setCurrentStatIndex","useState","currStatData","useMemo","moveToNextAndPlay","useCallback","_a","prev","onStatAnimationComplete","useImperativeHandle","renderCurrentStat","key","EPostGameStat","jsx","Score","Points","DigitalMeter","Streak","Accuracy","Clock","jsxs","Styled.StatsWrapper","Styled.BlackBg"],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cuemath/leap",
3
- "version": "3.1.13-akm-2",
3
+ "version": "3.1.13-akm-3",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"