@chayns-components/typewriter 5.0.0-beta.1321 → 5.0.0-beta.1323
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.
|
@@ -43,6 +43,7 @@ const Typewriter = ({
|
|
|
43
43
|
shouldCalcAutoSpeed = false,
|
|
44
44
|
autoSpeedBaseFactor = 2000
|
|
45
45
|
}) => {
|
|
46
|
+
var _colorScheme$designSe5, _colorScheme$designSe6, _colorScheme$designSe9, _colorScheme$designSe0;
|
|
46
47
|
const [currentChildrenIndex, setCurrentChildrenIndex] = (0, _react.useState)(0);
|
|
47
48
|
const [hasRenderedChildrenOnce, setHasRenderedChildrenOnce] = (0, _react.useState)(false);
|
|
48
49
|
const [shouldPreventBlinkingCursor, setShouldPreventBlinkingCursor] = (0, _react.useState)(false);
|
|
@@ -52,6 +53,7 @@ const Typewriter = ({
|
|
|
52
53
|
const [autoSteps, setAutoSteps] = (0, _react.useState)(animationSteps);
|
|
53
54
|
const functions = (0, _chaynsApi.useFunctions)();
|
|
54
55
|
const values = (0, _chaynsApi.useValues)();
|
|
56
|
+
const colorScheme = (0, _core.useColorScheme)();
|
|
55
57
|
useIsomorphicLayoutEffect(() => {
|
|
56
58
|
if (children) {
|
|
57
59
|
setHasRenderedChildrenOnce(false);
|
|
@@ -71,14 +73,18 @@ const Typewriter = ({
|
|
|
71
73
|
const areMultipleChildrenGiven = Array.isArray(sortedChildren);
|
|
72
74
|
const childrenCount = areMultipleChildrenGiven ? sortedChildren.length : 1;
|
|
73
75
|
const textContent = (0, _react.useMemo)(() => {
|
|
76
|
+
var _colorScheme$designSe3, _colorScheme$designSe4;
|
|
74
77
|
if (areMultipleChildrenGiven) {
|
|
75
78
|
const currentChildren = sortedChildren[currentChildrenIndex];
|
|
76
79
|
if (currentChildren) {
|
|
80
|
+
var _colorScheme$designSe, _colorScheme$designSe2;
|
|
77
81
|
return /*#__PURE__*/_react.default.isValidElement(currentChildren) ? (0, _server.renderToString)(/*#__PURE__*/_react.default.createElement(_chaynsApi.ChaynsProvider, {
|
|
78
82
|
data: values,
|
|
79
83
|
functions: functions,
|
|
80
84
|
isModule: true
|
|
81
85
|
}, /*#__PURE__*/_react.default.createElement(_core.ColorSchemeProvider, {
|
|
86
|
+
color: colorScheme === null || colorScheme === void 0 || (_colorScheme$designSe = colorScheme.designSettings) === null || _colorScheme$designSe === void 0 ? void 0 : _colorScheme$designSe.color,
|
|
87
|
+
colorMode: colorScheme === null || colorScheme === void 0 || (_colorScheme$designSe2 = colorScheme.designSettings) === null || _colorScheme$designSe2 === void 0 ? void 0 : _colorScheme$designSe2.colorMode,
|
|
82
88
|
style: {
|
|
83
89
|
display: 'inline'
|
|
84
90
|
}
|
|
@@ -93,13 +99,15 @@ const Typewriter = ({
|
|
|
93
99
|
functions: functions,
|
|
94
100
|
isModule: true
|
|
95
101
|
}, /*#__PURE__*/_react.default.createElement(_core.ColorSchemeProvider, {
|
|
102
|
+
color: colorScheme === null || colorScheme === void 0 || (_colorScheme$designSe3 = colorScheme.designSettings) === null || _colorScheme$designSe3 === void 0 ? void 0 : _colorScheme$designSe3.color,
|
|
103
|
+
colorMode: colorScheme === null || colorScheme === void 0 || (_colorScheme$designSe4 = colorScheme.designSettings) === null || _colorScheme$designSe4 === void 0 ? void 0 : _colorScheme$designSe4.colorMode,
|
|
96
104
|
style: {
|
|
97
105
|
display: 'inline'
|
|
98
106
|
}
|
|
99
107
|
}, /*#__PURE__*/_react.default.createElement("span", {
|
|
100
108
|
className: "notranslate"
|
|
101
109
|
}, sortedChildren)))) : sortedChildren;
|
|
102
|
-
}, [areMultipleChildrenGiven, currentChildrenIndex, functions, sortedChildren, values]);
|
|
110
|
+
}, [areMultipleChildrenGiven, colorScheme === null || colorScheme === void 0 || (_colorScheme$designSe5 = colorScheme.designSettings) === null || _colorScheme$designSe5 === void 0 ? void 0 : _colorScheme$designSe5.color, colorScheme === null || colorScheme === void 0 || (_colorScheme$designSe6 = colorScheme.designSettings) === null || _colorScheme$designSe6 === void 0 ? void 0 : _colorScheme$designSe6.colorMode, currentChildrenIndex, functions, sortedChildren, values]);
|
|
103
111
|
const charactersCount = (0, _react.useMemo)(() => (0, _utils.getCharactersCount)(textContent), [textContent]);
|
|
104
112
|
const [shownCharCount, setShownCharCount] = (0, _react.useState)(charactersCount > 0 ? 0 : textContent.length);
|
|
105
113
|
const currentPosition = (0, _react.useRef)(0);
|
|
@@ -222,11 +230,14 @@ const Typewriter = ({
|
|
|
222
230
|
const shownText = (0, _react.useMemo)(() => (0, _utils.getSubTextFromHTML)(textContent, shownCharCount), [shownCharCount, textContent]);
|
|
223
231
|
const pseudoTextHTML = (0, _react.useMemo)(() => {
|
|
224
232
|
if (pseudoChildren) {
|
|
233
|
+
var _colorScheme$designSe7, _colorScheme$designSe8;
|
|
225
234
|
const pseudoText = /*#__PURE__*/_react.default.isValidElement(pseudoChildren) ? (0, _server.renderToString)(/*#__PURE__*/_react.default.createElement(_chaynsApi.ChaynsProvider, {
|
|
226
235
|
data: values,
|
|
227
236
|
functions: functions,
|
|
228
237
|
isModule: true
|
|
229
238
|
}, /*#__PURE__*/_react.default.createElement(_core.ColorSchemeProvider, {
|
|
239
|
+
color: colorScheme === null || colorScheme === void 0 || (_colorScheme$designSe7 = colorScheme.designSettings) === null || _colorScheme$designSe7 === void 0 ? void 0 : _colorScheme$designSe7.color,
|
|
240
|
+
colorMode: colorScheme === null || colorScheme === void 0 || (_colorScheme$designSe8 = colorScheme.designSettings) === null || _colorScheme$designSe8 === void 0 ? void 0 : _colorScheme$designSe8.colorMode,
|
|
230
241
|
style: {
|
|
231
242
|
display: 'inline'
|
|
232
243
|
}
|
|
@@ -240,7 +251,7 @@ const Typewriter = ({
|
|
|
240
251
|
return (0, _utils.getSubTextFromHTML)(textContent, shownCharCount);
|
|
241
252
|
}
|
|
242
253
|
return textContent || '​';
|
|
243
|
-
}, [functions, pseudoChildren, shouldUseAnimationHeight, shownCharCount, textContent, values]);
|
|
254
|
+
}, [colorScheme === null || colorScheme === void 0 || (_colorScheme$designSe9 = colorScheme.designSettings) === null || _colorScheme$designSe9 === void 0 ? void 0 : _colorScheme$designSe9.color, colorScheme === null || colorScheme === void 0 || (_colorScheme$designSe0 = colorScheme.designSettings) === null || _colorScheme$designSe0 === void 0 ? void 0 : _colorScheme$designSe0.colorMode, functions, pseudoChildren, shouldUseAnimationHeight, shownCharCount, textContent, values]);
|
|
244
255
|
return (0, _react.useMemo)(() => /*#__PURE__*/_react.default.createElement(_Typewriter.StyledTypewriter, {
|
|
245
256
|
$cursorType: cursorType,
|
|
246
257
|
onClick: isAnimatingText ? handleClick : undefined,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Typewriter.js","names":["_core","require","_chaynsApi","_react","_interopRequireWildcard","_reactDom","_server","_cursor","_speed","_AnimatedTypewriterText","_interopRequireDefault","_Typewriter","_utils","e","__esModule","default","t","WeakMap","r","n","o","i","f","__proto__","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","useIsomorphicLayoutEffect","window","useLayoutEffect","useEffect","Typewriter","children","cursorType","CursorType","Default","nextTextDelay","TypewriterDelay","Medium","onFinish","onResetAnimationEnd","animationSteps","onResetAnimationStart","onTypingAnimationEnd","onTypingAnimationStart","pseudoChildren","resetDelay","shouldForceCursorAnimation","shouldHideCursor","shouldRemainSingleLine","shouldSortChildrenRandomly","shouldUseAnimationHeight","shouldUseResetAnimation","shouldWaitForContent","speed","TypewriterSpeed","resetSpeed","startDelay","None","textStyle","shouldCalcAutoSpeed","autoSpeedBaseFactor","currentChildrenIndex","setCurrentChildrenIndex","useState","hasRenderedChildrenOnce","setHasRenderedChildrenOnce","shouldPreventBlinkingCursor","setShouldPreventBlinkingCursor","isResetAnimationActive","setIsResetAnimationActive","shouldStopAnimation","setShouldStopAnimation","autoSpeed","setAutoSpeed","autoSteps","setAutoSteps","functions","useFunctions","values","useValues","sortedChildren","useMemo","Array","isArray","shuffleArray","areMultipleChildrenGiven","childrenCount","length","textContent","currentChildren","React","isValidElement","renderToString","createElement","ChaynsProvider","data","isModule","ColorSchemeProvider","style","display","className","charactersCount","getCharactersCount","shownCharCount","setShownCharCount","currentPosition","useRef","undefined","calculatedAutoSpeed","steps","calculateAutoSpeed","fullTextLength","current","baseSpeedFactor","isAnimatingText","handleClick","useCallback","event","stopPropagation","preventDefault","handleSetNextChildrenIndex","newIndex","interval","setInterval","prevState","nextState","clearInterval","setTimeout","startTypingAnimation","Thin","runTypingInterval","Math","min","shownText","getSubTextFromHTML","pseudoTextHTML","pseudoText","StyledTypewriter","$cursorType","onClick","$isAnimatingText","$shouldHideCursor","$shouldPreventBlinkAnimation","StyledTypewriterText","$shouldRemainSingleLine","dangerouslySetInnerHTML","__html","StyledTypewriterPseudoText","createPortal","position","visibility","document","body","displayName","_default","exports"],"sources":["../../../../src/components/typewriter/Typewriter.tsx"],"sourcesContent":["import { ColorSchemeProvider } from '@chayns-components/core';\nimport { ChaynsProvider, useFunctions, useValues } from 'chayns-api';\nimport React, {\n FC,\n ReactElement,\n useCallback,\n useEffect,\n useLayoutEffect,\n useMemo,\n useRef,\n useState,\n} from 'react';\nimport { createPortal } from 'react-dom';\nimport { renderToString } from 'react-dom/server';\nimport { CursorType } from '../../types/cursor';\nimport { TypewriterDelay, TypewriterSpeed } from '../../types/speed';\nimport AnimatedTypewriterText from './AnimatedTypewriterText';\nimport {\n StyledTypewriter,\n StyledTypewriterPseudoText,\n StyledTypewriterText,\n} from './Typewriter.styles';\nimport { calculateAutoSpeed, getCharactersCount, getSubTextFromHTML, shuffleArray } from './utils';\n\nconst useIsomorphicLayoutEffect = typeof window !== 'undefined' ? useLayoutEffect : useEffect;\n\nexport type TypewriterProps = {\n /**\n * The number of characters that will be animated per animation cycle.\n */\n animationSteps?: number;\n /**\n * The base speed factor to calculate the animation speed.\n */\n autoSpeedBaseFactor?: number;\n /**\n * The text to type\n */\n children: ReactElement | ReactElement[] | string | string[];\n /**\n * The type of the cursor. Use the CursorType enum for this prop.\n */\n cursorType?: CursorType;\n /**\n * The delay in milliseconds before the next text is shown.\n * This prop is only used if multiple texts are given.\n */\n nextTextDelay?: TypewriterDelay;\n /**\n * Function that is executed when the typewriter animation has finished. This function will not\n * be executed if multiple texts are used.\n */\n onFinish?: VoidFunction;\n /**\n * Function that is executed when the reset animation has finished. This function will not be\n * executed if `shouldUseResetAnimation` is not set to `true`.\n */\n onResetAnimationEnd?: VoidFunction;\n /**\n * Function that is executed when the reset animation has started. This function will not be\n * executed if `shouldUseResetAnimation` is not set to `true`.\n */\n onResetAnimationStart?: VoidFunction;\n /**\n * Function that is executed when the typing animation has finished. If multiple texts are given,\n * this function will be executed for each text.\n */\n onTypingAnimationEnd?: VoidFunction;\n /**\n * Function that is executed when the typing animation has started. If multiple texts are given,\n * this function will be executed for each text.\n */\n onTypingAnimationStart?: VoidFunction;\n /**\n * Pseudo-element to be rendered invisible during animation to define the size of the element\n * for the typewriter effect. By default, the \"children\" is used for this purpose.\n */\n pseudoChildren?: ReactElement | string;\n /**\n * Waiting time in milliseconds before the typewriter resets the text.\n * This prop is only used if multiple texts are given.\n */\n resetDelay?: TypewriterDelay;\n /**\n * The reset speed of the animation. Use the TypewriterSpeed enum for this prop.\n */\n resetSpeed?: TypewriterSpeed | number;\n /**\n * Specifies whether the cursor should be forced to animate even if no text is currently animated.\n */\n shouldForceCursorAnimation?: boolean;\n /**\n * Specifies whether the cursor should be hidden\n */\n shouldHideCursor?: boolean;\n /**\n * Whether the content should remain a single line.\n */\n shouldRemainSingleLine?: boolean;\n /**\n * Specifies whether the children should be sorted randomly if there are multiple texts.\n * This makes the typewriter start with a different text each time and also changes them\n * in a random order.\n */\n shouldSortChildrenRandomly?: boolean;\n /**\n * Specifies whether the animation should use its full height or the height of the current\n * chunk.\n */\n shouldUseAnimationHeight?: boolean;\n /**\n * Whether the animation speed should be calculated with the chunk interval.\n */\n shouldCalcAutoSpeed?: boolean;\n /**\n * Specifies whether the reset of the text should be animated with a backspace animation for\n * multiple texts.\n */\n shouldUseResetAnimation?: boolean;\n /**\n * Whether the typewriter should wait for new content\n */\n shouldWaitForContent?: boolean;\n /**\n * The speed of the animation. Use the TypewriterSpeed enum for this prop.\n */\n speed?: TypewriterSpeed | number;\n /**\n * The delay in milliseconds before the typewriter starts typing.\n */\n startDelay?: TypewriterDelay;\n /**\n * The style of the typewriter text element\n */\n textStyle?: React.CSSProperties;\n};\n\nconst Typewriter: FC<TypewriterProps> = ({\n children,\n cursorType = CursorType.Default,\n nextTextDelay = TypewriterDelay.Medium,\n onFinish,\n onResetAnimationEnd,\n animationSteps = 1,\n onResetAnimationStart,\n onTypingAnimationEnd,\n onTypingAnimationStart,\n pseudoChildren,\n resetDelay = TypewriterDelay.Medium,\n shouldForceCursorAnimation = false,\n shouldHideCursor = false,\n shouldRemainSingleLine = false,\n shouldSortChildrenRandomly = false,\n shouldUseAnimationHeight = false,\n shouldUseResetAnimation = false,\n shouldWaitForContent,\n speed = TypewriterSpeed.Medium,\n resetSpeed = speed,\n startDelay = TypewriterDelay.None,\n textStyle,\n shouldCalcAutoSpeed = false,\n autoSpeedBaseFactor = 2000,\n}) => {\n const [currentChildrenIndex, setCurrentChildrenIndex] = useState(0);\n const [hasRenderedChildrenOnce, setHasRenderedChildrenOnce] = useState(false);\n const [shouldPreventBlinkingCursor, setShouldPreventBlinkingCursor] = useState(false);\n const [isResetAnimationActive, setIsResetAnimationActive] = useState(false);\n const [shouldStopAnimation, setShouldStopAnimation] = useState(false);\n const [autoSpeed, setAutoSpeed] = useState<number>();\n const [autoSteps, setAutoSteps] = useState(animationSteps);\n\n const functions = useFunctions();\n const values = useValues();\n\n useIsomorphicLayoutEffect(() => {\n if (children) {\n setHasRenderedChildrenOnce(false);\n }\n }, [children]);\n\n useEffect(() => {\n if (!hasRenderedChildrenOnce) {\n setHasRenderedChildrenOnce(true);\n }\n }, [hasRenderedChildrenOnce]);\n\n useEffect(() => {\n if (animationSteps > 0 && !shouldCalcAutoSpeed) {\n setAutoSteps(animationSteps);\n }\n }, [animationSteps, shouldCalcAutoSpeed]);\n\n const sortedChildren = useMemo(\n () =>\n Array.isArray(children) && shouldSortChildrenRandomly\n ? shuffleArray<ReactElement | string>(children)\n : children,\n [children, shouldSortChildrenRandomly],\n );\n\n const areMultipleChildrenGiven = Array.isArray(sortedChildren);\n const childrenCount = areMultipleChildrenGiven ? sortedChildren.length : 1;\n\n const textContent = useMemo(() => {\n if (areMultipleChildrenGiven) {\n const currentChildren = sortedChildren[currentChildrenIndex];\n\n if (currentChildren) {\n return React.isValidElement(currentChildren)\n ? renderToString(\n <ChaynsProvider data={values} functions={functions} isModule>\n <ColorSchemeProvider style={{ display: 'inline' }}>\n <span className=\"notranslate\">{currentChildren}</span>\n </ColorSchemeProvider>\n </ChaynsProvider>,\n )\n : (currentChildren as string);\n }\n\n return '';\n }\n\n return React.isValidElement(sortedChildren)\n ? renderToString(\n <ChaynsProvider data={values} functions={functions} isModule>\n <ColorSchemeProvider style={{ display: 'inline' }}>\n <span className=\"notranslate\">{sortedChildren}</span>\n </ColorSchemeProvider>\n </ChaynsProvider>,\n )\n : (sortedChildren as string);\n }, [areMultipleChildrenGiven, currentChildrenIndex, functions, sortedChildren, values]);\n\n const charactersCount = useMemo(() => getCharactersCount(textContent), [textContent]);\n\n const [shownCharCount, setShownCharCount] = useState(\n charactersCount > 0 ? 0 : textContent.length,\n );\n\n const currentPosition = useRef(0);\n\n useEffect(() => {\n if (!shouldCalcAutoSpeed) {\n setAutoSpeed(undefined);\n setAutoSteps(animationSteps);\n\n return;\n }\n\n const { speed: calculatedAutoSpeed, steps } = calculateAutoSpeed({\n fullTextLength: charactersCount,\n currentPosition: currentPosition.current,\n baseSpeedFactor: autoSpeedBaseFactor,\n });\n\n setAutoSpeed(calculatedAutoSpeed);\n setAutoSteps(steps);\n }, [animationSteps, autoSpeedBaseFactor, charactersCount, shouldCalcAutoSpeed]);\n\n const isAnimatingText =\n shownCharCount < textContent.length ||\n shouldForceCursorAnimation ||\n areMultipleChildrenGiven ||\n textContent.length === 0;\n\n const handleClick = useCallback((event: React.MouseEvent) => {\n event.stopPropagation();\n event.preventDefault();\n\n setShouldStopAnimation(true);\n }, []);\n\n const handleSetNextChildrenIndex = useCallback(\n () =>\n setCurrentChildrenIndex(() => {\n let newIndex = currentChildrenIndex + 1;\n\n if (newIndex > childrenCount - 1) {\n newIndex = 0;\n }\n\n return newIndex;\n }),\n [childrenCount, currentChildrenIndex],\n );\n\n useEffect(() => {\n let interval: number | undefined;\n\n if (shouldStopAnimation || charactersCount === 0) {\n setShownCharCount(textContent.length);\n currentPosition.current = textContent.length;\n } else if (isResetAnimationActive) {\n if (typeof onResetAnimationStart === 'function') {\n onResetAnimationStart();\n }\n\n interval = window.setInterval(() => {\n setShownCharCount((prevState) => {\n const nextState = prevState - autoSteps;\n currentPosition.current = nextState;\n\n if (nextState === 0) {\n window.clearInterval(interval);\n\n if (typeof onResetAnimationEnd === 'function') {\n onResetAnimationEnd();\n }\n\n if (areMultipleChildrenGiven) {\n setTimeout(() => {\n setIsResetAnimationActive(false);\n handleSetNextChildrenIndex();\n }, nextTextDelay);\n }\n }\n\n return nextState;\n });\n }, resetSpeed);\n } else {\n const startTypingAnimation = () => {\n if (cursorType === CursorType.Thin) {\n setShouldPreventBlinkingCursor(true);\n }\n\n if (typeof onTypingAnimationStart === 'function') {\n onTypingAnimationStart();\n }\n\n const runTypingInterval = () => {\n setShownCharCount((prevState) => {\n let nextState = Math.min(prevState + autoSteps, charactersCount);\n\n if (nextState >= charactersCount && !shouldWaitForContent) {\n window.clearInterval(interval);\n\n if (cursorType === CursorType.Thin) {\n setShouldPreventBlinkingCursor(false);\n }\n\n if (typeof onTypingAnimationEnd === 'function') {\n onTypingAnimationEnd();\n }\n\n /**\n * At this point, the next value for \"shownCharCount\" is deliberately set to\n * the length of the textContent to correctly display HTML elements\n * after the last letter.\n */\n nextState = textContent.length;\n\n if (areMultipleChildrenGiven) {\n setTimeout(() => {\n if (shouldUseResetAnimation) {\n setIsResetAnimationActive(true);\n } else {\n setShownCharCount(0);\n setTimeout(handleSetNextChildrenIndex, nextTextDelay);\n }\n }, resetDelay);\n }\n }\n\n currentPosition.current = nextState;\n\n return nextState;\n });\n };\n\n interval = window.setInterval(runTypingInterval, autoSpeed ?? speed);\n };\n\n if (startDelay) {\n setTimeout(startTypingAnimation, startDelay);\n } else {\n startTypingAnimation();\n }\n }\n\n return () => {\n window.clearInterval(interval);\n };\n }, [\n resetSpeed,\n speed,\n resetDelay,\n childrenCount,\n charactersCount,\n textContent.length,\n shouldStopAnimation,\n shouldWaitForContent,\n isResetAnimationActive,\n shouldUseResetAnimation,\n areMultipleChildrenGiven,\n handleSetNextChildrenIndex,\n nextTextDelay,\n startDelay,\n onResetAnimationStart,\n onResetAnimationEnd,\n onTypingAnimationStart,\n onTypingAnimationEnd,\n cursorType,\n autoSpeed,\n autoSteps,\n ]);\n\n useEffect(() => {\n if (!isAnimatingText && typeof onFinish === 'function') {\n onFinish();\n }\n }, [isAnimatingText, onFinish]);\n\n const shownText = useMemo(\n () => getSubTextFromHTML(textContent, shownCharCount),\n [shownCharCount, textContent],\n );\n\n const pseudoTextHTML = useMemo(() => {\n if (pseudoChildren) {\n const pseudoText = React.isValidElement(pseudoChildren)\n ? renderToString(\n <ChaynsProvider data={values} functions={functions} isModule>\n <ColorSchemeProvider style={{ display: 'inline' }}>\n {pseudoChildren}\n </ColorSchemeProvider>\n </ChaynsProvider>,\n )\n : (pseudoChildren as string);\n\n if (shouldUseAnimationHeight) {\n return getSubTextFromHTML(pseudoText, shownCharCount);\n }\n\n return pseudoText;\n }\n\n if (shouldUseAnimationHeight && textContent) {\n return getSubTextFromHTML(textContent, shownCharCount);\n }\n\n return textContent || '​';\n }, [functions, pseudoChildren, shouldUseAnimationHeight, shownCharCount, textContent, values]);\n\n return useMemo(\n () => (\n <StyledTypewriter\n $cursorType={cursorType}\n onClick={isAnimatingText ? handleClick : undefined}\n $isAnimatingText={isAnimatingText}\n $shouldHideCursor={shouldHideCursor}\n $shouldPreventBlinkAnimation={shouldPreventBlinkingCursor}\n >\n {isAnimatingText ? (\n <AnimatedTypewriterText\n shouldHideCursor={shouldHideCursor}\n shouldRemainSingleLine={shouldRemainSingleLine}\n shownText={shownText}\n textStyle={textStyle}\n />\n ) : (\n <StyledTypewriterText\n className=\"notranslate\"\n $shouldRemainSingleLine={shouldRemainSingleLine}\n dangerouslySetInnerHTML={\n typeof sortedChildren === 'string' ? { __html: shownText } : undefined\n }\n style={textStyle}\n >\n {typeof sortedChildren !== 'string' ? sortedChildren : undefined}\n </StyledTypewriterText>\n )}\n {isAnimatingText && (\n <StyledTypewriterPseudoText\n $isAnimatingText={isAnimatingText}\n $shouldHideCursor={shouldHideCursor}\n dangerouslySetInnerHTML={{ __html: pseudoTextHTML }}\n />\n )}\n {/*\n The following is needed because some components like the CodeHighlighter will not render correct\n if the element is not rendered on a client before...\n */}\n {!hasRenderedChildrenOnce &&\n createPortal(\n <div style={{ position: 'absolute', visibility: 'hidden' }}>\n {children}\n </div>,\n document.body,\n )}\n </StyledTypewriter>\n ),\n [\n children,\n cursorType,\n handleClick,\n hasRenderedChildrenOnce,\n isAnimatingText,\n pseudoTextHTML,\n shouldHideCursor,\n shouldPreventBlinkingCursor,\n shouldRemainSingleLine,\n shownText,\n sortedChildren,\n textStyle,\n ],\n );\n};\n\nTypewriter.displayName = 'Typewriter';\n\nexport default Typewriter;\n"],"mappings":"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","ignoreList":[]}
|
|
1
|
+
{"version":3,"file":"Typewriter.js","names":["_core","require","_chaynsApi","_react","_interopRequireWildcard","_reactDom","_server","_cursor","_speed","_AnimatedTypewriterText","_interopRequireDefault","_Typewriter","_utils","e","__esModule","default","t","WeakMap","r","n","o","i","f","__proto__","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","useIsomorphicLayoutEffect","window","useLayoutEffect","useEffect","Typewriter","children","cursorType","CursorType","Default","nextTextDelay","TypewriterDelay","Medium","onFinish","onResetAnimationEnd","animationSteps","onResetAnimationStart","onTypingAnimationEnd","onTypingAnimationStart","pseudoChildren","resetDelay","shouldForceCursorAnimation","shouldHideCursor","shouldRemainSingleLine","shouldSortChildrenRandomly","shouldUseAnimationHeight","shouldUseResetAnimation","shouldWaitForContent","speed","TypewriterSpeed","resetSpeed","startDelay","None","textStyle","shouldCalcAutoSpeed","autoSpeedBaseFactor","_colorScheme$designSe5","_colorScheme$designSe6","_colorScheme$designSe9","_colorScheme$designSe0","currentChildrenIndex","setCurrentChildrenIndex","useState","hasRenderedChildrenOnce","setHasRenderedChildrenOnce","shouldPreventBlinkingCursor","setShouldPreventBlinkingCursor","isResetAnimationActive","setIsResetAnimationActive","shouldStopAnimation","setShouldStopAnimation","autoSpeed","setAutoSpeed","autoSteps","setAutoSteps","functions","useFunctions","values","useValues","colorScheme","useColorScheme","sortedChildren","useMemo","Array","isArray","shuffleArray","areMultipleChildrenGiven","childrenCount","length","textContent","_colorScheme$designSe3","_colorScheme$designSe4","currentChildren","_colorScheme$designSe","_colorScheme$designSe2","React","isValidElement","renderToString","createElement","ChaynsProvider","data","isModule","ColorSchemeProvider","color","designSettings","colorMode","style","display","className","charactersCount","getCharactersCount","shownCharCount","setShownCharCount","currentPosition","useRef","undefined","calculatedAutoSpeed","steps","calculateAutoSpeed","fullTextLength","current","baseSpeedFactor","isAnimatingText","handleClick","useCallback","event","stopPropagation","preventDefault","handleSetNextChildrenIndex","newIndex","interval","setInterval","prevState","nextState","clearInterval","setTimeout","startTypingAnimation","Thin","runTypingInterval","Math","min","shownText","getSubTextFromHTML","pseudoTextHTML","_colorScheme$designSe7","_colorScheme$designSe8","pseudoText","StyledTypewriter","$cursorType","onClick","$isAnimatingText","$shouldHideCursor","$shouldPreventBlinkAnimation","StyledTypewriterText","$shouldRemainSingleLine","dangerouslySetInnerHTML","__html","StyledTypewriterPseudoText","createPortal","position","visibility","document","body","displayName","_default","exports"],"sources":["../../../../src/components/typewriter/Typewriter.tsx"],"sourcesContent":["import { ColorSchemeProvider, useColorScheme } from '@chayns-components/core';\nimport { ChaynsProvider, useFunctions, useValues } from 'chayns-api';\nimport React, {\n FC,\n ReactElement,\n useCallback,\n useEffect,\n useLayoutEffect,\n useMemo,\n useRef,\n useState,\n} from 'react';\nimport { createPortal } from 'react-dom';\nimport { renderToString } from 'react-dom/server';\nimport { CursorType } from '../../types/cursor';\nimport { TypewriterDelay, TypewriterSpeed } from '../../types/speed';\nimport AnimatedTypewriterText from './AnimatedTypewriterText';\nimport {\n StyledTypewriter,\n StyledTypewriterPseudoText,\n StyledTypewriterText,\n} from './Typewriter.styles';\nimport { calculateAutoSpeed, getCharactersCount, getSubTextFromHTML, shuffleArray } from './utils';\n\nconst useIsomorphicLayoutEffect = typeof window !== 'undefined' ? useLayoutEffect : useEffect;\n\nexport type TypewriterProps = {\n /**\n * The number of characters that will be animated per animation cycle.\n */\n animationSteps?: number;\n /**\n * The base speed factor to calculate the animation speed.\n */\n autoSpeedBaseFactor?: number;\n /**\n * The text to type\n */\n children: ReactElement | ReactElement[] | string | string[];\n /**\n * The type of the cursor. Use the CursorType enum for this prop.\n */\n cursorType?: CursorType;\n /**\n * The delay in milliseconds before the next text is shown.\n * This prop is only used if multiple texts are given.\n */\n nextTextDelay?: TypewriterDelay;\n /**\n * Function that is executed when the typewriter animation has finished. This function will not\n * be executed if multiple texts are used.\n */\n onFinish?: VoidFunction;\n /**\n * Function that is executed when the reset animation has finished. This function will not be\n * executed if `shouldUseResetAnimation` is not set to `true`.\n */\n onResetAnimationEnd?: VoidFunction;\n /**\n * Function that is executed when the reset animation has started. This function will not be\n * executed if `shouldUseResetAnimation` is not set to `true`.\n */\n onResetAnimationStart?: VoidFunction;\n /**\n * Function that is executed when the typing animation has finished. If multiple texts are given,\n * this function will be executed for each text.\n */\n onTypingAnimationEnd?: VoidFunction;\n /**\n * Function that is executed when the typing animation has started. If multiple texts are given,\n * this function will be executed for each text.\n */\n onTypingAnimationStart?: VoidFunction;\n /**\n * Pseudo-element to be rendered invisible during animation to define the size of the element\n * for the typewriter effect. By default, the \"children\" is used for this purpose.\n */\n pseudoChildren?: ReactElement | string;\n /**\n * Waiting time in milliseconds before the typewriter resets the text.\n * This prop is only used if multiple texts are given.\n */\n resetDelay?: TypewriterDelay;\n /**\n * The reset speed of the animation. Use the TypewriterSpeed enum for this prop.\n */\n resetSpeed?: TypewriterSpeed | number;\n /**\n * Specifies whether the cursor should be forced to animate even if no text is currently animated.\n */\n shouldForceCursorAnimation?: boolean;\n /**\n * Specifies whether the cursor should be hidden\n */\n shouldHideCursor?: boolean;\n /**\n * Whether the content should remain a single line.\n */\n shouldRemainSingleLine?: boolean;\n /**\n * Specifies whether the children should be sorted randomly if there are multiple texts.\n * This makes the typewriter start with a different text each time and also changes them\n * in a random order.\n */\n shouldSortChildrenRandomly?: boolean;\n /**\n * Specifies whether the animation should use its full height or the height of the current\n * chunk.\n */\n shouldUseAnimationHeight?: boolean;\n /**\n * Whether the animation speed should be calculated with the chunk interval.\n */\n shouldCalcAutoSpeed?: boolean;\n /**\n * Specifies whether the reset of the text should be animated with a backspace animation for\n * multiple texts.\n */\n shouldUseResetAnimation?: boolean;\n /**\n * Whether the typewriter should wait for new content\n */\n shouldWaitForContent?: boolean;\n /**\n * The speed of the animation. Use the TypewriterSpeed enum for this prop.\n */\n speed?: TypewriterSpeed | number;\n /**\n * The delay in milliseconds before the typewriter starts typing.\n */\n startDelay?: TypewriterDelay;\n /**\n * The style of the typewriter text element\n */\n textStyle?: React.CSSProperties;\n};\n\nconst Typewriter: FC<TypewriterProps> = ({\n children,\n cursorType = CursorType.Default,\n nextTextDelay = TypewriterDelay.Medium,\n onFinish,\n onResetAnimationEnd,\n animationSteps = 1,\n onResetAnimationStart,\n onTypingAnimationEnd,\n onTypingAnimationStart,\n pseudoChildren,\n resetDelay = TypewriterDelay.Medium,\n shouldForceCursorAnimation = false,\n shouldHideCursor = false,\n shouldRemainSingleLine = false,\n shouldSortChildrenRandomly = false,\n shouldUseAnimationHeight = false,\n shouldUseResetAnimation = false,\n shouldWaitForContent,\n speed = TypewriterSpeed.Medium,\n resetSpeed = speed,\n startDelay = TypewriterDelay.None,\n textStyle,\n shouldCalcAutoSpeed = false,\n autoSpeedBaseFactor = 2000,\n}) => {\n const [currentChildrenIndex, setCurrentChildrenIndex] = useState(0);\n const [hasRenderedChildrenOnce, setHasRenderedChildrenOnce] = useState(false);\n const [shouldPreventBlinkingCursor, setShouldPreventBlinkingCursor] = useState(false);\n const [isResetAnimationActive, setIsResetAnimationActive] = useState(false);\n const [shouldStopAnimation, setShouldStopAnimation] = useState(false);\n const [autoSpeed, setAutoSpeed] = useState<number>();\n const [autoSteps, setAutoSteps] = useState(animationSteps);\n\n const functions = useFunctions();\n const values = useValues();\n\n const colorScheme = useColorScheme();\n\n useIsomorphicLayoutEffect(() => {\n if (children) {\n setHasRenderedChildrenOnce(false);\n }\n }, [children]);\n\n useEffect(() => {\n if (!hasRenderedChildrenOnce) {\n setHasRenderedChildrenOnce(true);\n }\n }, [hasRenderedChildrenOnce]);\n\n useEffect(() => {\n if (animationSteps > 0 && !shouldCalcAutoSpeed) {\n setAutoSteps(animationSteps);\n }\n }, [animationSteps, shouldCalcAutoSpeed]);\n\n const sortedChildren = useMemo(\n () =>\n Array.isArray(children) && shouldSortChildrenRandomly\n ? shuffleArray<ReactElement | string>(children)\n : children,\n [children, shouldSortChildrenRandomly],\n );\n\n const areMultipleChildrenGiven = Array.isArray(sortedChildren);\n const childrenCount = areMultipleChildrenGiven ? sortedChildren.length : 1;\n\n const textContent = useMemo(() => {\n if (areMultipleChildrenGiven) {\n const currentChildren = sortedChildren[currentChildrenIndex];\n\n if (currentChildren) {\n return React.isValidElement(currentChildren)\n ? renderToString(\n <ChaynsProvider data={values} functions={functions} isModule>\n <ColorSchemeProvider\n color={colorScheme?.designSettings?.color}\n colorMode={colorScheme?.designSettings?.colorMode}\n style={{ display: 'inline' }}\n >\n <span className=\"notranslate\">{currentChildren}</span>\n </ColorSchemeProvider>\n </ChaynsProvider>,\n )\n : (currentChildren as string);\n }\n\n return '';\n }\n\n return React.isValidElement(sortedChildren)\n ? renderToString(\n <ChaynsProvider data={values} functions={functions} isModule>\n <ColorSchemeProvider\n color={colorScheme?.designSettings?.color}\n colorMode={colorScheme?.designSettings?.colorMode}\n style={{ display: 'inline' }}\n >\n <span className=\"notranslate\">{sortedChildren}</span>\n </ColorSchemeProvider>\n </ChaynsProvider>,\n )\n : (sortedChildren as string);\n }, [\n areMultipleChildrenGiven,\n colorScheme?.designSettings?.color,\n colorScheme?.designSettings?.colorMode,\n currentChildrenIndex,\n functions,\n sortedChildren,\n values,\n ]);\n\n const charactersCount = useMemo(() => getCharactersCount(textContent), [textContent]);\n\n const [shownCharCount, setShownCharCount] = useState(\n charactersCount > 0 ? 0 : textContent.length,\n );\n\n const currentPosition = useRef(0);\n\n useEffect(() => {\n if (!shouldCalcAutoSpeed) {\n setAutoSpeed(undefined);\n setAutoSteps(animationSteps);\n\n return;\n }\n\n const { speed: calculatedAutoSpeed, steps } = calculateAutoSpeed({\n fullTextLength: charactersCount,\n currentPosition: currentPosition.current,\n baseSpeedFactor: autoSpeedBaseFactor,\n });\n\n setAutoSpeed(calculatedAutoSpeed);\n setAutoSteps(steps);\n }, [animationSteps, autoSpeedBaseFactor, charactersCount, shouldCalcAutoSpeed]);\n\n const isAnimatingText =\n shownCharCount < textContent.length ||\n shouldForceCursorAnimation ||\n areMultipleChildrenGiven ||\n textContent.length === 0;\n\n const handleClick = useCallback((event: React.MouseEvent) => {\n event.stopPropagation();\n event.preventDefault();\n\n setShouldStopAnimation(true);\n }, []);\n\n const handleSetNextChildrenIndex = useCallback(\n () =>\n setCurrentChildrenIndex(() => {\n let newIndex = currentChildrenIndex + 1;\n\n if (newIndex > childrenCount - 1) {\n newIndex = 0;\n }\n\n return newIndex;\n }),\n [childrenCount, currentChildrenIndex],\n );\n\n useEffect(() => {\n let interval: number | undefined;\n\n if (shouldStopAnimation || charactersCount === 0) {\n setShownCharCount(textContent.length);\n currentPosition.current = textContent.length;\n } else if (isResetAnimationActive) {\n if (typeof onResetAnimationStart === 'function') {\n onResetAnimationStart();\n }\n\n interval = window.setInterval(() => {\n setShownCharCount((prevState) => {\n const nextState = prevState - autoSteps;\n currentPosition.current = nextState;\n\n if (nextState === 0) {\n window.clearInterval(interval);\n\n if (typeof onResetAnimationEnd === 'function') {\n onResetAnimationEnd();\n }\n\n if (areMultipleChildrenGiven) {\n setTimeout(() => {\n setIsResetAnimationActive(false);\n handleSetNextChildrenIndex();\n }, nextTextDelay);\n }\n }\n\n return nextState;\n });\n }, resetSpeed);\n } else {\n const startTypingAnimation = () => {\n if (cursorType === CursorType.Thin) {\n setShouldPreventBlinkingCursor(true);\n }\n\n if (typeof onTypingAnimationStart === 'function') {\n onTypingAnimationStart();\n }\n\n const runTypingInterval = () => {\n setShownCharCount((prevState) => {\n let nextState = Math.min(prevState + autoSteps, charactersCount);\n\n if (nextState >= charactersCount && !shouldWaitForContent) {\n window.clearInterval(interval);\n\n if (cursorType === CursorType.Thin) {\n setShouldPreventBlinkingCursor(false);\n }\n\n if (typeof onTypingAnimationEnd === 'function') {\n onTypingAnimationEnd();\n }\n\n /**\n * At this point, the next value for \"shownCharCount\" is deliberately set to\n * the length of the textContent to correctly display HTML elements\n * after the last letter.\n */\n nextState = textContent.length;\n\n if (areMultipleChildrenGiven) {\n setTimeout(() => {\n if (shouldUseResetAnimation) {\n setIsResetAnimationActive(true);\n } else {\n setShownCharCount(0);\n setTimeout(handleSetNextChildrenIndex, nextTextDelay);\n }\n }, resetDelay);\n }\n }\n\n currentPosition.current = nextState;\n\n return nextState;\n });\n };\n\n interval = window.setInterval(runTypingInterval, autoSpeed ?? speed);\n };\n\n if (startDelay) {\n setTimeout(startTypingAnimation, startDelay);\n } else {\n startTypingAnimation();\n }\n }\n\n return () => {\n window.clearInterval(interval);\n };\n }, [\n resetSpeed,\n speed,\n resetDelay,\n childrenCount,\n charactersCount,\n textContent.length,\n shouldStopAnimation,\n shouldWaitForContent,\n isResetAnimationActive,\n shouldUseResetAnimation,\n areMultipleChildrenGiven,\n handleSetNextChildrenIndex,\n nextTextDelay,\n startDelay,\n onResetAnimationStart,\n onResetAnimationEnd,\n onTypingAnimationStart,\n onTypingAnimationEnd,\n cursorType,\n autoSpeed,\n autoSteps,\n ]);\n\n useEffect(() => {\n if (!isAnimatingText && typeof onFinish === 'function') {\n onFinish();\n }\n }, [isAnimatingText, onFinish]);\n\n const shownText = useMemo(\n () => getSubTextFromHTML(textContent, shownCharCount),\n [shownCharCount, textContent],\n );\n\n const pseudoTextHTML = useMemo(() => {\n if (pseudoChildren) {\n const pseudoText = React.isValidElement(pseudoChildren)\n ? renderToString(\n <ChaynsProvider data={values} functions={functions} isModule>\n <ColorSchemeProvider\n color={colorScheme?.designSettings?.color}\n colorMode={colorScheme?.designSettings?.colorMode}\n style={{ display: 'inline' }}\n >\n {pseudoChildren}\n </ColorSchemeProvider>\n </ChaynsProvider>,\n )\n : (pseudoChildren as string);\n\n if (shouldUseAnimationHeight) {\n return getSubTextFromHTML(pseudoText, shownCharCount);\n }\n\n return pseudoText;\n }\n\n if (shouldUseAnimationHeight && textContent) {\n return getSubTextFromHTML(textContent, shownCharCount);\n }\n\n return textContent || '​';\n }, [\n colorScheme?.designSettings?.color,\n colorScheme?.designSettings?.colorMode,\n functions,\n pseudoChildren,\n shouldUseAnimationHeight,\n shownCharCount,\n textContent,\n values,\n ]);\n\n return useMemo(\n () => (\n <StyledTypewriter\n $cursorType={cursorType}\n onClick={isAnimatingText ? handleClick : undefined}\n $isAnimatingText={isAnimatingText}\n $shouldHideCursor={shouldHideCursor}\n $shouldPreventBlinkAnimation={shouldPreventBlinkingCursor}\n >\n {isAnimatingText ? (\n <AnimatedTypewriterText\n shouldHideCursor={shouldHideCursor}\n shouldRemainSingleLine={shouldRemainSingleLine}\n shownText={shownText}\n textStyle={textStyle}\n />\n ) : (\n <StyledTypewriterText\n className=\"notranslate\"\n $shouldRemainSingleLine={shouldRemainSingleLine}\n dangerouslySetInnerHTML={\n typeof sortedChildren === 'string' ? { __html: shownText } : undefined\n }\n style={textStyle}\n >\n {typeof sortedChildren !== 'string' ? sortedChildren : undefined}\n </StyledTypewriterText>\n )}\n {isAnimatingText && (\n <StyledTypewriterPseudoText\n $isAnimatingText={isAnimatingText}\n $shouldHideCursor={shouldHideCursor}\n dangerouslySetInnerHTML={{ __html: pseudoTextHTML }}\n />\n )}\n {/*\n The following is needed because some components like the CodeHighlighter will not render correct\n if the element is not rendered on a client before...\n */}\n {!hasRenderedChildrenOnce &&\n createPortal(\n <div style={{ position: 'absolute', visibility: 'hidden' }}>\n {children}\n </div>,\n document.body,\n )}\n </StyledTypewriter>\n ),\n [\n children,\n cursorType,\n handleClick,\n hasRenderedChildrenOnce,\n isAnimatingText,\n pseudoTextHTML,\n shouldHideCursor,\n shouldPreventBlinkingCursor,\n shouldRemainSingleLine,\n shownText,\n sortedChildren,\n textStyle,\n ],\n );\n};\n\nTypewriter.displayName = 'Typewriter';\n\nexport default Typewriter;\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ColorSchemeProvider } from '@chayns-components/core';
|
|
1
|
+
import { ColorSchemeProvider, useColorScheme } from '@chayns-components/core';
|
|
2
2
|
import { ChaynsProvider, useFunctions, useValues } from 'chayns-api';
|
|
3
3
|
import React, { useCallback, useEffect, useLayoutEffect, useMemo, useRef, useState } from 'react';
|
|
4
4
|
import { createPortal } from 'react-dom';
|
|
@@ -44,6 +44,7 @@ const Typewriter = ({
|
|
|
44
44
|
const [autoSteps, setAutoSteps] = useState(animationSteps);
|
|
45
45
|
const functions = useFunctions();
|
|
46
46
|
const values = useValues();
|
|
47
|
+
const colorScheme = useColorScheme();
|
|
47
48
|
useIsomorphicLayoutEffect(() => {
|
|
48
49
|
if (children) {
|
|
49
50
|
setHasRenderedChildrenOnce(false);
|
|
@@ -71,6 +72,8 @@ const Typewriter = ({
|
|
|
71
72
|
functions: functions,
|
|
72
73
|
isModule: true
|
|
73
74
|
}, /*#__PURE__*/React.createElement(ColorSchemeProvider, {
|
|
75
|
+
color: colorScheme?.designSettings?.color,
|
|
76
|
+
colorMode: colorScheme?.designSettings?.colorMode,
|
|
74
77
|
style: {
|
|
75
78
|
display: 'inline'
|
|
76
79
|
}
|
|
@@ -85,13 +88,15 @@ const Typewriter = ({
|
|
|
85
88
|
functions: functions,
|
|
86
89
|
isModule: true
|
|
87
90
|
}, /*#__PURE__*/React.createElement(ColorSchemeProvider, {
|
|
91
|
+
color: colorScheme?.designSettings?.color,
|
|
92
|
+
colorMode: colorScheme?.designSettings?.colorMode,
|
|
88
93
|
style: {
|
|
89
94
|
display: 'inline'
|
|
90
95
|
}
|
|
91
96
|
}, /*#__PURE__*/React.createElement("span", {
|
|
92
97
|
className: "notranslate"
|
|
93
98
|
}, sortedChildren)))) : sortedChildren;
|
|
94
|
-
}, [areMultipleChildrenGiven, currentChildrenIndex, functions, sortedChildren, values]);
|
|
99
|
+
}, [areMultipleChildrenGiven, colorScheme?.designSettings?.color, colorScheme?.designSettings?.colorMode, currentChildrenIndex, functions, sortedChildren, values]);
|
|
95
100
|
const charactersCount = useMemo(() => getCharactersCount(textContent), [textContent]);
|
|
96
101
|
const [shownCharCount, setShownCharCount] = useState(charactersCount > 0 ? 0 : textContent.length);
|
|
97
102
|
const currentPosition = useRef(0);
|
|
@@ -219,6 +224,8 @@ const Typewriter = ({
|
|
|
219
224
|
functions: functions,
|
|
220
225
|
isModule: true
|
|
221
226
|
}, /*#__PURE__*/React.createElement(ColorSchemeProvider, {
|
|
227
|
+
color: colorScheme?.designSettings?.color,
|
|
228
|
+
colorMode: colorScheme?.designSettings?.colorMode,
|
|
222
229
|
style: {
|
|
223
230
|
display: 'inline'
|
|
224
231
|
}
|
|
@@ -232,7 +239,7 @@ const Typewriter = ({
|
|
|
232
239
|
return getSubTextFromHTML(textContent, shownCharCount);
|
|
233
240
|
}
|
|
234
241
|
return textContent || '​';
|
|
235
|
-
}, [functions, pseudoChildren, shouldUseAnimationHeight, shownCharCount, textContent, values]);
|
|
242
|
+
}, [colorScheme?.designSettings?.color, colorScheme?.designSettings?.colorMode, functions, pseudoChildren, shouldUseAnimationHeight, shownCharCount, textContent, values]);
|
|
236
243
|
return useMemo(() => /*#__PURE__*/React.createElement(StyledTypewriter, {
|
|
237
244
|
$cursorType: cursorType,
|
|
238
245
|
onClick: isAnimatingText ? handleClick : undefined,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Typewriter.js","names":["ColorSchemeProvider","ChaynsProvider","useFunctions","useValues","React","useCallback","useEffect","useLayoutEffect","useMemo","useRef","useState","createPortal","renderToString","CursorType","TypewriterDelay","TypewriterSpeed","AnimatedTypewriterText","StyledTypewriter","StyledTypewriterPseudoText","StyledTypewriterText","calculateAutoSpeed","getCharactersCount","getSubTextFromHTML","shuffleArray","useIsomorphicLayoutEffect","window","Typewriter","children","cursorType","Default","nextTextDelay","Medium","onFinish","onResetAnimationEnd","animationSteps","onResetAnimationStart","onTypingAnimationEnd","onTypingAnimationStart","pseudoChildren","resetDelay","shouldForceCursorAnimation","shouldHideCursor","shouldRemainSingleLine","shouldSortChildrenRandomly","shouldUseAnimationHeight","shouldUseResetAnimation","shouldWaitForContent","speed","resetSpeed","startDelay","None","textStyle","shouldCalcAutoSpeed","autoSpeedBaseFactor","currentChildrenIndex","setCurrentChildrenIndex","hasRenderedChildrenOnce","setHasRenderedChildrenOnce","shouldPreventBlinkingCursor","setShouldPreventBlinkingCursor","isResetAnimationActive","setIsResetAnimationActive","shouldStopAnimation","setShouldStopAnimation","autoSpeed","setAutoSpeed","autoSteps","setAutoSteps","functions","values","sortedChildren","Array","isArray","areMultipleChildrenGiven","childrenCount","length","textContent","currentChildren","isValidElement","createElement","data","isModule","style","display","className","charactersCount","shownCharCount","setShownCharCount","currentPosition","undefined","calculatedAutoSpeed","steps","fullTextLength","current","baseSpeedFactor","isAnimatingText","handleClick","event","stopPropagation","preventDefault","handleSetNextChildrenIndex","newIndex","interval","setInterval","prevState","nextState","clearInterval","setTimeout","startTypingAnimation","Thin","runTypingInterval","Math","min","shownText","pseudoTextHTML","pseudoText","$cursorType","onClick","$isAnimatingText","$shouldHideCursor","$shouldPreventBlinkAnimation","$shouldRemainSingleLine","dangerouslySetInnerHTML","__html","position","visibility","document","body","displayName"],"sources":["../../../../src/components/typewriter/Typewriter.tsx"],"sourcesContent":["import { ColorSchemeProvider } from '@chayns-components/core';\nimport { ChaynsProvider, useFunctions, useValues } from 'chayns-api';\nimport React, {\n FC,\n ReactElement,\n useCallback,\n useEffect,\n useLayoutEffect,\n useMemo,\n useRef,\n useState,\n} from 'react';\nimport { createPortal } from 'react-dom';\nimport { renderToString } from 'react-dom/server';\nimport { CursorType } from '../../types/cursor';\nimport { TypewriterDelay, TypewriterSpeed } from '../../types/speed';\nimport AnimatedTypewriterText from './AnimatedTypewriterText';\nimport {\n StyledTypewriter,\n StyledTypewriterPseudoText,\n StyledTypewriterText,\n} from './Typewriter.styles';\nimport { calculateAutoSpeed, getCharactersCount, getSubTextFromHTML, shuffleArray } from './utils';\n\nconst useIsomorphicLayoutEffect = typeof window !== 'undefined' ? useLayoutEffect : useEffect;\n\nexport type TypewriterProps = {\n /**\n * The number of characters that will be animated per animation cycle.\n */\n animationSteps?: number;\n /**\n * The base speed factor to calculate the animation speed.\n */\n autoSpeedBaseFactor?: number;\n /**\n * The text to type\n */\n children: ReactElement | ReactElement[] | string | string[];\n /**\n * The type of the cursor. Use the CursorType enum for this prop.\n */\n cursorType?: CursorType;\n /**\n * The delay in milliseconds before the next text is shown.\n * This prop is only used if multiple texts are given.\n */\n nextTextDelay?: TypewriterDelay;\n /**\n * Function that is executed when the typewriter animation has finished. This function will not\n * be executed if multiple texts are used.\n */\n onFinish?: VoidFunction;\n /**\n * Function that is executed when the reset animation has finished. This function will not be\n * executed if `shouldUseResetAnimation` is not set to `true`.\n */\n onResetAnimationEnd?: VoidFunction;\n /**\n * Function that is executed when the reset animation has started. This function will not be\n * executed if `shouldUseResetAnimation` is not set to `true`.\n */\n onResetAnimationStart?: VoidFunction;\n /**\n * Function that is executed when the typing animation has finished. If multiple texts are given,\n * this function will be executed for each text.\n */\n onTypingAnimationEnd?: VoidFunction;\n /**\n * Function that is executed when the typing animation has started. If multiple texts are given,\n * this function will be executed for each text.\n */\n onTypingAnimationStart?: VoidFunction;\n /**\n * Pseudo-element to be rendered invisible during animation to define the size of the element\n * for the typewriter effect. By default, the \"children\" is used for this purpose.\n */\n pseudoChildren?: ReactElement | string;\n /**\n * Waiting time in milliseconds before the typewriter resets the text.\n * This prop is only used if multiple texts are given.\n */\n resetDelay?: TypewriterDelay;\n /**\n * The reset speed of the animation. Use the TypewriterSpeed enum for this prop.\n */\n resetSpeed?: TypewriterSpeed | number;\n /**\n * Specifies whether the cursor should be forced to animate even if no text is currently animated.\n */\n shouldForceCursorAnimation?: boolean;\n /**\n * Specifies whether the cursor should be hidden\n */\n shouldHideCursor?: boolean;\n /**\n * Whether the content should remain a single line.\n */\n shouldRemainSingleLine?: boolean;\n /**\n * Specifies whether the children should be sorted randomly if there are multiple texts.\n * This makes the typewriter start with a different text each time and also changes them\n * in a random order.\n */\n shouldSortChildrenRandomly?: boolean;\n /**\n * Specifies whether the animation should use its full height or the height of the current\n * chunk.\n */\n shouldUseAnimationHeight?: boolean;\n /**\n * Whether the animation speed should be calculated with the chunk interval.\n */\n shouldCalcAutoSpeed?: boolean;\n /**\n * Specifies whether the reset of the text should be animated with a backspace animation for\n * multiple texts.\n */\n shouldUseResetAnimation?: boolean;\n /**\n * Whether the typewriter should wait for new content\n */\n shouldWaitForContent?: boolean;\n /**\n * The speed of the animation. Use the TypewriterSpeed enum for this prop.\n */\n speed?: TypewriterSpeed | number;\n /**\n * The delay in milliseconds before the typewriter starts typing.\n */\n startDelay?: TypewriterDelay;\n /**\n * The style of the typewriter text element\n */\n textStyle?: React.CSSProperties;\n};\n\nconst Typewriter: FC<TypewriterProps> = ({\n children,\n cursorType = CursorType.Default,\n nextTextDelay = TypewriterDelay.Medium,\n onFinish,\n onResetAnimationEnd,\n animationSteps = 1,\n onResetAnimationStart,\n onTypingAnimationEnd,\n onTypingAnimationStart,\n pseudoChildren,\n resetDelay = TypewriterDelay.Medium,\n shouldForceCursorAnimation = false,\n shouldHideCursor = false,\n shouldRemainSingleLine = false,\n shouldSortChildrenRandomly = false,\n shouldUseAnimationHeight = false,\n shouldUseResetAnimation = false,\n shouldWaitForContent,\n speed = TypewriterSpeed.Medium,\n resetSpeed = speed,\n startDelay = TypewriterDelay.None,\n textStyle,\n shouldCalcAutoSpeed = false,\n autoSpeedBaseFactor = 2000,\n}) => {\n const [currentChildrenIndex, setCurrentChildrenIndex] = useState(0);\n const [hasRenderedChildrenOnce, setHasRenderedChildrenOnce] = useState(false);\n const [shouldPreventBlinkingCursor, setShouldPreventBlinkingCursor] = useState(false);\n const [isResetAnimationActive, setIsResetAnimationActive] = useState(false);\n const [shouldStopAnimation, setShouldStopAnimation] = useState(false);\n const [autoSpeed, setAutoSpeed] = useState<number>();\n const [autoSteps, setAutoSteps] = useState(animationSteps);\n\n const functions = useFunctions();\n const values = useValues();\n\n useIsomorphicLayoutEffect(() => {\n if (children) {\n setHasRenderedChildrenOnce(false);\n }\n }, [children]);\n\n useEffect(() => {\n if (!hasRenderedChildrenOnce) {\n setHasRenderedChildrenOnce(true);\n }\n }, [hasRenderedChildrenOnce]);\n\n useEffect(() => {\n if (animationSteps > 0 && !shouldCalcAutoSpeed) {\n setAutoSteps(animationSteps);\n }\n }, [animationSteps, shouldCalcAutoSpeed]);\n\n const sortedChildren = useMemo(\n () =>\n Array.isArray(children) && shouldSortChildrenRandomly\n ? shuffleArray<ReactElement | string>(children)\n : children,\n [children, shouldSortChildrenRandomly],\n );\n\n const areMultipleChildrenGiven = Array.isArray(sortedChildren);\n const childrenCount = areMultipleChildrenGiven ? sortedChildren.length : 1;\n\n const textContent = useMemo(() => {\n if (areMultipleChildrenGiven) {\n const currentChildren = sortedChildren[currentChildrenIndex];\n\n if (currentChildren) {\n return React.isValidElement(currentChildren)\n ? renderToString(\n <ChaynsProvider data={values} functions={functions} isModule>\n <ColorSchemeProvider style={{ display: 'inline' }}>\n <span className=\"notranslate\">{currentChildren}</span>\n </ColorSchemeProvider>\n </ChaynsProvider>,\n )\n : (currentChildren as string);\n }\n\n return '';\n }\n\n return React.isValidElement(sortedChildren)\n ? renderToString(\n <ChaynsProvider data={values} functions={functions} isModule>\n <ColorSchemeProvider style={{ display: 'inline' }}>\n <span className=\"notranslate\">{sortedChildren}</span>\n </ColorSchemeProvider>\n </ChaynsProvider>,\n )\n : (sortedChildren as string);\n }, [areMultipleChildrenGiven, currentChildrenIndex, functions, sortedChildren, values]);\n\n const charactersCount = useMemo(() => getCharactersCount(textContent), [textContent]);\n\n const [shownCharCount, setShownCharCount] = useState(\n charactersCount > 0 ? 0 : textContent.length,\n );\n\n const currentPosition = useRef(0);\n\n useEffect(() => {\n if (!shouldCalcAutoSpeed) {\n setAutoSpeed(undefined);\n setAutoSteps(animationSteps);\n\n return;\n }\n\n const { speed: calculatedAutoSpeed, steps } = calculateAutoSpeed({\n fullTextLength: charactersCount,\n currentPosition: currentPosition.current,\n baseSpeedFactor: autoSpeedBaseFactor,\n });\n\n setAutoSpeed(calculatedAutoSpeed);\n setAutoSteps(steps);\n }, [animationSteps, autoSpeedBaseFactor, charactersCount, shouldCalcAutoSpeed]);\n\n const isAnimatingText =\n shownCharCount < textContent.length ||\n shouldForceCursorAnimation ||\n areMultipleChildrenGiven ||\n textContent.length === 0;\n\n const handleClick = useCallback((event: React.MouseEvent) => {\n event.stopPropagation();\n event.preventDefault();\n\n setShouldStopAnimation(true);\n }, []);\n\n const handleSetNextChildrenIndex = useCallback(\n () =>\n setCurrentChildrenIndex(() => {\n let newIndex = currentChildrenIndex + 1;\n\n if (newIndex > childrenCount - 1) {\n newIndex = 0;\n }\n\n return newIndex;\n }),\n [childrenCount, currentChildrenIndex],\n );\n\n useEffect(() => {\n let interval: number | undefined;\n\n if (shouldStopAnimation || charactersCount === 0) {\n setShownCharCount(textContent.length);\n currentPosition.current = textContent.length;\n } else if (isResetAnimationActive) {\n if (typeof onResetAnimationStart === 'function') {\n onResetAnimationStart();\n }\n\n interval = window.setInterval(() => {\n setShownCharCount((prevState) => {\n const nextState = prevState - autoSteps;\n currentPosition.current = nextState;\n\n if (nextState === 0) {\n window.clearInterval(interval);\n\n if (typeof onResetAnimationEnd === 'function') {\n onResetAnimationEnd();\n }\n\n if (areMultipleChildrenGiven) {\n setTimeout(() => {\n setIsResetAnimationActive(false);\n handleSetNextChildrenIndex();\n }, nextTextDelay);\n }\n }\n\n return nextState;\n });\n }, resetSpeed);\n } else {\n const startTypingAnimation = () => {\n if (cursorType === CursorType.Thin) {\n setShouldPreventBlinkingCursor(true);\n }\n\n if (typeof onTypingAnimationStart === 'function') {\n onTypingAnimationStart();\n }\n\n const runTypingInterval = () => {\n setShownCharCount((prevState) => {\n let nextState = Math.min(prevState + autoSteps, charactersCount);\n\n if (nextState >= charactersCount && !shouldWaitForContent) {\n window.clearInterval(interval);\n\n if (cursorType === CursorType.Thin) {\n setShouldPreventBlinkingCursor(false);\n }\n\n if (typeof onTypingAnimationEnd === 'function') {\n onTypingAnimationEnd();\n }\n\n /**\n * At this point, the next value for \"shownCharCount\" is deliberately set to\n * the length of the textContent to correctly display HTML elements\n * after the last letter.\n */\n nextState = textContent.length;\n\n if (areMultipleChildrenGiven) {\n setTimeout(() => {\n if (shouldUseResetAnimation) {\n setIsResetAnimationActive(true);\n } else {\n setShownCharCount(0);\n setTimeout(handleSetNextChildrenIndex, nextTextDelay);\n }\n }, resetDelay);\n }\n }\n\n currentPosition.current = nextState;\n\n return nextState;\n });\n };\n\n interval = window.setInterval(runTypingInterval, autoSpeed ?? speed);\n };\n\n if (startDelay) {\n setTimeout(startTypingAnimation, startDelay);\n } else {\n startTypingAnimation();\n }\n }\n\n return () => {\n window.clearInterval(interval);\n };\n }, [\n resetSpeed,\n speed,\n resetDelay,\n childrenCount,\n charactersCount,\n textContent.length,\n shouldStopAnimation,\n shouldWaitForContent,\n isResetAnimationActive,\n shouldUseResetAnimation,\n areMultipleChildrenGiven,\n handleSetNextChildrenIndex,\n nextTextDelay,\n startDelay,\n onResetAnimationStart,\n onResetAnimationEnd,\n onTypingAnimationStart,\n onTypingAnimationEnd,\n cursorType,\n autoSpeed,\n autoSteps,\n ]);\n\n useEffect(() => {\n if (!isAnimatingText && typeof onFinish === 'function') {\n onFinish();\n }\n }, [isAnimatingText, onFinish]);\n\n const shownText = useMemo(\n () => getSubTextFromHTML(textContent, shownCharCount),\n [shownCharCount, textContent],\n );\n\n const pseudoTextHTML = useMemo(() => {\n if (pseudoChildren) {\n const pseudoText = React.isValidElement(pseudoChildren)\n ? renderToString(\n <ChaynsProvider data={values} functions={functions} isModule>\n <ColorSchemeProvider style={{ display: 'inline' }}>\n {pseudoChildren}\n </ColorSchemeProvider>\n </ChaynsProvider>,\n )\n : (pseudoChildren as string);\n\n if (shouldUseAnimationHeight) {\n return getSubTextFromHTML(pseudoText, shownCharCount);\n }\n\n return pseudoText;\n }\n\n if (shouldUseAnimationHeight && textContent) {\n return getSubTextFromHTML(textContent, shownCharCount);\n }\n\n return textContent || '​';\n }, [functions, pseudoChildren, shouldUseAnimationHeight, shownCharCount, textContent, values]);\n\n return useMemo(\n () => (\n <StyledTypewriter\n $cursorType={cursorType}\n onClick={isAnimatingText ? handleClick : undefined}\n $isAnimatingText={isAnimatingText}\n $shouldHideCursor={shouldHideCursor}\n $shouldPreventBlinkAnimation={shouldPreventBlinkingCursor}\n >\n {isAnimatingText ? (\n <AnimatedTypewriterText\n shouldHideCursor={shouldHideCursor}\n shouldRemainSingleLine={shouldRemainSingleLine}\n shownText={shownText}\n textStyle={textStyle}\n />\n ) : (\n <StyledTypewriterText\n className=\"notranslate\"\n $shouldRemainSingleLine={shouldRemainSingleLine}\n dangerouslySetInnerHTML={\n typeof sortedChildren === 'string' ? { __html: shownText } : undefined\n }\n style={textStyle}\n >\n {typeof sortedChildren !== 'string' ? sortedChildren : undefined}\n </StyledTypewriterText>\n )}\n {isAnimatingText && (\n <StyledTypewriterPseudoText\n $isAnimatingText={isAnimatingText}\n $shouldHideCursor={shouldHideCursor}\n dangerouslySetInnerHTML={{ __html: pseudoTextHTML }}\n />\n )}\n {/*\n The following is needed because some components like the CodeHighlighter will not render correct\n if the element is not rendered on a client before...\n */}\n {!hasRenderedChildrenOnce &&\n createPortal(\n <div style={{ position: 'absolute', visibility: 'hidden' }}>\n {children}\n </div>,\n document.body,\n )}\n </StyledTypewriter>\n ),\n [\n children,\n cursorType,\n handleClick,\n hasRenderedChildrenOnce,\n isAnimatingText,\n pseudoTextHTML,\n shouldHideCursor,\n shouldPreventBlinkingCursor,\n shouldRemainSingleLine,\n shownText,\n sortedChildren,\n textStyle,\n ],\n );\n};\n\nTypewriter.displayName = 'Typewriter';\n\nexport default Typewriter;\n"],"mappings":"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","ignoreList":[]}
|
|
1
|
+
{"version":3,"file":"Typewriter.js","names":["ColorSchemeProvider","useColorScheme","ChaynsProvider","useFunctions","useValues","React","useCallback","useEffect","useLayoutEffect","useMemo","useRef","useState","createPortal","renderToString","CursorType","TypewriterDelay","TypewriterSpeed","AnimatedTypewriterText","StyledTypewriter","StyledTypewriterPseudoText","StyledTypewriterText","calculateAutoSpeed","getCharactersCount","getSubTextFromHTML","shuffleArray","useIsomorphicLayoutEffect","window","Typewriter","children","cursorType","Default","nextTextDelay","Medium","onFinish","onResetAnimationEnd","animationSteps","onResetAnimationStart","onTypingAnimationEnd","onTypingAnimationStart","pseudoChildren","resetDelay","shouldForceCursorAnimation","shouldHideCursor","shouldRemainSingleLine","shouldSortChildrenRandomly","shouldUseAnimationHeight","shouldUseResetAnimation","shouldWaitForContent","speed","resetSpeed","startDelay","None","textStyle","shouldCalcAutoSpeed","autoSpeedBaseFactor","currentChildrenIndex","setCurrentChildrenIndex","hasRenderedChildrenOnce","setHasRenderedChildrenOnce","shouldPreventBlinkingCursor","setShouldPreventBlinkingCursor","isResetAnimationActive","setIsResetAnimationActive","shouldStopAnimation","setShouldStopAnimation","autoSpeed","setAutoSpeed","autoSteps","setAutoSteps","functions","values","colorScheme","sortedChildren","Array","isArray","areMultipleChildrenGiven","childrenCount","length","textContent","currentChildren","isValidElement","createElement","data","isModule","color","designSettings","colorMode","style","display","className","charactersCount","shownCharCount","setShownCharCount","currentPosition","undefined","calculatedAutoSpeed","steps","fullTextLength","current","baseSpeedFactor","isAnimatingText","handleClick","event","stopPropagation","preventDefault","handleSetNextChildrenIndex","newIndex","interval","setInterval","prevState","nextState","clearInterval","setTimeout","startTypingAnimation","Thin","runTypingInterval","Math","min","shownText","pseudoTextHTML","pseudoText","$cursorType","onClick","$isAnimatingText","$shouldHideCursor","$shouldPreventBlinkAnimation","$shouldRemainSingleLine","dangerouslySetInnerHTML","__html","position","visibility","document","body","displayName"],"sources":["../../../../src/components/typewriter/Typewriter.tsx"],"sourcesContent":["import { ColorSchemeProvider, useColorScheme } from '@chayns-components/core';\nimport { ChaynsProvider, useFunctions, useValues } from 'chayns-api';\nimport React, {\n FC,\n ReactElement,\n useCallback,\n useEffect,\n useLayoutEffect,\n useMemo,\n useRef,\n useState,\n} from 'react';\nimport { createPortal } from 'react-dom';\nimport { renderToString } from 'react-dom/server';\nimport { CursorType } from '../../types/cursor';\nimport { TypewriterDelay, TypewriterSpeed } from '../../types/speed';\nimport AnimatedTypewriterText from './AnimatedTypewriterText';\nimport {\n StyledTypewriter,\n StyledTypewriterPseudoText,\n StyledTypewriterText,\n} from './Typewriter.styles';\nimport { calculateAutoSpeed, getCharactersCount, getSubTextFromHTML, shuffleArray } from './utils';\n\nconst useIsomorphicLayoutEffect = typeof window !== 'undefined' ? useLayoutEffect : useEffect;\n\nexport type TypewriterProps = {\n /**\n * The number of characters that will be animated per animation cycle.\n */\n animationSteps?: number;\n /**\n * The base speed factor to calculate the animation speed.\n */\n autoSpeedBaseFactor?: number;\n /**\n * The text to type\n */\n children: ReactElement | ReactElement[] | string | string[];\n /**\n * The type of the cursor. Use the CursorType enum for this prop.\n */\n cursorType?: CursorType;\n /**\n * The delay in milliseconds before the next text is shown.\n * This prop is only used if multiple texts are given.\n */\n nextTextDelay?: TypewriterDelay;\n /**\n * Function that is executed when the typewriter animation has finished. This function will not\n * be executed if multiple texts are used.\n */\n onFinish?: VoidFunction;\n /**\n * Function that is executed when the reset animation has finished. This function will not be\n * executed if `shouldUseResetAnimation` is not set to `true`.\n */\n onResetAnimationEnd?: VoidFunction;\n /**\n * Function that is executed when the reset animation has started. This function will not be\n * executed if `shouldUseResetAnimation` is not set to `true`.\n */\n onResetAnimationStart?: VoidFunction;\n /**\n * Function that is executed when the typing animation has finished. If multiple texts are given,\n * this function will be executed for each text.\n */\n onTypingAnimationEnd?: VoidFunction;\n /**\n * Function that is executed when the typing animation has started. If multiple texts are given,\n * this function will be executed for each text.\n */\n onTypingAnimationStart?: VoidFunction;\n /**\n * Pseudo-element to be rendered invisible during animation to define the size of the element\n * for the typewriter effect. By default, the \"children\" is used for this purpose.\n */\n pseudoChildren?: ReactElement | string;\n /**\n * Waiting time in milliseconds before the typewriter resets the text.\n * This prop is only used if multiple texts are given.\n */\n resetDelay?: TypewriterDelay;\n /**\n * The reset speed of the animation. Use the TypewriterSpeed enum for this prop.\n */\n resetSpeed?: TypewriterSpeed | number;\n /**\n * Specifies whether the cursor should be forced to animate even if no text is currently animated.\n */\n shouldForceCursorAnimation?: boolean;\n /**\n * Specifies whether the cursor should be hidden\n */\n shouldHideCursor?: boolean;\n /**\n * Whether the content should remain a single line.\n */\n shouldRemainSingleLine?: boolean;\n /**\n * Specifies whether the children should be sorted randomly if there are multiple texts.\n * This makes the typewriter start with a different text each time and also changes them\n * in a random order.\n */\n shouldSortChildrenRandomly?: boolean;\n /**\n * Specifies whether the animation should use its full height or the height of the current\n * chunk.\n */\n shouldUseAnimationHeight?: boolean;\n /**\n * Whether the animation speed should be calculated with the chunk interval.\n */\n shouldCalcAutoSpeed?: boolean;\n /**\n * Specifies whether the reset of the text should be animated with a backspace animation for\n * multiple texts.\n */\n shouldUseResetAnimation?: boolean;\n /**\n * Whether the typewriter should wait for new content\n */\n shouldWaitForContent?: boolean;\n /**\n * The speed of the animation. Use the TypewriterSpeed enum for this prop.\n */\n speed?: TypewriterSpeed | number;\n /**\n * The delay in milliseconds before the typewriter starts typing.\n */\n startDelay?: TypewriterDelay;\n /**\n * The style of the typewriter text element\n */\n textStyle?: React.CSSProperties;\n};\n\nconst Typewriter: FC<TypewriterProps> = ({\n children,\n cursorType = CursorType.Default,\n nextTextDelay = TypewriterDelay.Medium,\n onFinish,\n onResetAnimationEnd,\n animationSteps = 1,\n onResetAnimationStart,\n onTypingAnimationEnd,\n onTypingAnimationStart,\n pseudoChildren,\n resetDelay = TypewriterDelay.Medium,\n shouldForceCursorAnimation = false,\n shouldHideCursor = false,\n shouldRemainSingleLine = false,\n shouldSortChildrenRandomly = false,\n shouldUseAnimationHeight = false,\n shouldUseResetAnimation = false,\n shouldWaitForContent,\n speed = TypewriterSpeed.Medium,\n resetSpeed = speed,\n startDelay = TypewriterDelay.None,\n textStyle,\n shouldCalcAutoSpeed = false,\n autoSpeedBaseFactor = 2000,\n}) => {\n const [currentChildrenIndex, setCurrentChildrenIndex] = useState(0);\n const [hasRenderedChildrenOnce, setHasRenderedChildrenOnce] = useState(false);\n const [shouldPreventBlinkingCursor, setShouldPreventBlinkingCursor] = useState(false);\n const [isResetAnimationActive, setIsResetAnimationActive] = useState(false);\n const [shouldStopAnimation, setShouldStopAnimation] = useState(false);\n const [autoSpeed, setAutoSpeed] = useState<number>();\n const [autoSteps, setAutoSteps] = useState(animationSteps);\n\n const functions = useFunctions();\n const values = useValues();\n\n const colorScheme = useColorScheme();\n\n useIsomorphicLayoutEffect(() => {\n if (children) {\n setHasRenderedChildrenOnce(false);\n }\n }, [children]);\n\n useEffect(() => {\n if (!hasRenderedChildrenOnce) {\n setHasRenderedChildrenOnce(true);\n }\n }, [hasRenderedChildrenOnce]);\n\n useEffect(() => {\n if (animationSteps > 0 && !shouldCalcAutoSpeed) {\n setAutoSteps(animationSteps);\n }\n }, [animationSteps, shouldCalcAutoSpeed]);\n\n const sortedChildren = useMemo(\n () =>\n Array.isArray(children) && shouldSortChildrenRandomly\n ? shuffleArray<ReactElement | string>(children)\n : children,\n [children, shouldSortChildrenRandomly],\n );\n\n const areMultipleChildrenGiven = Array.isArray(sortedChildren);\n const childrenCount = areMultipleChildrenGiven ? sortedChildren.length : 1;\n\n const textContent = useMemo(() => {\n if (areMultipleChildrenGiven) {\n const currentChildren = sortedChildren[currentChildrenIndex];\n\n if (currentChildren) {\n return React.isValidElement(currentChildren)\n ? renderToString(\n <ChaynsProvider data={values} functions={functions} isModule>\n <ColorSchemeProvider\n color={colorScheme?.designSettings?.color}\n colorMode={colorScheme?.designSettings?.colorMode}\n style={{ display: 'inline' }}\n >\n <span className=\"notranslate\">{currentChildren}</span>\n </ColorSchemeProvider>\n </ChaynsProvider>,\n )\n : (currentChildren as string);\n }\n\n return '';\n }\n\n return React.isValidElement(sortedChildren)\n ? renderToString(\n <ChaynsProvider data={values} functions={functions} isModule>\n <ColorSchemeProvider\n color={colorScheme?.designSettings?.color}\n colorMode={colorScheme?.designSettings?.colorMode}\n style={{ display: 'inline' }}\n >\n <span className=\"notranslate\">{sortedChildren}</span>\n </ColorSchemeProvider>\n </ChaynsProvider>,\n )\n : (sortedChildren as string);\n }, [\n areMultipleChildrenGiven,\n colorScheme?.designSettings?.color,\n colorScheme?.designSettings?.colorMode,\n currentChildrenIndex,\n functions,\n sortedChildren,\n values,\n ]);\n\n const charactersCount = useMemo(() => getCharactersCount(textContent), [textContent]);\n\n const [shownCharCount, setShownCharCount] = useState(\n charactersCount > 0 ? 0 : textContent.length,\n );\n\n const currentPosition = useRef(0);\n\n useEffect(() => {\n if (!shouldCalcAutoSpeed) {\n setAutoSpeed(undefined);\n setAutoSteps(animationSteps);\n\n return;\n }\n\n const { speed: calculatedAutoSpeed, steps } = calculateAutoSpeed({\n fullTextLength: charactersCount,\n currentPosition: currentPosition.current,\n baseSpeedFactor: autoSpeedBaseFactor,\n });\n\n setAutoSpeed(calculatedAutoSpeed);\n setAutoSteps(steps);\n }, [animationSteps, autoSpeedBaseFactor, charactersCount, shouldCalcAutoSpeed]);\n\n const isAnimatingText =\n shownCharCount < textContent.length ||\n shouldForceCursorAnimation ||\n areMultipleChildrenGiven ||\n textContent.length === 0;\n\n const handleClick = useCallback((event: React.MouseEvent) => {\n event.stopPropagation();\n event.preventDefault();\n\n setShouldStopAnimation(true);\n }, []);\n\n const handleSetNextChildrenIndex = useCallback(\n () =>\n setCurrentChildrenIndex(() => {\n let newIndex = currentChildrenIndex + 1;\n\n if (newIndex > childrenCount - 1) {\n newIndex = 0;\n }\n\n return newIndex;\n }),\n [childrenCount, currentChildrenIndex],\n );\n\n useEffect(() => {\n let interval: number | undefined;\n\n if (shouldStopAnimation || charactersCount === 0) {\n setShownCharCount(textContent.length);\n currentPosition.current = textContent.length;\n } else if (isResetAnimationActive) {\n if (typeof onResetAnimationStart === 'function') {\n onResetAnimationStart();\n }\n\n interval = window.setInterval(() => {\n setShownCharCount((prevState) => {\n const nextState = prevState - autoSteps;\n currentPosition.current = nextState;\n\n if (nextState === 0) {\n window.clearInterval(interval);\n\n if (typeof onResetAnimationEnd === 'function') {\n onResetAnimationEnd();\n }\n\n if (areMultipleChildrenGiven) {\n setTimeout(() => {\n setIsResetAnimationActive(false);\n handleSetNextChildrenIndex();\n }, nextTextDelay);\n }\n }\n\n return nextState;\n });\n }, resetSpeed);\n } else {\n const startTypingAnimation = () => {\n if (cursorType === CursorType.Thin) {\n setShouldPreventBlinkingCursor(true);\n }\n\n if (typeof onTypingAnimationStart === 'function') {\n onTypingAnimationStart();\n }\n\n const runTypingInterval = () => {\n setShownCharCount((prevState) => {\n let nextState = Math.min(prevState + autoSteps, charactersCount);\n\n if (nextState >= charactersCount && !shouldWaitForContent) {\n window.clearInterval(interval);\n\n if (cursorType === CursorType.Thin) {\n setShouldPreventBlinkingCursor(false);\n }\n\n if (typeof onTypingAnimationEnd === 'function') {\n onTypingAnimationEnd();\n }\n\n /**\n * At this point, the next value for \"shownCharCount\" is deliberately set to\n * the length of the textContent to correctly display HTML elements\n * after the last letter.\n */\n nextState = textContent.length;\n\n if (areMultipleChildrenGiven) {\n setTimeout(() => {\n if (shouldUseResetAnimation) {\n setIsResetAnimationActive(true);\n } else {\n setShownCharCount(0);\n setTimeout(handleSetNextChildrenIndex, nextTextDelay);\n }\n }, resetDelay);\n }\n }\n\n currentPosition.current = nextState;\n\n return nextState;\n });\n };\n\n interval = window.setInterval(runTypingInterval, autoSpeed ?? speed);\n };\n\n if (startDelay) {\n setTimeout(startTypingAnimation, startDelay);\n } else {\n startTypingAnimation();\n }\n }\n\n return () => {\n window.clearInterval(interval);\n };\n }, [\n resetSpeed,\n speed,\n resetDelay,\n childrenCount,\n charactersCount,\n textContent.length,\n shouldStopAnimation,\n shouldWaitForContent,\n isResetAnimationActive,\n shouldUseResetAnimation,\n areMultipleChildrenGiven,\n handleSetNextChildrenIndex,\n nextTextDelay,\n startDelay,\n onResetAnimationStart,\n onResetAnimationEnd,\n onTypingAnimationStart,\n onTypingAnimationEnd,\n cursorType,\n autoSpeed,\n autoSteps,\n ]);\n\n useEffect(() => {\n if (!isAnimatingText && typeof onFinish === 'function') {\n onFinish();\n }\n }, [isAnimatingText, onFinish]);\n\n const shownText = useMemo(\n () => getSubTextFromHTML(textContent, shownCharCount),\n [shownCharCount, textContent],\n );\n\n const pseudoTextHTML = useMemo(() => {\n if (pseudoChildren) {\n const pseudoText = React.isValidElement(pseudoChildren)\n ? renderToString(\n <ChaynsProvider data={values} functions={functions} isModule>\n <ColorSchemeProvider\n color={colorScheme?.designSettings?.color}\n colorMode={colorScheme?.designSettings?.colorMode}\n style={{ display: 'inline' }}\n >\n {pseudoChildren}\n </ColorSchemeProvider>\n </ChaynsProvider>,\n )\n : (pseudoChildren as string);\n\n if (shouldUseAnimationHeight) {\n return getSubTextFromHTML(pseudoText, shownCharCount);\n }\n\n return pseudoText;\n }\n\n if (shouldUseAnimationHeight && textContent) {\n return getSubTextFromHTML(textContent, shownCharCount);\n }\n\n return textContent || '​';\n }, [\n colorScheme?.designSettings?.color,\n colorScheme?.designSettings?.colorMode,\n functions,\n pseudoChildren,\n shouldUseAnimationHeight,\n shownCharCount,\n textContent,\n values,\n ]);\n\n return useMemo(\n () => (\n <StyledTypewriter\n $cursorType={cursorType}\n onClick={isAnimatingText ? handleClick : undefined}\n $isAnimatingText={isAnimatingText}\n $shouldHideCursor={shouldHideCursor}\n $shouldPreventBlinkAnimation={shouldPreventBlinkingCursor}\n >\n {isAnimatingText ? (\n <AnimatedTypewriterText\n shouldHideCursor={shouldHideCursor}\n shouldRemainSingleLine={shouldRemainSingleLine}\n shownText={shownText}\n textStyle={textStyle}\n />\n ) : (\n <StyledTypewriterText\n className=\"notranslate\"\n $shouldRemainSingleLine={shouldRemainSingleLine}\n dangerouslySetInnerHTML={\n typeof sortedChildren === 'string' ? { __html: shownText } : undefined\n }\n style={textStyle}\n >\n {typeof sortedChildren !== 'string' ? sortedChildren : undefined}\n </StyledTypewriterText>\n )}\n {isAnimatingText && (\n <StyledTypewriterPseudoText\n $isAnimatingText={isAnimatingText}\n $shouldHideCursor={shouldHideCursor}\n dangerouslySetInnerHTML={{ __html: pseudoTextHTML }}\n />\n )}\n {/*\n The following is needed because some components like the CodeHighlighter will not render correct\n if the element is not rendered on a client before...\n */}\n {!hasRenderedChildrenOnce &&\n createPortal(\n <div style={{ position: 'absolute', visibility: 'hidden' }}>\n {children}\n </div>,\n document.body,\n )}\n </StyledTypewriter>\n ),\n [\n children,\n cursorType,\n handleClick,\n hasRenderedChildrenOnce,\n isAnimatingText,\n pseudoTextHTML,\n shouldHideCursor,\n shouldPreventBlinkingCursor,\n shouldRemainSingleLine,\n shownText,\n sortedChildren,\n textStyle,\n ],\n );\n};\n\nTypewriter.displayName = 'Typewriter';\n\nexport default Typewriter;\n"],"mappings":"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","ignoreList":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chayns-components/typewriter",
|
|
3
|
-
"version": "5.0.0-beta.
|
|
3
|
+
"version": "5.0.0-beta.1323",
|
|
4
4
|
"description": "A set of beautiful React components for developing your own applications with chayns.",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"browserslist": [
|
|
@@ -57,9 +57,9 @@
|
|
|
57
57
|
"@babel/preset-env": "^7.28.5",
|
|
58
58
|
"@babel/preset-react": "^7.28.5",
|
|
59
59
|
"@babel/preset-typescript": "^7.28.5",
|
|
60
|
-
"@types/react": "^18.3.
|
|
60
|
+
"@types/react": "^18.3.27",
|
|
61
61
|
"@types/react-dom": "^18.3.7",
|
|
62
|
-
"@types/styled-components": "^5.1.
|
|
62
|
+
"@types/styled-components": "^5.1.36",
|
|
63
63
|
"@types/uuid": "^10.0.0",
|
|
64
64
|
"babel-loader": "^9.2.1",
|
|
65
65
|
"cross-env": "^7.0.3",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"typescript": "^5.9.3"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@chayns-components/core": "^5.0.0-beta.
|
|
73
|
+
"@chayns-components/core": "^5.0.0-beta.1322"
|
|
74
74
|
},
|
|
75
75
|
"peerDependencies": {
|
|
76
76
|
"chayns-api": ">=2.2.0",
|
|
@@ -82,5 +82,5 @@
|
|
|
82
82
|
"publishConfig": {
|
|
83
83
|
"access": "public"
|
|
84
84
|
},
|
|
85
|
-
"gitHead": "
|
|
85
|
+
"gitHead": "a914c47fbb66e1b23c21ea8c48d1e4a6339cc697"
|
|
86
86
|
}
|