@telus-uds/components-base 0.0.2-prerelease.7 → 0.0.2-prerelease.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.ultra.cache.json +1 -1
- package/CHANGELOG.md +27 -0
- package/__fixtures__/Accessible.js +33 -0
- package/__fixtures__/Accessible.native.js +32 -0
- package/__fixtures__/testTheme.js +429 -29
- package/__tests__/ActivityIndicator/ActivityIndicator.test.jsx +1 -1
- package/__tests__/Button/ButtonGroup.test.jsx +2 -2
- package/__tests__/Checkbox/CheckboxGroup.test.jsx +247 -0
- package/__tests__/Icon/Icon.test.jsx +3 -3
- package/__tests__/Modal/Modal.test.jsx +47 -0
- package/__tests__/Notification/Notification.test.jsx +20 -0
- package/__tests__/Pagination/Pagination.test.jsx +2 -2
- package/__tests__/Progress/Progress.test.jsx +79 -0
- package/__tests__/Radio/RadioGroup.test.jsx +221 -0
- package/__tests__/RadioCard/RadioCard.test.jsx +87 -0
- package/__tests__/RadioCard/RadioCardGroup.test.jsx +247 -0
- package/__tests__/Search/Search.test.jsx +72 -0
- package/__tests__/Skeleton/Skeleton.test.jsx +1 -1
- package/__tests__/StepTracker/StepTracker.test.jsx +94 -0
- package/__tests__/Tabs/Tabs.test.jsx +200 -0
- package/__tests__/Tags/Tags.test.jsx +1 -1
- package/__tests__/utils/input.test.js +58 -0
- package/__tests__/utils/useCopy.test.js +14 -3
- package/babel.config.js +20 -0
- package/jest.config.js +1 -1
- package/lib/A11yInfoProvider/index.js +54 -26
- package/lib/A11yText/index.js +37 -14
- package/lib/ActivityIndicator/Spinner.js +78 -0
- package/lib/ActivityIndicator/Spinner.native.js +121 -87
- package/lib/ActivityIndicator/index.js +28 -12
- package/lib/ActivityIndicator/shared.js +27 -12
- package/lib/BaseProvider/index.js +34 -11
- package/lib/Box/Box.js +54 -31
- package/lib/Box/index.js +13 -2
- package/lib/Button/Button.js +32 -11
- package/lib/Button/ButtonBase.js +85 -78
- package/lib/Button/ButtonGroup.js +94 -70
- package/lib/Button/ButtonLink.js +38 -15
- package/lib/Button/index.js +31 -4
- package/lib/Button/propTypes.js +32 -9
- package/lib/Card/Card.js +36 -41
- package/lib/Card/CardBase.js +78 -0
- package/lib/Card/PressableCardBase.js +137 -0
- package/lib/Card/index.js +40 -2
- package/lib/Checkbox/Checkbox.js +139 -103
- package/lib/Checkbox/CheckboxGroup.js +231 -0
- package/lib/Checkbox/CheckboxInput.js +74 -0
- package/lib/Checkbox/CheckboxInput.native.js +9 -1
- package/lib/Checkbox/index.js +21 -2
- package/lib/Divider/Divider.js +50 -24
- package/lib/Divider/index.js +13 -2
- package/lib/ExpandCollapse/Accordion.js +20 -7
- package/lib/ExpandCollapse/Control.js +50 -27
- package/lib/ExpandCollapse/ExpandCollapse.js +41 -24
- package/lib/ExpandCollapse/Panel.js +75 -37
- package/lib/ExpandCollapse/index.js +25 -7
- package/lib/Feedback/Feedback.js +69 -40
- package/lib/Feedback/index.js +13 -2
- package/lib/Fieldset/Fieldset.js +160 -0
- package/lib/Fieldset/FieldsetContainer.js +41 -0
- package/lib/Fieldset/FieldsetContainer.native.js +33 -0
- package/lib/Fieldset/Legend.js +33 -0
- package/lib/Fieldset/Legend.native.js +43 -0
- package/lib/Fieldset/cssReset.js +21 -0
- package/lib/Fieldset/index.js +13 -0
- package/lib/FlexGrid/Col/Col.js +67 -38
- package/lib/FlexGrid/Col/index.js +13 -2
- package/lib/FlexGrid/FlexGrid.js +70 -45
- package/lib/FlexGrid/Row/Row.js +48 -27
- package/lib/FlexGrid/Row/index.js +13 -2
- package/lib/FlexGrid/helpers/index.js +9 -1
- package/lib/FlexGrid/index.js +13 -2
- package/lib/FlexGrid/providers/GutterContext.js +15 -3
- package/lib/Icon/Icon.js +46 -44
- package/lib/Icon/IconText.js +49 -21
- package/lib/Icon/index.js +31 -4
- package/lib/InputLabel/InputLabel.js +70 -36
- package/lib/InputLabel/LabelContent.js +31 -0
- package/lib/InputLabel/LabelContent.native.js +9 -1
- package/lib/InputLabel/index.js +13 -2
- package/lib/InputSupports/InputSupports.js +62 -48
- package/lib/InputSupports/index.js +13 -2
- package/lib/InputSupports/propTypes.js +19 -8
- package/lib/InputSupports/useInputSupports.js +41 -0
- package/lib/Link/ChevronLink.js +33 -16
- package/lib/Link/InlinePressable.js +50 -0
- package/lib/Link/InlinePressable.native.js +34 -11
- package/lib/Link/Link.js +25 -9
- package/lib/Link/LinkBase.js +87 -57
- package/lib/Link/TextButton.js +32 -13
- package/lib/Link/index.js +39 -5
- package/lib/List/List.js +51 -23
- package/lib/List/ListItem.js +70 -40
- package/lib/List/index.js +13 -2
- package/lib/Modal/Modal.js +226 -0
- package/lib/Modal/dictionary.js +16 -0
- package/lib/Modal/index.js +13 -0
- package/lib/Notification/Notification.js +200 -0
- package/lib/Notification/dictionary.js +15 -0
- package/lib/Notification/index.js +13 -0
- package/lib/Pagination/PageButton.js +47 -25
- package/lib/Pagination/Pagination.js +70 -40
- package/lib/Pagination/SideButton.js +63 -37
- package/lib/Pagination/dictionary.js +9 -2
- package/lib/Pagination/index.js +13 -2
- package/lib/Pagination/usePagination.js +12 -2
- package/lib/Progress/Progress.js +99 -0
- package/lib/Progress/ProgressBar.js +146 -0
- package/lib/Progress/ProgressBarBackground.js +57 -0
- package/lib/Progress/index.js +16 -0
- package/lib/Radio/Radio.js +110 -109
- package/lib/Radio/RadioButton.js +141 -0
- package/lib/Radio/RadioGroup.js +233 -0
- package/lib/Radio/RadioInput.js +76 -0
- package/lib/Radio/RadioInput.native.js +9 -1
- package/lib/Radio/index.js +21 -2
- package/lib/RadioCard/RadioCard.js +240 -0
- package/lib/RadioCard/RadioCardGroup.js +251 -0
- package/lib/RadioCard/index.js +21 -0
- package/lib/Search/Search.js +243 -0
- package/lib/Search/dictionary.js +19 -0
- package/lib/Search/index.js +13 -0
- package/lib/Select/Group.js +33 -0
- package/lib/Select/Group.native.js +16 -5
- package/lib/Select/Item.js +29 -0
- package/lib/Select/Item.native.js +14 -4
- package/lib/Select/Picker.js +79 -0
- package/lib/Select/Picker.native.js +52 -24
- package/lib/Select/Select.js +110 -82
- package/lib/Select/index.js +19 -6
- package/lib/SideNav/Item.js +54 -33
- package/lib/SideNav/ItemContent.js +41 -15
- package/lib/SideNav/ItemsGroup.js +46 -27
- package/lib/SideNav/SideNav.js +92 -69
- package/lib/SideNav/index.js +15 -1
- package/lib/Skeleton/Skeleton.js +55 -37
- package/lib/Skeleton/index.js +13 -2
- package/lib/Skeleton/skeleton.constant.js +12 -0
- package/lib/Skeleton/skeletonWebAnimation.js +27 -0
- package/lib/Skeleton/useSkeletonNativeAnimation.js +37 -0
- package/lib/Spacer/Spacer.js +31 -12
- package/lib/Spacer/index.js +13 -2
- package/lib/StackView/StackView.js +49 -27
- package/lib/StackView/StackWrap.js +33 -10
- package/lib/StackView/StackWrap.native.js +13 -2
- package/lib/StackView/StackWrapBox.js +46 -24
- package/lib/StackView/StackWrapGap.js +43 -22
- package/lib/StackView/common.js +19 -4
- package/lib/StackView/getStackedContent.js +49 -19
- package/lib/StackView/index.js +29 -5
- package/lib/StepTracker/Step.js +245 -0
- package/lib/StepTracker/StepTracker.js +197 -0
- package/lib/StepTracker/dictionary.js +17 -0
- package/lib/StepTracker/index.js +13 -0
- package/lib/Tabs/HorizontalScroll.js +199 -0
- package/lib/Tabs/ScrollViewEnd.js +66 -0
- package/lib/Tabs/ScrollViewEnd.native.js +41 -0
- package/lib/Tabs/Tabs.js +117 -0
- package/lib/Tabs/TabsItem.js +234 -0
- package/lib/Tabs/TabsScrollButton.js +121 -0
- package/lib/Tabs/dictionary.js +18 -0
- package/lib/Tabs/index.js +13 -0
- package/lib/Tabs/itemPositions.js +128 -0
- package/lib/Tags/Tags.js +130 -97
- package/lib/Tags/index.js +13 -2
- package/lib/TextInput/TextArea.js +51 -24
- package/lib/TextInput/TextInput.js +40 -19
- package/lib/TextInput/TextInputBase.js +78 -55
- package/lib/TextInput/index.js +23 -3
- package/lib/TextInput/propTypes.js +18 -7
- package/lib/ThemeProvider/ThemeProvider.js +38 -14
- package/lib/ThemeProvider/index.js +61 -6
- package/lib/ThemeProvider/useSetTheme.js +14 -5
- package/lib/ThemeProvider/useTheme.js +13 -4
- package/lib/ThemeProvider/useThemeTokens.js +32 -16
- package/lib/ThemeProvider/utils/index.js +31 -2
- package/lib/ThemeProvider/utils/styles.js +52 -16
- package/lib/ThemeProvider/utils/theme-tokens.js +94 -16
- package/lib/ToggleSwitch/ToggleSwitch.js +75 -51
- package/lib/ToggleSwitch/index.js +13 -2
- package/lib/Tooltip/{Backdrop.web.js → Backdrop.js} +22 -18
- package/lib/Tooltip/Backdrop.native.js +39 -15
- package/lib/Tooltip/Tooltip.js +112 -70
- package/lib/Tooltip/dictionary.js +9 -2
- package/lib/Tooltip/getTooltipPosition.js +9 -1
- package/lib/Tooltip/index.js +13 -2
- package/lib/TooltipButton/TooltipButton.js +57 -38
- package/lib/TooltipButton/index.js +13 -2
- package/lib/Typography/Typography.js +57 -27
- package/lib/Typography/index.js +13 -2
- package/lib/ViewportProvider/ViewportProvider.js +34 -13
- package/lib/ViewportProvider/index.js +28 -3
- package/lib/ViewportProvider/useViewport.js +15 -3
- package/lib/ViewportProvider/useViewportListener.js +24 -10
- package/lib/index.js +509 -33
- package/lib/utils/a11y/index.js +18 -1
- package/lib/utils/a11y/textSize.js +23 -7
- package/lib/utils/animation/index.js +15 -2
- package/lib/utils/animation/useVerticalExpandAnimation.js +28 -11
- package/lib/utils/children.js +87 -0
- package/lib/utils/index.js +163 -10
- package/lib/utils/info/index.js +18 -6
- package/lib/utils/info/platform/index.js +19 -7
- package/lib/utils/info/platform/platform.android.js +8 -1
- package/lib/utils/info/platform/platform.ios.js +8 -1
- package/lib/utils/info/platform/platform.js +8 -0
- package/lib/utils/info/platform/platform.native.js +8 -1
- package/lib/utils/info/versions.js +15 -4
- package/lib/utils/input.js +51 -33
- package/lib/utils/pressability.js +38 -10
- package/lib/utils/propTypes.js +217 -125
- package/lib/utils/useCopy.js +40 -5
- package/lib/utils/useHash.js +48 -0
- package/lib/utils/useHash.native.js +15 -0
- package/lib/utils/useResponsiveProp.js +21 -9
- package/lib/utils/useSpacingScale.js +21 -9
- package/lib/utils/useUniqueId.js +13 -4
- package/package.json +7 -6
- package/release-context.json +4 -4
- package/src/ActivityIndicator/{Spinner.web.jsx → Spinner.jsx} +0 -0
- package/src/Box/Box.jsx +11 -4
- package/src/Button/Button.jsx +3 -2
- package/src/Button/ButtonBase.jsx +27 -36
- package/src/Button/ButtonGroup.jsx +2 -2
- package/src/Button/ButtonLink.jsx +3 -2
- package/src/Button/propTypes.js +12 -2
- package/src/Card/Card.jsx +4 -30
- package/src/Card/CardBase.jsx +57 -0
- package/src/Card/PressableCardBase.jsx +112 -0
- package/src/Card/index.js +3 -0
- package/src/Checkbox/Checkbox.jsx +10 -11
- package/src/Checkbox/CheckboxGroup.jsx +196 -0
- package/src/Checkbox/{CheckboxInput.web.jsx → CheckboxInput.jsx} +0 -0
- package/src/Checkbox/index.js +2 -0
- package/src/ExpandCollapse/Control.jsx +1 -1
- package/src/Feedback/Feedback.jsx +1 -1
- package/src/Fieldset/Fieldset.jsx +129 -0
- package/src/Fieldset/FieldsetContainer.jsx +22 -0
- package/src/Fieldset/FieldsetContainer.native.jsx +16 -0
- package/src/Fieldset/Legend.jsx +16 -0
- package/src/Fieldset/Legend.native.jsx +22 -0
- package/src/Fieldset/cssReset.js +14 -0
- package/src/Fieldset/index.js +3 -0
- package/src/Icon/Icon.jsx +14 -23
- package/src/Icon/IconText.jsx +2 -2
- package/src/Icon/index.js +2 -2
- package/src/InputLabel/InputLabel.jsx +9 -2
- package/src/InputLabel/{LabelContent.web.jsx → LabelContent.jsx} +0 -0
- package/src/InputSupports/InputSupports.jsx +7 -18
- package/src/InputSupports/useInputSupports.js +30 -0
- package/src/Link/{InlinePressable.web.jsx → InlinePressable.jsx} +0 -0
- package/src/Link/LinkBase.jsx +14 -12
- package/src/Modal/Modal.jsx +185 -0
- package/src/Modal/dictionary.js +9 -0
- package/src/Modal/index.js +3 -0
- package/src/Notification/Notification.jsx +149 -0
- package/src/Notification/dictionary.js +8 -0
- package/src/Notification/index.js +3 -0
- package/src/Progress/Progress.jsx +77 -0
- package/src/Progress/ProgressBar.jsx +110 -0
- package/src/Progress/ProgressBarBackground.jsx +34 -0
- package/src/Progress/index.js +6 -0
- package/src/Radio/Radio.jsx +19 -56
- package/src/Radio/RadioButton.jsx +131 -0
- package/src/Radio/RadioGroup.jsx +198 -0
- package/src/Radio/{RadioInput.web.jsx → RadioInput.jsx} +0 -0
- package/src/Radio/index.js +2 -0
- package/src/RadioCard/RadioCard.jsx +191 -0
- package/src/RadioCard/RadioCardGroup.jsx +211 -0
- package/src/RadioCard/index.js +5 -0
- package/src/Search/Search.jsx +204 -0
- package/src/Search/dictionary.js +12 -0
- package/src/Search/index.js +3 -0
- package/src/Select/{Group.web.jsx → Group.jsx} +0 -0
- package/src/Select/{Item.web.jsx → Item.jsx} +0 -0
- package/src/Select/{Picker.web.jsx → Picker.jsx} +0 -0
- package/src/Select/Select.jsx +12 -22
- package/src/SideNav/Item.jsx +2 -2
- package/src/Skeleton/Skeleton.jsx +17 -20
- package/src/Skeleton/skeleton.constant.js +3 -0
- package/src/Skeleton/skeletonWebAnimation.js +13 -0
- package/src/Skeleton/useSkeletonNativeAnimation.js +27 -0
- package/src/StackView/StackView.jsx +10 -3
- package/src/StackView/StackWrap.jsx +9 -1
- package/src/StackView/StackWrapBox.jsx +4 -3
- package/src/StackView/StackWrapGap.jsx +3 -3
- package/src/StackView/getStackedContent.jsx +8 -2
- package/src/StepTracker/Step.jsx +202 -0
- package/src/StepTracker/StepTracker.jsx +163 -0
- package/src/StepTracker/dictionary.js +10 -0
- package/src/StepTracker/index.js +3 -0
- package/src/Tabs/HorizontalScroll.jsx +165 -0
- package/src/Tabs/ScrollViewEnd.jsx +53 -0
- package/src/Tabs/ScrollViewEnd.native.jsx +24 -0
- package/src/Tabs/Tabs.jsx +89 -0
- package/src/Tabs/TabsItem.jsx +204 -0
- package/src/Tabs/TabsScrollButton.jsx +100 -0
- package/src/Tabs/dictionary.js +11 -0
- package/src/Tabs/index.js +3 -0
- package/src/Tabs/itemPositions.js +101 -0
- package/src/Tags/Tags.jsx +2 -1
- package/src/TextInput/TextInputBase.jsx +12 -22
- package/src/ThemeProvider/useThemeTokens.js +2 -2
- package/src/ThemeProvider/utils/styles.js +18 -5
- package/src/ThemeProvider/utils/theme-tokens.js +46 -5
- package/src/ToggleSwitch/ToggleSwitch.jsx +2 -3
- package/src/Tooltip/{Backdrop.web.jsx → Backdrop.jsx} +0 -0
- package/src/Tooltip/Tooltip.jsx +1 -1
- package/src/TooltipButton/TooltipButton.jsx +23 -27
- package/src/Typography/Typography.jsx +6 -5
- package/src/index.js +20 -2
- package/src/utils/children.jsx +66 -0
- package/src/utils/index.js +3 -0
- package/src/utils/info/platform/platform.js +1 -0
- package/src/utils/info/versions.js +2 -2
- package/src/utils/input.js +20 -12
- package/src/utils/pressability.js +4 -0
- package/src/utils/propTypes.js +98 -34
- package/src/utils/useCopy.js +30 -4
- package/src/utils/useHash.js +34 -0
- package/src/utils/useHash.native.js +6 -0
- package/stories/A11yText/A11yText.stories.jsx +4 -8
- package/stories/Checkbox/Checkbox.stories.jsx +24 -1
- package/stories/Icon/Icon.stories.jsx +6 -5
- package/stories/Modal/Modal.stories.jsx +29 -0
- package/stories/Notification/Notification.stories.jsx +82 -0
- package/stories/Progress/Progress.stories.jsx +93 -0
- package/stories/Radio/Radio.stories.jsx +23 -36
- package/stories/RadioCard/RadioCard.stories.jsx +98 -0
- package/stories/Search/Search.stories.jsx +16 -0
- package/stories/StepTracker/StepTracker.stories.jsx +71 -0
- package/stories/Tabs/Tabs.stories.jsx +97 -0
- package/stories/{platform-supports.web.jsx → platform-supports.jsx} +0 -0
- package/__fixtures__/accessible.icon.svg +0 -6
- package/babel.config.json +0 -8
- package/lib/ActivityIndicator/Spinner.web.js +0 -55
- package/lib/Checkbox/CheckboxInput.web.js +0 -57
- package/lib/InputLabel/LabelContent.web.js +0 -17
- package/lib/Link/InlinePressable.web.js +0 -32
- package/lib/Radio/RadioInput.web.js +0 -59
- package/lib/Select/Group.web.js +0 -18
- package/lib/Select/Item.web.js +0 -15
- package/lib/Select/Picker.web.js +0 -63
- package/lib/config/svgr-icons-web.js +0 -9
- package/lib/config/svgr-icons.js +0 -52
- package/lib/utils/info/platform/platform.web.js +0 -1
- package/src/config/svgr-icons-web.js +0 -11
- package/src/config/svgr-icons.js +0 -46
- package/src/utils/info/platform/platform.web.js +0 -1
package/src/utils/input.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { useCallback, useState } from 'react'
|
|
1
|
+
import { useCallback, useRef, useState } from 'react'
|
|
2
2
|
|
|
3
3
|
const pluralHooks = ['useMultipleInputValues']
|
|
4
4
|
|
|
@@ -44,16 +44,18 @@ Consumers of this hook must be one of:
|
|
|
44
44
|
* management tools such as Formik and React Hooks Form.
|
|
45
45
|
*
|
|
46
46
|
* @param {object} props
|
|
47
|
-
* @param {
|
|
48
|
-
* @param {
|
|
47
|
+
* @param {string|number|null} [props.value] - for a controlled input, the active values as set by a parent
|
|
48
|
+
* @param {string|number} [props.initialValue] - for an uncontrolled input, the default active values
|
|
49
49
|
* @param {function} [props.onChange] - function called when values change (required for controlled inputs)
|
|
50
50
|
* @param {boolean} [props.readOnly] - if true, stops the input values from changing
|
|
51
51
|
*
|
|
52
52
|
* @param {string} hookName - optional, used for tailoring error messages
|
|
53
53
|
*
|
|
54
|
+
* @typedef {(oldValue: string|number|null) => string|number|null} UpdaterFunction - `setValue` takes a value or
|
|
55
|
+
* a function returning a new value from the old value
|
|
54
56
|
* @returns {{
|
|
55
|
-
* currentValue:
|
|
56
|
-
* setValue: (
|
|
57
|
+
* currentValue: string|number|null
|
|
58
|
+
* setValue: (newValue: string|number|null|UpdaterFunction) => void
|
|
57
59
|
* resetValue: () => void
|
|
58
60
|
* isControlled: bool
|
|
59
61
|
* }}
|
|
@@ -70,17 +72,21 @@ export const useInputValue = (props = {}, hookName = 'useInputValue') => {
|
|
|
70
72
|
|
|
71
73
|
// Store the first valid value, for resetting input to default. If behaviour like Formik's `enableReinitialize`
|
|
72
74
|
// is needed, add useEffect calling a set fn if !deepEqual(initializedValues, initialValues)
|
|
73
|
-
const
|
|
75
|
+
const valueRef = useRef({ initial: currentValue, value: currentValue })
|
|
76
|
+
// Make current value accessible inside useCallback without rememoizing every time the value changes
|
|
77
|
+
valueRef.current.value = currentValue
|
|
74
78
|
|
|
75
79
|
const setValue = useCallback(
|
|
76
|
-
(
|
|
80
|
+
(arg) => {
|
|
77
81
|
if (readOnly) return
|
|
78
|
-
|
|
82
|
+
const newValue = typeof arg === 'function' ? arg(valueRef.current.value) : arg
|
|
83
|
+
// Only call onChange if the value actually changed
|
|
84
|
+
if (onChange && valueRef.current.value !== newValue) onChange(newValue)
|
|
79
85
|
if (!isControlled) setOwnValue(newValue)
|
|
80
86
|
},
|
|
81
87
|
[isControlled, onChange, readOnly]
|
|
82
88
|
)
|
|
83
|
-
const resetValue = useCallback(() => setValue(
|
|
89
|
+
const resetValue = useCallback(() => setValue(valueRef.current.initial), [setValue])
|
|
84
90
|
|
|
85
91
|
return { currentValue, setValue, resetValue, isControlled }
|
|
86
92
|
}
|
|
@@ -94,18 +100,20 @@ export const useInputValue = (props = {}, hookName = 'useInputValue') => {
|
|
|
94
100
|
* management tools such as Formik and React Hooks Form.
|
|
95
101
|
*
|
|
96
102
|
* @param {object} props
|
|
97
|
-
* @param {
|
|
98
|
-
* @param {
|
|
103
|
+
* @param {string[]|number[]} [props.values] - for a controlled input, the active values as set by a parent
|
|
104
|
+
* @param {string[]|number[]} [props.initialValues] - for an uncontrolled input, the default active values
|
|
99
105
|
* @param {number?} [props.maxValues] - maximum number of values that may be selected at once (no limit if null)
|
|
100
106
|
* @param {function} [props.onChange] - function called when values change (required for controlled inputs)
|
|
101
107
|
* @param {boolean} [props.readOnly] - if true, stops the input values from changing
|
|
102
108
|
*
|
|
103
109
|
* @param {string} componentName - optional, used in error messages
|
|
104
110
|
*
|
|
111
|
+
* @typedef {(oldValues: string[]|number[]) => string[]|number[]} UpdaterFunction - `setValues` takes values or
|
|
112
|
+
* a function returning new values from old values
|
|
105
113
|
* @returns {{
|
|
106
114
|
* currentValues: any
|
|
107
115
|
* resetValues: () => void
|
|
108
|
-
* setValues: (newValues:
|
|
116
|
+
* setValues: (newValues: string[]|number[]|UpdaterFunction) => void
|
|
109
117
|
* toggleOneValue: (value: string|number) => void
|
|
110
118
|
* unsetValues: () => void
|
|
111
119
|
* }}
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import { Platform, StyleSheet } from 'react-native'
|
|
2
2
|
import { pressProps } from './propTypes'
|
|
3
3
|
|
|
4
|
+
/**
|
|
5
|
+
* @typedef {import('react').ReactNode} ReactNode
|
|
6
|
+
*/
|
|
7
|
+
|
|
4
8
|
// These roles should result in cursor: pointer but don't in current RNW releases
|
|
5
9
|
const shouldUseCursor = ['checkbox', 'radio', 'switch']
|
|
6
10
|
|
package/src/utils/propTypes.js
CHANGED
|
@@ -39,12 +39,18 @@ export const variantProp = {
|
|
|
39
39
|
)
|
|
40
40
|
}
|
|
41
41
|
|
|
42
|
-
// Tokens can be primitive values (e.g. `'rgba(0,0,0,0'`, `12`), or objects of such values
|
|
43
|
-
// such as tokens that describe shadow (e.g. shadow: { inset: true, color: 'rgba(...)' ... })
|
|
44
|
-
|
|
42
|
+
// Tokens can be primitive values (e.g. `'rgba(0,0,0,0'`, `12`), or objects of such values,
|
|
43
|
+
// such as tokens that describe shadow (e.g. shadow: { inset: true, color: 'rgba(...)' ... }),
|
|
44
|
+
// or components (e.g. Icon tokens)
|
|
45
|
+
const tokenValue = PropTypes.oneOfType([
|
|
46
|
+
PropTypes.string,
|
|
47
|
+
PropTypes.number,
|
|
48
|
+
PropTypes.bool,
|
|
49
|
+
PropTypes.elementType
|
|
50
|
+
])
|
|
45
51
|
const tokenValueType = PropTypes.oneOfType([tokenValue, PropTypes.objectOf(tokenValue)])
|
|
46
52
|
|
|
47
|
-
const getTokenNames = (componentName) => {
|
|
53
|
+
export const getTokenNames = (componentName) => {
|
|
48
54
|
const componentTokenNames = tokenKeys[componentName]
|
|
49
55
|
if (!componentTokenNames) {
|
|
50
56
|
throw new Error(`No "${componentName}" tokenKeys in @telus-uds/system-themes/schema`)
|
|
@@ -54,14 +60,40 @@ const getTokenNames = (componentName) => {
|
|
|
54
60
|
|
|
55
61
|
/**
|
|
56
62
|
* Returns the subset of a set of tokens that may be accepted by the `tokens` prop of a named component
|
|
63
|
+
* or by a provided array of tokens. A prefix may be provided, for example:
|
|
64
|
+
*
|
|
65
|
+
* @example
|
|
66
|
+
* ```jsx
|
|
67
|
+
* // returns tokens from `themeTokens` that exist in the theme schema for `Button`.
|
|
68
|
+
* selectTokens('Button', themeTokens)
|
|
69
|
+
* ```
|
|
70
|
+
*
|
|
71
|
+
* @example
|
|
72
|
+
* ```jsx
|
|
73
|
+
* // returns `{ backgroundColor, width }` where the values of those keys come from
|
|
74
|
+
* // the source object's `{ containerBackgroundColor, containerWidth }` properties.
|
|
75
|
+
* selectTokens(['backgroundColor', 'width'], themeTokens, 'container')
|
|
76
|
+
* ```
|
|
77
|
+
*
|
|
78
|
+
* @example
|
|
79
|
+
* ```jsx
|
|
80
|
+
* // returns tokens that are defined in the `Button` theme schema, from tokens with
|
|
81
|
+
* // a prefix `'button'` e.g. a token `buttonBorderWidth` outputs as `borderWidth`.
|
|
82
|
+
* selectTokens('Button', themeTokens, 'button')
|
|
83
|
+
* ```
|
|
84
|
+
*
|
|
85
|
+
* @param {string[]|string} specifier - a name of a component in the theme schema, or an array of token names
|
|
86
|
+
* @param {object} tokens - a source object of theme tokens
|
|
87
|
+
* @param {string} [prefix] - if provided, matches keys in the source object with this as the first camelCase item
|
|
88
|
+
* @returns {object} - subset of theme tokens
|
|
57
89
|
*/
|
|
58
|
-
export const selectTokens = (
|
|
59
|
-
const tokenNames = getTokenNames(
|
|
60
|
-
const filteredTokens =
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
{}
|
|
64
|
-
)
|
|
90
|
+
export const selectTokens = (specifier, tokens, prefix) => {
|
|
91
|
+
const tokenNames = typeof specifier === 'string' ? getTokenNames(specifier) : specifier
|
|
92
|
+
const filteredTokens = tokenNames.reduce((validTokens, key) => {
|
|
93
|
+
const prefixedKey = prefix ? `${prefix}${key[0].toUpperCase()}${key.slice(1)}` : key
|
|
94
|
+
const token = tokens[prefixedKey]
|
|
95
|
+
return token !== undefined ? { ...validTokens, [key]: token } : validTokens
|
|
96
|
+
}, {})
|
|
65
97
|
return filteredTokens
|
|
66
98
|
}
|
|
67
99
|
|
|
@@ -120,6 +152,41 @@ export const getTokensPropType = (...componentsNames) => (props, propName, compo
|
|
|
120
152
|
}
|
|
121
153
|
}
|
|
122
154
|
|
|
155
|
+
/**
|
|
156
|
+
* Get a proptypes validator for a set of tokens that is not based on a component in the theme schema.
|
|
157
|
+
*
|
|
158
|
+
* For example, for a set of tokens used in a common style, or for a set of tokens required by
|
|
159
|
+
* a themeless component whose tokens are set by a parent but requires tokens of a certain shape.
|
|
160
|
+
*
|
|
161
|
+
* By default, requires an object with a complete set of tokens (allowing `null`, but not `undefined`).
|
|
162
|
+
*
|
|
163
|
+
* @param {string[]} componentTokenKeys - array of strings of token names
|
|
164
|
+
* @param {object} [options]
|
|
165
|
+
* @param {boolean} [options.partial] - if true, allows tokens to be undefined
|
|
166
|
+
* @param {boolean} [options.allowFunction] - if true, allows functions as well as tokens objects
|
|
167
|
+
* @returns
|
|
168
|
+
*/
|
|
169
|
+
export const getTokensSetPropType = (
|
|
170
|
+
componentTokenKeys,
|
|
171
|
+
{ partial = false, allowFunction = false } = {}
|
|
172
|
+
) => {
|
|
173
|
+
const tokensObjectValidator = PropTypes.exact(
|
|
174
|
+
Object.fromEntries(
|
|
175
|
+
componentTokenKeys.map((key) => [
|
|
176
|
+
key,
|
|
177
|
+
partial
|
|
178
|
+
? tokenValueType
|
|
179
|
+
: // Some theme tokens can validly resolve to `null`, but .isRequired treats null as undefined
|
|
180
|
+
(props, propName, ...args) =>
|
|
181
|
+
props[propName] !== null && tokenValueType.isRequired(props, propName, ...args)
|
|
182
|
+
])
|
|
183
|
+
)
|
|
184
|
+
)
|
|
185
|
+
return allowFunction
|
|
186
|
+
? PropTypes.oneOfType([tokensObjectValidator, PropTypes.func])
|
|
187
|
+
: tokensObjectValidator
|
|
188
|
+
}
|
|
189
|
+
|
|
123
190
|
function getPropSelector(propTypes, regexp) {
|
|
124
191
|
const keys = Object.keys(propTypes)
|
|
125
192
|
return (props) =>
|
|
@@ -138,7 +205,6 @@ function getPropSelector(propTypes, regexp) {
|
|
|
138
205
|
// React Native exports a11y prop definitions as TypeScript Interfaces, but no longer exports PropTypes
|
|
139
206
|
// so we have to define them ourselves.
|
|
140
207
|
const a11yPropTypes = {
|
|
141
|
-
// react-native-web >= 0.15.0 ignores `accessible` and looks for `focusable`
|
|
142
208
|
accessible: PropTypes.bool,
|
|
143
209
|
focusable: PropTypes.bool,
|
|
144
210
|
|
|
@@ -191,10 +257,9 @@ export const a11yProps = {
|
|
|
191
257
|
* Use this to disable focus for elements which are visually hidden but still rendered.
|
|
192
258
|
*/
|
|
193
259
|
nonFocusableProps: {
|
|
194
|
-
focusable: false, // for android, and for keyboard nav in web
|
|
260
|
+
focusable: false, // for android, and for keyboard nav in web
|
|
195
261
|
...Platform.select({
|
|
196
262
|
web: {
|
|
197
|
-
accessible: false, // workaround for web keyboard nav in RNW < 0.15.x
|
|
198
263
|
accessibilityHidden: true // web screenreaders
|
|
199
264
|
},
|
|
200
265
|
android: {
|
|
@@ -248,26 +313,6 @@ export const hrefAttrsProp = {
|
|
|
248
313
|
target
|
|
249
314
|
},
|
|
250
315
|
rest
|
|
251
|
-
}),
|
|
252
|
-
/**
|
|
253
|
-
* Takes a hrefAttrs object and returns an object that can be spread into Pressable props
|
|
254
|
-
* in a way that handles compatibility before and after React Native Web 0.15.0
|
|
255
|
-
*/
|
|
256
|
-
spread: (hrefAttrs) => ({
|
|
257
|
-
/**
|
|
258
|
-
* React Native Web >= 0.15.0 supports hrefAttrs prop but requires React 17
|
|
259
|
-
* so is incompatible with Expo until July 2021
|
|
260
|
-
*/
|
|
261
|
-
hrefAttrs,
|
|
262
|
-
/**
|
|
263
|
-
* React Native Web < 0.15.0 uses `target` and `rel` props.
|
|
264
|
-
* React Native Web >= 0.15.0 ignores these and reads hrefAttrs only.
|
|
265
|
-
*/
|
|
266
|
-
rel: hrefAttrs?.rel,
|
|
267
|
-
target: hrefAttrs?.target
|
|
268
|
-
/**
|
|
269
|
-
* Don't spread hrefAttrs.download, RNW <0.15.0 doesn't support it.
|
|
270
|
-
*/
|
|
271
316
|
})
|
|
272
317
|
}
|
|
273
318
|
|
|
@@ -345,6 +390,25 @@ export const linkProps = {
|
|
|
345
390
|
}
|
|
346
391
|
}
|
|
347
392
|
|
|
393
|
+
const viewPropTypes = {
|
|
394
|
+
pointerEvents: PropTypes.oneOf(['all', 'none', 'box-only', 'box-none']),
|
|
395
|
+
onLayout: PropTypes.func,
|
|
396
|
+
nativeID: PropTypes.string
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
export const viewProps = {
|
|
400
|
+
/**
|
|
401
|
+
* Subset of `View` proptypes that could conceivably be needed on any component
|
|
402
|
+
* that renders a single View.
|
|
403
|
+
*/
|
|
404
|
+
types: viewPropTypes,
|
|
405
|
+
/**
|
|
406
|
+
* Filters a props object, returning only cross-platform View props that are potentially
|
|
407
|
+
* relevant to any basic layout component that renders one View.
|
|
408
|
+
*/
|
|
409
|
+
select: getPropSelector(viewPropTypes)
|
|
410
|
+
}
|
|
411
|
+
|
|
348
412
|
const getByViewport = (propType) => ({
|
|
349
413
|
xs: propType,
|
|
350
414
|
sm: propType,
|
package/src/utils/useCopy.js
CHANGED
|
@@ -1,13 +1,39 @@
|
|
|
1
|
+
export const DEFAULT_COPY = 'en'
|
|
2
|
+
|
|
1
3
|
/**
|
|
2
4
|
* Extract translations from a keyed dictionary for a given language.
|
|
3
5
|
* Returns a getter.
|
|
4
6
|
*
|
|
5
|
-
* @
|
|
6
|
-
*
|
|
7
|
+
* @example
|
|
8
|
+
* const getCopy = useCopy({
|
|
9
|
+
* copy: 'en',
|
|
10
|
+
* dictionary: {
|
|
11
|
+
* en: { label: 'english label' },
|
|
12
|
+
* fr: { label: 'french label' }
|
|
13
|
+
* }
|
|
14
|
+
* })
|
|
15
|
+
*
|
|
16
|
+
* getCopy('label') => 'english label'
|
|
17
|
+
*
|
|
18
|
+
* @description The entire dictionary may be overridden by simply passing a single language object as `copy`:
|
|
19
|
+
* @example
|
|
20
|
+
* const getCopy = useCopy({
|
|
21
|
+
* copy: { label: 'custom label' }
|
|
22
|
+
* })
|
|
23
|
+
*
|
|
24
|
+
* getCopy('label') => 'custom label'
|
|
25
|
+
*
|
|
26
|
+
* @param {object} [dictionary]
|
|
27
|
+
* @param {'en'|'fr'|object} copy - language
|
|
7
28
|
* @return {function(string): string}
|
|
8
29
|
*/
|
|
9
|
-
function useCopy({ dictionary, copy }) {
|
|
10
|
-
|
|
30
|
+
function useCopy({ dictionary, copy = DEFAULT_COPY }) {
|
|
31
|
+
if (typeof copy === 'string') {
|
|
32
|
+
return (key) => dictionary[copy][key]
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
// support overriding the entire copy dictionary with an object for a single language
|
|
36
|
+
return (key) => copy[key]
|
|
11
37
|
}
|
|
12
38
|
|
|
13
39
|
export default useCopy
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { useEffect, useState } from 'react'
|
|
2
|
+
|
|
3
|
+
const doAction = (action) => typeof action === 'function' && action(window?.location?.hash)
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Calls a function (passing it the current hash) based on the current hash state on mount,
|
|
7
|
+
* and binds it to call it again any time the hash changes.
|
|
8
|
+
*
|
|
9
|
+
* Consider using `useCallback` on the function to minimise adding and removing of event listeners.
|
|
10
|
+
*
|
|
11
|
+
* On Native, this is replaced with a harmless no-op function as there is no direct equivalent.
|
|
12
|
+
*
|
|
13
|
+
* @param {(hash: string) => void} action - a function to act on the current hash on load and when it changes
|
|
14
|
+
* @returns
|
|
15
|
+
*/
|
|
16
|
+
const useHash = (action, isReady = true) => {
|
|
17
|
+
const [isDone, setIsDone] = useState(false)
|
|
18
|
+
// Do the action just once when ready after component mount, from hash on page load
|
|
19
|
+
const isToDo = isReady && !isDone
|
|
20
|
+
useEffect(() => {
|
|
21
|
+
if (isToDo) {
|
|
22
|
+
setIsDone(true)
|
|
23
|
+
doAction(action)
|
|
24
|
+
}
|
|
25
|
+
}, [isToDo, action])
|
|
26
|
+
|
|
27
|
+
// Bind the action for each hash change; do re-bind if the function changes.
|
|
28
|
+
useEffect(() => {
|
|
29
|
+
const handleChange = () => doAction(action)
|
|
30
|
+
window.addEventListener('hashchange', handleChange)
|
|
31
|
+
return () => window.removeEventListener('hashchange', handleChange)
|
|
32
|
+
}, [action])
|
|
33
|
+
}
|
|
34
|
+
export default useHash
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/* eslint-disable react/no-multi-comp */
|
|
2
2
|
import React from 'react'
|
|
3
|
-
import { StyleSheet,
|
|
3
|
+
import { StyleSheet, View } from 'react-native'
|
|
4
4
|
|
|
5
5
|
import A11yText from '../../lib/A11yText'
|
|
6
6
|
import { Button, Typography } from '../../lib'
|
|
@@ -44,13 +44,9 @@ A11yTextAsHeading.args = { ...defaultArgs, heading: true }
|
|
|
44
44
|
|
|
45
45
|
export const A11yTextInButton = (args) => (
|
|
46
46
|
<Button onPress={() => {}}>
|
|
47
|
-
{
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
<Text style={textStyles}>A11yText sandwich</Text>
|
|
51
|
-
<A11yText {...args} />
|
|
52
|
-
</>
|
|
53
|
-
)}
|
|
47
|
+
<A11yText {...args} />
|
|
48
|
+
A11yText sandwich
|
|
49
|
+
<A11yText {...args} />
|
|
54
50
|
</Button>
|
|
55
51
|
)
|
|
56
52
|
A11yTextInButton.args = defaultArgs
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* eslint-disable react/no-multi-comp */
|
|
2
2
|
import React from 'react'
|
|
3
3
|
|
|
4
|
-
import { Checkbox, Typography } from '../../lib'
|
|
4
|
+
import { Checkbox, CheckboxGroup, Typography } from '../../lib'
|
|
5
5
|
import { Container, EachParentType, parentTypesParams } from '../supports'
|
|
6
6
|
|
|
7
7
|
export default {
|
|
@@ -55,6 +55,29 @@ WithFeedback.args = {
|
|
|
55
55
|
feedback: 'Something happened'
|
|
56
56
|
}
|
|
57
57
|
|
|
58
|
+
export const CheckboxGroupStory = (args) => <CheckboxGroup {...args} />
|
|
59
|
+
CheckboxGroupStory.storyName = 'CheckboxGroup'
|
|
60
|
+
CheckboxGroupStory.args = {
|
|
61
|
+
items: [
|
|
62
|
+
{
|
|
63
|
+
label: 'Checkbox 1'
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
label: 'Checkbox 2'
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
label: 'Checkbox 3'
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
label: 'Checkbox 4'
|
|
73
|
+
}
|
|
74
|
+
],
|
|
75
|
+
legend: 'Choose checkboxes.',
|
|
76
|
+
hint: 'Of the checkboxes below, choose some.',
|
|
77
|
+
tooltip: 'Decide which checkboxes you like best, then press them.',
|
|
78
|
+
name: 'example'
|
|
79
|
+
}
|
|
80
|
+
|
|
58
81
|
export const ParentTypes = (args) => (
|
|
59
82
|
<EachParentType componentThemeName="Checkbox" {...args}>
|
|
60
83
|
{({ label, variant }) => (
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
/* eslint-disable react/no-multi-comp */
|
|
2
2
|
import React from 'react'
|
|
3
3
|
import { StyleSheet, Text } from 'react-native'
|
|
4
|
-
import AccessibleIcon from '../../__fixtures__/
|
|
4
|
+
import AccessibleIcon from '../../__fixtures__/Accessible'
|
|
5
|
+
import { Icon } from '../../lib'
|
|
5
6
|
import { Container, useVariants, EachParentType, parentTypesParams } from '../supports'
|
|
6
7
|
|
|
7
8
|
export default {
|
|
8
9
|
title: 'Base/Icon',
|
|
9
|
-
component:
|
|
10
|
+
component: Icon,
|
|
10
11
|
argTypes: {
|
|
11
12
|
label: {
|
|
12
13
|
type: {
|
|
@@ -30,21 +31,21 @@ export default {
|
|
|
30
31
|
}
|
|
31
32
|
}
|
|
32
33
|
|
|
33
|
-
export const ExampleIcon = (args) => <AccessibleIcon {...args} />
|
|
34
|
+
export const ExampleIcon = (args) => <Icon icon={AccessibleIcon} {...args} />
|
|
34
35
|
|
|
35
36
|
export const IconVariants = (args) => {
|
|
36
37
|
const variants = useVariants('Icon')
|
|
37
38
|
return variants.map(([key, value, label]) => (
|
|
38
39
|
<Container key={label} dark={value === 'white'}>
|
|
39
40
|
<Text style={styles.subtle}>{label}</Text>
|
|
40
|
-
<AccessibleIcon {...args} variant={{ [key]: value }} />
|
|
41
|
+
<Icon icon={AccessibleIcon} {...args} variant={{ [key]: value }} />
|
|
41
42
|
</Container>
|
|
42
43
|
))
|
|
43
44
|
}
|
|
44
45
|
|
|
45
46
|
export const ParentTypes = (args) => (
|
|
46
47
|
<EachParentType {...args}>
|
|
47
|
-
{({ label }) => <AccessibleIcon {...args} label={label} />}
|
|
48
|
+
{({ label }) => <Icon icon={AccessibleIcon} {...args} label={label} />}
|
|
48
49
|
</EachParentType>
|
|
49
50
|
)
|
|
50
51
|
ParentTypes.parameters = parentTypesParams
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import React, { useState } from 'react'
|
|
2
|
+
|
|
3
|
+
import { Button, Modal, Spacer, Typography } from '../../lib'
|
|
4
|
+
|
|
5
|
+
export default {
|
|
6
|
+
title: 'Base/Modal',
|
|
7
|
+
component: Modal
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export const Default = (args) => {
|
|
11
|
+
const [isOpen, setIsOpen] = useState(false)
|
|
12
|
+
const [isMaxWidthOpen, setIsMaxWidthOpen] = useState(false)
|
|
13
|
+
|
|
14
|
+
return (
|
|
15
|
+
<>
|
|
16
|
+
<Button onPress={() => setIsOpen(true)}>Open modal</Button>
|
|
17
|
+
<Modal {...args} isOpen={isOpen} onClose={() => setIsOpen(false)}>
|
|
18
|
+
<Typography>Test content</Typography>
|
|
19
|
+
</Modal>
|
|
20
|
+
<Spacer space={3} />
|
|
21
|
+
<Button onPress={() => setIsMaxWidthOpen(true)}>Open maxWidth modal</Button>
|
|
22
|
+
<Modal {...args} isOpen={isMaxWidthOpen} onClose={() => setIsMaxWidthOpen(false)} maxWidth>
|
|
23
|
+
<Typography variant={{ size: 'h2' }}>Test heading</Typography>
|
|
24
|
+
<Typography>Test content</Typography>
|
|
25
|
+
</Modal>
|
|
26
|
+
</>
|
|
27
|
+
)
|
|
28
|
+
}
|
|
29
|
+
Default.storyName = 'Modal'
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
/* eslint-disable react/no-multi-comp */
|
|
2
|
+
import React from 'react'
|
|
3
|
+
import { Text } from 'react-native'
|
|
4
|
+
|
|
5
|
+
import { Link, Notification, Typography } from '../../lib'
|
|
6
|
+
import { Container } from '../supports'
|
|
7
|
+
|
|
8
|
+
export default {
|
|
9
|
+
title: 'Base/Notification',
|
|
10
|
+
component: Notification
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
const Template = (args) => <Notification {...args} />
|
|
14
|
+
|
|
15
|
+
export const Default = Template.bind({})
|
|
16
|
+
Default.args = {
|
|
17
|
+
children: 'Your password was updated successfully.'
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export const Variants = () => {
|
|
21
|
+
const variants = [{}, { style: 'success' }, { style: 'warning' }, { style: 'error' }]
|
|
22
|
+
const propSets = [
|
|
23
|
+
{},
|
|
24
|
+
{ system: true },
|
|
25
|
+
{ dismissible: true },
|
|
26
|
+
{ system: true, dismissible: true }
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
const combinations = variants.flatMap((variant) => {
|
|
30
|
+
return propSets.map((propSet) => ({ variant, ...propSet }))
|
|
31
|
+
})
|
|
32
|
+
|
|
33
|
+
return combinations.map((props) => {
|
|
34
|
+
const label = [
|
|
35
|
+
props.variant.style ?? 'default',
|
|
36
|
+
props.system && 'system',
|
|
37
|
+
props.dismissible && 'dismissible'
|
|
38
|
+
]
|
|
39
|
+
.filter((value) => value)
|
|
40
|
+
.join(' ')
|
|
41
|
+
|
|
42
|
+
return (
|
|
43
|
+
<Container key={label}>
|
|
44
|
+
<Text>{label}</Text>
|
|
45
|
+
<Notification {...props}>
|
|
46
|
+
Tip: These services are best suited for large business organizations. Order products and
|
|
47
|
+
services at TELUS.com.
|
|
48
|
+
</Notification>
|
|
49
|
+
</Container>
|
|
50
|
+
)
|
|
51
|
+
})
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export const ContentTypes = () => {
|
|
55
|
+
return (
|
|
56
|
+
<>
|
|
57
|
+
<Container>
|
|
58
|
+
<Notification>A regular string content.</Notification>
|
|
59
|
+
</Container>
|
|
60
|
+
<Container>
|
|
61
|
+
<Notification>
|
|
62
|
+
<Typography>
|
|
63
|
+
Text components content. <Link href="https://telus.com/uds">Combined with a link.</Link>
|
|
64
|
+
</Typography>
|
|
65
|
+
</Notification>
|
|
66
|
+
</Container>
|
|
67
|
+
<Container>
|
|
68
|
+
<Notification variant={{ customVariant: true }}>
|
|
69
|
+
{({ textStyles, variant }) => (
|
|
70
|
+
<Text style={textStyles}>
|
|
71
|
+
A render function, to apply component styles and variant ({Object.keys(variant)[0]})
|
|
72
|
+
to Text and{' '}
|
|
73
|
+
<Link href="https://telus.com/uds" tokens={{ color: textStyles.color }}>
|
|
74
|
+
Link
|
|
75
|
+
</Link>
|
|
76
|
+
</Text>
|
|
77
|
+
)}
|
|
78
|
+
</Notification>
|
|
79
|
+
</Container>
|
|
80
|
+
</>
|
|
81
|
+
)
|
|
82
|
+
}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
/* eslint-disable react/no-multi-comp */
|
|
2
|
+
import React from 'react'
|
|
3
|
+
|
|
4
|
+
import { Progress, StackView, Typography } from '../../lib'
|
|
5
|
+
import { Container, EachParentType, parentTypesParams } from '../supports'
|
|
6
|
+
|
|
7
|
+
export default {
|
|
8
|
+
title: 'Base/Progress',
|
|
9
|
+
component: Progress.Bar,
|
|
10
|
+
args: { accessibilityLabel: 'Progress Bar' }
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export const Default = (args) => (
|
|
14
|
+
<Progress>
|
|
15
|
+
<Progress.Bar {...args} />
|
|
16
|
+
</Progress>
|
|
17
|
+
)
|
|
18
|
+
Default.storyName = 'Example'
|
|
19
|
+
Default.args = { percentage: 50 }
|
|
20
|
+
Default.argTypes = {
|
|
21
|
+
percentage: { control: { type: 'range', min: 0, max: 100 } }
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export const Variants = () => (
|
|
25
|
+
<Container>
|
|
26
|
+
<StackView>
|
|
27
|
+
<Progress>
|
|
28
|
+
<Progress.Bar
|
|
29
|
+
percentage={25}
|
|
30
|
+
variant={{ inactive: true }}
|
|
31
|
+
accessibilityLabel="Inactive progress bar"
|
|
32
|
+
/>
|
|
33
|
+
</Progress>
|
|
34
|
+
<Progress>
|
|
35
|
+
<Progress.Bar
|
|
36
|
+
percentage={50}
|
|
37
|
+
variant={{ negative: true }}
|
|
38
|
+
accessibilityLabel="Negative progress bar"
|
|
39
|
+
/>
|
|
40
|
+
</Progress>
|
|
41
|
+
<Progress>
|
|
42
|
+
<Progress.Bar percentage={75} accessibilityLabel="Progress bar" />
|
|
43
|
+
</Progress>
|
|
44
|
+
<Progress variant={{ size: 'mini' }}>
|
|
45
|
+
<Progress.Bar
|
|
46
|
+
percentage={25}
|
|
47
|
+
variant={{ inactive: true }}
|
|
48
|
+
accessibilityLabel="Inactive progress bar"
|
|
49
|
+
/>
|
|
50
|
+
</Progress>
|
|
51
|
+
<Progress variant={{ size: 'mini' }}>
|
|
52
|
+
<Progress.Bar
|
|
53
|
+
percentage={50}
|
|
54
|
+
variant={{ negative: true }}
|
|
55
|
+
accessibilityLabel="Negative progress bar"
|
|
56
|
+
/>
|
|
57
|
+
</Progress>
|
|
58
|
+
<Progress variant={{ size: 'mini' }}>
|
|
59
|
+
<Progress.Bar
|
|
60
|
+
percentage={75}
|
|
61
|
+
variant={{ size: 'mini' }}
|
|
62
|
+
accessibilityLabel="Minimal progress bar"
|
|
63
|
+
/>
|
|
64
|
+
</Progress>
|
|
65
|
+
</StackView>
|
|
66
|
+
</Container>
|
|
67
|
+
)
|
|
68
|
+
|
|
69
|
+
export const StackedBars = () => (
|
|
70
|
+
<Progress>
|
|
71
|
+
<Progress.Bar
|
|
72
|
+
percentage={75}
|
|
73
|
+
variant={{ inactive: true }}
|
|
74
|
+
accessibilityLabel="Stacked inactive progress bar"
|
|
75
|
+
/>
|
|
76
|
+
<Progress.Bar percentage={50} accessibilityLabel="Stacked progress bar" />
|
|
77
|
+
</Progress>
|
|
78
|
+
)
|
|
79
|
+
|
|
80
|
+
export const ParentTypes = (args) => (
|
|
81
|
+
<EachParentType componentThemeName="ProgressBar" {...args}>
|
|
82
|
+
{({ label, variant }) => (
|
|
83
|
+
<Container key={label}>
|
|
84
|
+
<Typography>{`${label} `}</Typography>
|
|
85
|
+
<Progress>
|
|
86
|
+
<Progress.Bar {...args} variant={variant} accessibilityLabel={label} />
|
|
87
|
+
</Progress>
|
|
88
|
+
</Container>
|
|
89
|
+
)}
|
|
90
|
+
</EachParentType>
|
|
91
|
+
)
|
|
92
|
+
ParentTypes.parameters = parentTypesParams
|
|
93
|
+
ParentTypes.args = { percentage: 75 }
|