@xqmsg/ui-core 0.23.2 → 0.24.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +20 -20
- package/README.md +40 -40
- package/dist/{78c9d6fd7766410f.svg → 89793640b494d7ea.svg} +9 -9
- package/dist/components/input/InputTypes.d.ts +1 -1
- package/dist/components/input/index.d.ts +3 -3
- package/dist/components/select/index.d.ts +6 -5
- package/dist/components/text/index.d.ts +2 -2
- package/dist/ui-core.cjs.development.js +12 -19
- package/dist/ui-core.cjs.development.js.map +1 -1
- package/dist/ui-core.cjs.production.min.js +1 -1
- package/dist/ui-core.cjs.production.min.js.map +1 -1
- package/dist/ui-core.esm.js +12 -19
- package/dist/ui-core.esm.js.map +1 -1
- package/package.json +118 -118
- package/src/components/banner/Banner.stories.tsx +100 -100
- package/src/components/banner/index.tsx +75 -73
- package/src/components/breadcrumbs/Breadcrumbs.stories.tsx +66 -66
- package/src/components/breadcrumbs/components/icon/index.tsx +38 -38
- package/src/components/breadcrumbs/components/label/index.tsx +20 -20
- package/src/components/breadcrumbs/index.tsx +48 -48
- package/src/components/button/Button.stories.tsx +140 -140
- package/src/components/button/google/GoogleButton.stories.tsx +23 -23
- package/src/components/button/google/index.tsx +29 -29
- package/src/components/button/index.tsx +51 -51
- package/src/components/button/microsoft/MicrosoftButton.stories.tsx +25 -25
- package/src/components/button/microsoft/index.tsx +29 -29
- package/src/components/button/spinner/SpinnerButton.stories.tsx +60 -60
- package/src/components/button/spinner/index.tsx +36 -36
- package/src/components/card/Card.stories.tsx +56 -56
- package/src/components/card/index.tsx +78 -78
- package/src/components/form/Form.stories.tsx +62 -62
- package/src/components/form/FormTypes.ts +20 -20
- package/src/components/form/hooks/useFormHandler.tsx +74 -74
- package/src/components/form/index.tsx +25 -25
- package/src/components/form/section/FormSection.stories.tsx +109 -109
- package/src/components/form/section/index.tsx +87 -87
- package/src/components/form/utils/formErrors.ts +34 -34
- package/src/components/icons/checkmark/checkmark.svg +3 -3
- package/src/components/icons/checkmark/index.tsx +13 -13
- package/src/components/icons/chevron/down/chevron-down.svg +3 -3
- package/src/components/icons/chevron/down/index.tsx +14 -14
- package/src/components/icons/chevron/right/chevron-right.svg +3 -3
- package/src/components/icons/chevron/right/index.tsx +13 -13
- package/src/components/icons/clock/clock.svg +3 -3
- package/src/components/icons/clock/index.tsx +13 -13
- package/src/components/icons/close/close.svg +3 -3
- package/src/components/icons/close/index.tsx +21 -21
- package/src/components/icons/dropdown/dropdown.svg +3 -3
- package/src/components/icons/dropdown/index.tsx +16 -16
- package/src/components/icons/error/error.svg +3 -3
- package/src/components/icons/error/index.tsx +13 -13
- package/src/components/icons/file/fill/file-fill.svg +4 -4
- package/src/components/icons/file/fill/index.tsx +13 -13
- package/src/components/icons/file/outline/file-outline.svg +3 -3
- package/src/components/icons/file/outline/index.tsx +13 -13
- package/src/components/icons/folder/add/fill/folder-add-fill.svg +3 -3
- package/src/components/icons/folder/add/fill/index.tsx +13 -13
- package/src/components/icons/folder/add/outline/folder-add-outline.svg +3 -3
- package/src/components/icons/folder/add/outline/index.tsx +15 -15
- package/src/components/icons/folder/fill/folder-fill-gradient.svg +33 -33
- package/src/components/icons/folder/fill/folder-fill.svg +4 -4
- package/src/components/icons/folder/fill/index.tsx +21 -21
- package/src/components/icons/folder/outline/folder-outline.svg +3 -3
- package/src/components/icons/folder/outline/index.tsx +13 -13
- package/src/components/icons/gear/GearIcon.tsx +36 -36
- package/src/components/icons/google/drive/index.tsx +13 -13
- package/src/components/icons/google/google.svg +13 -13
- package/src/components/icons/google/index.tsx +13 -13
- package/src/components/icons/group/group.svg +3 -3
- package/src/components/icons/group/index.tsx +13 -13
- package/src/components/icons/home/home.svg +3 -3
- package/src/components/icons/home/index.tsx +13 -13
- package/src/components/icons/image/image.svg +3 -3
- package/src/components/icons/image/index.tsx +13 -13
- package/src/components/icons/index.tsx +101 -101
- package/src/components/icons/link/index.tsx +13 -13
- package/src/components/icons/link/link.svg +4 -4
- package/src/components/icons/menu/index.tsx +13 -13
- package/src/components/icons/menu/menu.svg +3 -3
- package/src/components/icons/microsoft/index.tsx +13 -13
- package/src/components/icons/microsoft/microsoft.svg +9 -9
- package/src/components/icons/microsoft/onedrive/index.tsx +16 -16
- package/src/components/icons/neutral/index.tsx +14 -14
- package/src/components/icons/neutral/neutral.svg +3 -3
- package/src/components/icons/page/index.tsx +13 -13
- package/src/components/icons/page/page.svg +3 -3
- package/src/components/icons/positive/index.tsx +13 -13
- package/src/components/icons/positive/positive.svg +3 -3
- package/src/components/icons/question/index.tsx +13 -13
- package/src/components/icons/question/question.svg +3 -3
- package/src/components/icons/search/index.tsx +13 -13
- package/src/components/icons/search/search.svg +3 -3
- package/src/components/icons/services/index.tsx +13 -13
- package/src/components/icons/services/services.svg +3 -3
- package/src/components/icons/settings/index.tsx +14 -14
- package/src/components/icons/settings/settings.svg +6 -6
- package/src/components/icons/table/fill/index.tsx +13 -13
- package/src/components/icons/table/fill/table-fill.svg +3 -3
- package/src/components/icons/table/outline/index.tsx +13 -13
- package/src/components/icons/table/outline/table-outline.svg +3 -3
- package/src/components/icons/task/index.tsx +10 -10
- package/src/components/icons/task/task.svg +11 -11
- package/src/components/icons/trash/index.tsx +13 -13
- package/src/components/icons/trash/trash.svg +3 -3
- package/src/components/icons/vault/index.tsx +14 -14
- package/src/components/icons/video/index.tsx +13 -13
- package/src/components/icons/video/video.svg +3 -3
- package/src/components/icons/warning/index.tsx +13 -13
- package/src/components/icons/warning/warning.svg +3 -3
- package/src/components/icons/workspace/index.tsx +14 -14
- package/src/components/input/Input.stories.tsx +287 -287
- package/src/components/input/InputTypes.ts +83 -77
- package/src/components/input/StackedCheckbox/StackedCheckbox.tsx +44 -44
- package/src/components/input/StackedInput/StackedInput.tsx +60 -60
- package/src/components/input/StackedMultiSelect/index.tsx +349 -349
- package/src/components/input/StackedPilledInput/index.tsx +386 -386
- package/src/components/input/StackedRadio/StackedRadioGroup.tsx +38 -38
- package/src/components/input/StackedSelect/index.tsx +232 -232
- package/src/components/input/StackedSwitch/index.tsx +33 -33
- package/src/components/input/StackedTextarea/StackedTextarea.tsx +55 -55
- package/src/components/input/components/dropdown/index.tsx +111 -111
- package/src/components/input/components/label/index.tsx +35 -35
- package/src/components/input/components/token/Token.stories.tsx +25 -25
- package/src/components/input/components/token/index.tsx +45 -45
- package/src/components/input/index.tsx +299 -298
- package/src/components/layout/BorderedBox/index.tsx +30 -30
- package/src/components/layout/Layout.stories.tsx +40 -40
- package/src/components/layout/index.tsx +100 -100
- package/src/components/link/Link.stories.tsx +23 -23
- package/src/components/link/index.tsx +34 -34
- package/src/components/loading/LoadingIndicator.stories.tsx +45 -45
- package/src/components/loading/index.tsx +45 -45
- package/src/components/modal/Modal.stories.tsx +36 -36
- package/src/components/modal/components/action/index.tsx +37 -37
- package/src/components/modal/index.tsx +41 -41
- package/src/components/navigation/NavigationMenu.stories.tsx +85 -85
- package/src/components/navigation/components/header/index.tsx +27 -27
- package/src/components/navigation/components/items/index.tsx +76 -76
- package/src/components/navigation/index.tsx +87 -87
- package/src/components/select/index.tsx +139 -140
- package/src/components/table/Table.stories.tsx +63 -63
- package/src/components/table/TableTypes.ts +15 -15
- package/src/components/table/components/loading/index.tsx +45 -45
- package/src/components/table/components/text/index.tsx +23 -23
- package/src/components/table/empty/index.tsx +47 -47
- package/src/components/table/index.tsx +84 -84
- package/src/components/table/utils/generateTableColumns.ts +9 -9
- package/src/components/tabs/TabsWrapper.stories.tsx +85 -85
- package/src/components/tabs/index.tsx +39 -39
- package/src/components/text/Text.stories.tsx +59 -59
- package/src/components/text/index.tsx +16 -16
- package/src/components/toast/Toast.stories.tsx +52 -52
- package/src/components/toast/index.tsx +78 -78
- package/src/components/toolbar/Toolbar.stories.tsx +59 -59
- package/src/components/toolbar/components/actions/add/index.tsx +18 -18
- package/src/components/toolbar/components/actions/search/index.tsx +38 -38
- package/src/components/toolbar/components/actions/sort/index.tsx +49 -49
- package/src/components/toolbar/components/breadcrumbs/index.tsx +63 -63
- package/src/components/toolbar/components/breadcrumbs/item/index.tsx +72 -72
- package/src/components/toolbar/components/dropdown/index.tsx +107 -107
- package/src/components/toolbar/components/navigation/components/button/left/index.tsx +28 -28
- package/src/components/toolbar/components/navigation/components/button/left/left-arrow.svg +3 -3
- package/src/components/toolbar/components/navigation/components/button/right/index.tsx +27 -27
- package/src/components/toolbar/components/navigation/components/button/right/right-arrow.svg +3 -3
- package/src/components/toolbar/components/navigation/index.tsx +36 -36
- package/src/components/toolbar/index.tsx +55 -55
- package/src/hooks/useDeepEffect.tsx +22 -22
- package/src/hooks/useDidMountEffect.tsx +13 -13
- package/src/hooks/useOnOutsideClick.tsx +31 -31
- package/src/hooks/useToast.tsx +16 -16
- package/src/index.tsx +78 -78
- package/src/theme/components/alert.ts +60 -60
- package/src/theme/components/badge.ts +59 -59
- package/src/theme/components/button.ts +163 -163
- package/src/theme/components/checkbox.ts +28 -28
- package/src/theme/components/code.ts +16 -16
- package/src/theme/components/form-error.ts +31 -31
- package/src/theme/components/form-label.ts +17 -17
- package/src/theme/components/form.ts +29 -29
- package/src/theme/components/input.ts +65 -65
- package/src/theme/components/link.ts +118 -118
- package/src/theme/components/modal.ts +45 -45
- package/src/theme/components/select.ts +36 -36
- package/src/theme/components/switch.ts +89 -89
- package/src/theme/components/table.ts +42 -42
- package/src/theme/components/tabs.ts +255 -255
- package/src/theme/components/text.ts +93 -93
- package/src/theme/components/textarea.ts +42 -42
- package/src/theme/customXQChakraTheme.ts +54 -54
- package/src/theme/foundations/breakpoints.ts +18 -18
- package/src/theme/foundations/colors.ts +165 -165
- package/src/theme/foundations/shadows.ts +23 -23
- package/src/theme/foundations/typography.ts +62 -62
- package/src/theme/provider/index.tsx +21 -21
- package/src/theme/styles.ts +19 -19
- package/CHANGELOG.md +0 -468
|
@@ -1,59 +1,59 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { Meta, Story } from '@storybook/react';
|
|
3
|
-
import { Text, TextProps } from '.';
|
|
4
|
-
import textTheme from '../../theme/components/text';
|
|
5
|
-
import typography from '../../theme/foundations/typography';
|
|
6
|
-
|
|
7
|
-
const meta: Meta<TextProps> = {
|
|
8
|
-
title: 'Text example',
|
|
9
|
-
component: Text,
|
|
10
|
-
argTypes: {
|
|
11
|
-
children: {
|
|
12
|
-
control: {
|
|
13
|
-
type: 'text',
|
|
14
|
-
},
|
|
15
|
-
description:
|
|
16
|
-
'The text to be rendered to the screen - can also contain other React components',
|
|
17
|
-
},
|
|
18
|
-
variant: {
|
|
19
|
-
control: 'select',
|
|
20
|
-
options: Object.keys(textTheme.variants),
|
|
21
|
-
description: 'The `variant` of the `Text` component',
|
|
22
|
-
},
|
|
23
|
-
fontSize: {
|
|
24
|
-
control: 'select',
|
|
25
|
-
options: Object.values(typography.fontSizes),
|
|
26
|
-
description: 'The `fontSize` of the `Text` component',
|
|
27
|
-
},
|
|
28
|
-
fontWeight: {
|
|
29
|
-
control: 'select',
|
|
30
|
-
options: Object.values(typography.fontWeights),
|
|
31
|
-
description: 'The `fontWeight` of the `Text` component',
|
|
32
|
-
},
|
|
33
|
-
letterSpacing: {
|
|
34
|
-
control: 'select',
|
|
35
|
-
options: Object.values(typography.letterSpacings),
|
|
36
|
-
description: 'The `letterSpacing` of the `Text` component',
|
|
37
|
-
},
|
|
38
|
-
lineHeight: {
|
|
39
|
-
control: 'select',
|
|
40
|
-
options: Object.values(typography.lineHeights),
|
|
41
|
-
description: 'The `lineHeight` of the `Text` component',
|
|
42
|
-
},
|
|
43
|
-
color: {
|
|
44
|
-
control: { type: 'text' },
|
|
45
|
-
description: 'The `color` of the text',
|
|
46
|
-
},
|
|
47
|
-
},
|
|
48
|
-
parameters: {
|
|
49
|
-
controls: { expanded: true },
|
|
50
|
-
},
|
|
51
|
-
};
|
|
52
|
-
export default meta;
|
|
53
|
-
const Template: Story<TextProps> = args => <Text {...args} />;
|
|
54
|
-
|
|
55
|
-
export const Default = Template.bind({});
|
|
56
|
-
Default.args = {
|
|
57
|
-
children: 'Lorem Ipsum',
|
|
58
|
-
variant: 'header',
|
|
59
|
-
};
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Meta, Story } from '@storybook/react';
|
|
3
|
+
import { Text, TextProps } from '.';
|
|
4
|
+
import textTheme from '../../theme/components/text';
|
|
5
|
+
import typography from '../../theme/foundations/typography';
|
|
6
|
+
|
|
7
|
+
const meta: Meta<TextProps> = {
|
|
8
|
+
title: 'Text example',
|
|
9
|
+
component: Text,
|
|
10
|
+
argTypes: {
|
|
11
|
+
children: {
|
|
12
|
+
control: {
|
|
13
|
+
type: 'text',
|
|
14
|
+
},
|
|
15
|
+
description:
|
|
16
|
+
'The text to be rendered to the screen - can also contain other React components',
|
|
17
|
+
},
|
|
18
|
+
variant: {
|
|
19
|
+
control: 'select',
|
|
20
|
+
options: Object.keys(textTheme.variants),
|
|
21
|
+
description: 'The `variant` of the `Text` component',
|
|
22
|
+
},
|
|
23
|
+
fontSize: {
|
|
24
|
+
control: 'select',
|
|
25
|
+
options: Object.values(typography.fontSizes),
|
|
26
|
+
description: 'The `fontSize` of the `Text` component',
|
|
27
|
+
},
|
|
28
|
+
fontWeight: {
|
|
29
|
+
control: 'select',
|
|
30
|
+
options: Object.values(typography.fontWeights),
|
|
31
|
+
description: 'The `fontWeight` of the `Text` component',
|
|
32
|
+
},
|
|
33
|
+
letterSpacing: {
|
|
34
|
+
control: 'select',
|
|
35
|
+
options: Object.values(typography.letterSpacings),
|
|
36
|
+
description: 'The `letterSpacing` of the `Text` component',
|
|
37
|
+
},
|
|
38
|
+
lineHeight: {
|
|
39
|
+
control: 'select',
|
|
40
|
+
options: Object.values(typography.lineHeights),
|
|
41
|
+
description: 'The `lineHeight` of the `Text` component',
|
|
42
|
+
},
|
|
43
|
+
color: {
|
|
44
|
+
control: { type: 'text' },
|
|
45
|
+
description: 'The `color` of the text',
|
|
46
|
+
},
|
|
47
|
+
},
|
|
48
|
+
parameters: {
|
|
49
|
+
controls: { expanded: true },
|
|
50
|
+
},
|
|
51
|
+
};
|
|
52
|
+
export default meta;
|
|
53
|
+
const Template: Story<TextProps> = args => <Text {...args} />;
|
|
54
|
+
|
|
55
|
+
export const Default = Template.bind({});
|
|
56
|
+
Default.args = {
|
|
57
|
+
children: 'Lorem Ipsum',
|
|
58
|
+
variant: 'header',
|
|
59
|
+
};
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import React, { PropsWithChildren } from 'react';
|
|
2
|
-
import { Text as ChakraText } from '@chakra-ui/react';
|
|
3
|
-
import textTheme from '../../theme/components/text';
|
|
4
|
-
|
|
5
|
-
export
|
|
6
|
-
variant: keyof typeof textTheme.variants;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
/**
|
|
10
|
-
* A functional React component utilized to render the `Text` component. The component is mainly
|
|
11
|
-
* controlled by by the `variant` prop which determines `fontSize`, `fontWeight`, etc.
|
|
12
|
-
* Also extends `TypographyProps`.
|
|
13
|
-
*/
|
|
14
|
-
export const Text: React.FC<TextProps> = ({ variant, children }) => {
|
|
15
|
-
return <ChakraText variant={variant}>{children}</ChakraText>;
|
|
16
|
-
};
|
|
1
|
+
import React, { PropsWithChildren } from 'react';
|
|
2
|
+
import { Text as ChakraText } from '@chakra-ui/react';
|
|
3
|
+
import textTheme from '../../theme/components/text';
|
|
4
|
+
|
|
5
|
+
export type TextProps = PropsWithChildren & {
|
|
6
|
+
variant: keyof typeof textTheme.variants;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* A functional React component utilized to render the `Text` component. The component is mainly
|
|
11
|
+
* controlled by by the `variant` prop which determines `fontSize`, `fontWeight`, etc.
|
|
12
|
+
* Also extends `TypographyProps`.
|
|
13
|
+
*/
|
|
14
|
+
export const Text: React.FC<TextProps> = ({ variant, children }) => {
|
|
15
|
+
return <ChakraText variant={variant}>{children}</ChakraText>;
|
|
16
|
+
};
|
|
@@ -1,52 +1,52 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { Meta, Story } from '@storybook/react';
|
|
3
|
-
import { Toast, ToastProps } from '.';
|
|
4
|
-
import alertTheme from '../../theme/components/alert';
|
|
5
|
-
import { Box } from '@chakra-ui/react';
|
|
6
|
-
|
|
7
|
-
const meta: Meta<ToastProps> = {
|
|
8
|
-
title: 'Toast example',
|
|
9
|
-
component: Toast,
|
|
10
|
-
argTypes: {
|
|
11
|
-
variant: {
|
|
12
|
-
control: 'select',
|
|
13
|
-
options: Object.keys(alertTheme.variants),
|
|
14
|
-
description: 'The `variant` of the `Toast` component',
|
|
15
|
-
},
|
|
16
|
-
message: {
|
|
17
|
-
description: 'The `message` of the `Toast` component',
|
|
18
|
-
},
|
|
19
|
-
buttonText: {
|
|
20
|
-
description: "The `buttonText` of the `Toast` component's action button",
|
|
21
|
-
},
|
|
22
|
-
onClick: {
|
|
23
|
-
description:
|
|
24
|
-
"The `onClick` handler of the `Toast` component's action button",
|
|
25
|
-
},
|
|
26
|
-
},
|
|
27
|
-
parameters: {
|
|
28
|
-
controls: { expanded: true },
|
|
29
|
-
},
|
|
30
|
-
};
|
|
31
|
-
export default meta;
|
|
32
|
-
const Template: Story<ToastProps> = args => (
|
|
33
|
-
<>
|
|
34
|
-
<Box mb="20px">
|
|
35
|
-
<Toast {...args} variant="positive" message="Positive message." />
|
|
36
|
-
</Box>
|
|
37
|
-
<Box mb="20px">
|
|
38
|
-
<Toast {...args} variant="warning" message="Warning message." />
|
|
39
|
-
</Box>
|
|
40
|
-
<Box mb="20px">
|
|
41
|
-
<Toast {...args} variant="error" message="Error message." />
|
|
42
|
-
</Box>
|
|
43
|
-
<Box mb="20px">
|
|
44
|
-
<Toast {...args} variant="neutral" message="Neutral message." />
|
|
45
|
-
</Box>
|
|
46
|
-
</>
|
|
47
|
-
);
|
|
48
|
-
|
|
49
|
-
export const Default = Template.bind({});
|
|
50
|
-
Default.args = {
|
|
51
|
-
buttonText: 'Action',
|
|
52
|
-
};
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Meta, Story } from '@storybook/react';
|
|
3
|
+
import { Toast, ToastProps } from '.';
|
|
4
|
+
import alertTheme from '../../theme/components/alert';
|
|
5
|
+
import { Box } from '@chakra-ui/react';
|
|
6
|
+
|
|
7
|
+
const meta: Meta<ToastProps> = {
|
|
8
|
+
title: 'Toast example',
|
|
9
|
+
component: Toast,
|
|
10
|
+
argTypes: {
|
|
11
|
+
variant: {
|
|
12
|
+
control: 'select',
|
|
13
|
+
options: Object.keys(alertTheme.variants),
|
|
14
|
+
description: 'The `variant` of the `Toast` component',
|
|
15
|
+
},
|
|
16
|
+
message: {
|
|
17
|
+
description: 'The `message` of the `Toast` component',
|
|
18
|
+
},
|
|
19
|
+
buttonText: {
|
|
20
|
+
description: "The `buttonText` of the `Toast` component's action button",
|
|
21
|
+
},
|
|
22
|
+
onClick: {
|
|
23
|
+
description:
|
|
24
|
+
"The `onClick` handler of the `Toast` component's action button",
|
|
25
|
+
},
|
|
26
|
+
},
|
|
27
|
+
parameters: {
|
|
28
|
+
controls: { expanded: true },
|
|
29
|
+
},
|
|
30
|
+
};
|
|
31
|
+
export default meta;
|
|
32
|
+
const Template: Story<ToastProps> = args => (
|
|
33
|
+
<>
|
|
34
|
+
<Box mb="20px">
|
|
35
|
+
<Toast {...args} variant="positive" message="Positive message." />
|
|
36
|
+
</Box>
|
|
37
|
+
<Box mb="20px">
|
|
38
|
+
<Toast {...args} variant="warning" message="Warning message." />
|
|
39
|
+
</Box>
|
|
40
|
+
<Box mb="20px">
|
|
41
|
+
<Toast {...args} variant="error" message="Error message." />
|
|
42
|
+
</Box>
|
|
43
|
+
<Box mb="20px">
|
|
44
|
+
<Toast {...args} variant="neutral" message="Neutral message." />
|
|
45
|
+
</Box>
|
|
46
|
+
</>
|
|
47
|
+
);
|
|
48
|
+
|
|
49
|
+
export const Default = Template.bind({});
|
|
50
|
+
Default.args = {
|
|
51
|
+
buttonText: 'Action',
|
|
52
|
+
};
|
|
@@ -1,78 +1,78 @@
|
|
|
1
|
-
import React, { ReactNode, useMemo } from 'react';
|
|
2
|
-
import { Box, Button, Flex, Text } from '@chakra-ui/react';
|
|
3
|
-
import { Error } from '../icons/error';
|
|
4
|
-
import { Neutral } from '../icons/neutral';
|
|
5
|
-
import { Positive } from '../icons/positive';
|
|
6
|
-
import { Warning } from '../icons/warning';
|
|
7
|
-
import colors from '../../theme/foundations/colors';
|
|
8
|
-
|
|
9
|
-
export type ToastVariant = 'positive' | 'warning' | 'error' | 'neutral';
|
|
10
|
-
|
|
11
|
-
export interface ToastProps {
|
|
12
|
-
variant: ToastVariant;
|
|
13
|
-
message: ReactNode;
|
|
14
|
-
buttonText?: string;
|
|
15
|
-
onClick?: () => void;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
/**
|
|
19
|
-
* A functional React component utilized to render the `Toast` component
|
|
20
|
-
*/
|
|
21
|
-
export const Toast: React.FC<ToastProps> = ({
|
|
22
|
-
variant,
|
|
23
|
-
message,
|
|
24
|
-
buttonText,
|
|
25
|
-
onClick,
|
|
26
|
-
}) => {
|
|
27
|
-
const Icon = useMemo(() => {
|
|
28
|
-
switch (variant) {
|
|
29
|
-
case 'error':
|
|
30
|
-
return <Error boxSize="16px" />;
|
|
31
|
-
case 'neutral':
|
|
32
|
-
return <Neutral boxSize="16px" color="white" />;
|
|
33
|
-
case 'positive':
|
|
34
|
-
return <Positive boxSize="16px" />;
|
|
35
|
-
case 'warning':
|
|
36
|
-
return <Warning boxSize="16px" />;
|
|
37
|
-
default:
|
|
38
|
-
return null;
|
|
39
|
-
}
|
|
40
|
-
}, [variant]);
|
|
41
|
-
|
|
42
|
-
return (
|
|
43
|
-
<Flex
|
|
44
|
-
alignItems="center"
|
|
45
|
-
width="fit-content"
|
|
46
|
-
height="32px"
|
|
47
|
-
p="8px"
|
|
48
|
-
bg="#151515D9"
|
|
49
|
-
borderColor="#9999991A"
|
|
50
|
-
borderRadius="8px"
|
|
51
|
-
>
|
|
52
|
-
<Box pr="8px">{Icon}</Box>
|
|
53
|
-
<Text pr="16px" fontSize="13px" color={colors.label.primary.dark}>
|
|
54
|
-
{message}
|
|
55
|
-
</Text>
|
|
56
|
-
{onClick && buttonText && (
|
|
57
|
-
<Flex ml="auto" justifyContent="flex-end">
|
|
58
|
-
<Button
|
|
59
|
-
color={colors.fill.action}
|
|
60
|
-
style={{
|
|
61
|
-
background: 'transparent',
|
|
62
|
-
border: 'transparent',
|
|
63
|
-
boxShadow: 'none',
|
|
64
|
-
}}
|
|
65
|
-
_hover={{
|
|
66
|
-
bg: 'transparent',
|
|
67
|
-
border: 'transparent',
|
|
68
|
-
boxShadow: 'none',
|
|
69
|
-
}}
|
|
70
|
-
onClick={onClick}
|
|
71
|
-
>
|
|
72
|
-
{buttonText}
|
|
73
|
-
</Button>
|
|
74
|
-
</Flex>
|
|
75
|
-
)}
|
|
76
|
-
</Flex>
|
|
77
|
-
);
|
|
78
|
-
};
|
|
1
|
+
import React, { ReactNode, useMemo } from 'react';
|
|
2
|
+
import { Box, Button, Flex, Text } from '@chakra-ui/react';
|
|
3
|
+
import { Error } from '../icons/error';
|
|
4
|
+
import { Neutral } from '../icons/neutral';
|
|
5
|
+
import { Positive } from '../icons/positive';
|
|
6
|
+
import { Warning } from '../icons/warning';
|
|
7
|
+
import colors from '../../theme/foundations/colors';
|
|
8
|
+
|
|
9
|
+
export type ToastVariant = 'positive' | 'warning' | 'error' | 'neutral';
|
|
10
|
+
|
|
11
|
+
export interface ToastProps {
|
|
12
|
+
variant: ToastVariant;
|
|
13
|
+
message: ReactNode;
|
|
14
|
+
buttonText?: string;
|
|
15
|
+
onClick?: () => void;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* A functional React component utilized to render the `Toast` component
|
|
20
|
+
*/
|
|
21
|
+
export const Toast: React.FC<ToastProps> = ({
|
|
22
|
+
variant,
|
|
23
|
+
message,
|
|
24
|
+
buttonText,
|
|
25
|
+
onClick,
|
|
26
|
+
}) => {
|
|
27
|
+
const Icon = useMemo(() => {
|
|
28
|
+
switch (variant) {
|
|
29
|
+
case 'error':
|
|
30
|
+
return <Error boxSize="16px" />;
|
|
31
|
+
case 'neutral':
|
|
32
|
+
return <Neutral boxSize="16px" color="white" />;
|
|
33
|
+
case 'positive':
|
|
34
|
+
return <Positive boxSize="16px" />;
|
|
35
|
+
case 'warning':
|
|
36
|
+
return <Warning boxSize="16px" />;
|
|
37
|
+
default:
|
|
38
|
+
return null;
|
|
39
|
+
}
|
|
40
|
+
}, [variant]);
|
|
41
|
+
|
|
42
|
+
return (
|
|
43
|
+
<Flex
|
|
44
|
+
alignItems="center"
|
|
45
|
+
width="fit-content"
|
|
46
|
+
height="32px"
|
|
47
|
+
p="8px"
|
|
48
|
+
bg="#151515D9"
|
|
49
|
+
borderColor="#9999991A"
|
|
50
|
+
borderRadius="8px"
|
|
51
|
+
>
|
|
52
|
+
<Box pr="8px">{Icon}</Box>
|
|
53
|
+
<Text pr="16px" fontSize="13px" color={colors.label.primary.dark}>
|
|
54
|
+
{message}
|
|
55
|
+
</Text>
|
|
56
|
+
{onClick && buttonText && (
|
|
57
|
+
<Flex ml="auto" justifyContent="flex-end">
|
|
58
|
+
<Button
|
|
59
|
+
color={colors.fill.action}
|
|
60
|
+
style={{
|
|
61
|
+
background: 'transparent',
|
|
62
|
+
border: 'transparent',
|
|
63
|
+
boxShadow: 'none',
|
|
64
|
+
}}
|
|
65
|
+
_hover={{
|
|
66
|
+
bg: 'transparent',
|
|
67
|
+
border: 'transparent',
|
|
68
|
+
boxShadow: 'none',
|
|
69
|
+
}}
|
|
70
|
+
onClick={onClick}
|
|
71
|
+
>
|
|
72
|
+
{buttonText}
|
|
73
|
+
</Button>
|
|
74
|
+
</Flex>
|
|
75
|
+
)}
|
|
76
|
+
</Flex>
|
|
77
|
+
);
|
|
78
|
+
};
|
|
@@ -1,59 +1,59 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { Meta, Story } from '@storybook/react';
|
|
3
|
-
|
|
4
|
-
import { Box } from '@chakra-ui/react';
|
|
5
|
-
import { Toolbar, ToolbarProps } from '.';
|
|
6
|
-
import { useState } from '@storybook/addons';
|
|
7
|
-
import { Button } from '../button';
|
|
8
|
-
|
|
9
|
-
const meta: Meta<ToolbarProps> = {
|
|
10
|
-
title: 'Toolbar example',
|
|
11
|
-
component: Toolbar,
|
|
12
|
-
argTypes: {},
|
|
13
|
-
parameters: {
|
|
14
|
-
controls: { expanded: true },
|
|
15
|
-
},
|
|
16
|
-
};
|
|
17
|
-
export default meta;
|
|
18
|
-
const Template: Story<ToolbarProps> = args => {
|
|
19
|
-
const [currentPage, setCurrentPage] = useState('howdy');
|
|
20
|
-
const [searchValue, setSearchValue] = useState('');
|
|
21
|
-
const pageList = [
|
|
22
|
-
{ label: 'hi', handler: () => setCurrentPage('hi') },
|
|
23
|
-
{ label: 'hey', handler: () => setCurrentPage('hey') },
|
|
24
|
-
{ label: 'hello', handler: () => setCurrentPage('hello') },
|
|
25
|
-
{ label: 'howdy', handler: () => setCurrentPage('howdy') },
|
|
26
|
-
];
|
|
27
|
-
|
|
28
|
-
const sortOptions = [
|
|
29
|
-
{ label: 'Sort by', value: 'section_header', sortValue: 0 },
|
|
30
|
-
{ label: 'Name', value: 'name', sortValue: 1 },
|
|
31
|
-
{ label: 'Type', value: 'type', sortValue: 2 },
|
|
32
|
-
{ label: 'Date Last Opened', value: 'date_last_opened', sortValue: 3 },
|
|
33
|
-
{ label: 'Date Added', value: 'date_added', sortValue: 4 },
|
|
34
|
-
{ label: 'Date Modified', value: 'date_modified', sortValue: 5 },
|
|
35
|
-
{ label: 'Date Created', value: 'date_created', sortValue: 5 },
|
|
36
|
-
{ label: 'Size', value: 'size', sortValue: 5 },
|
|
37
|
-
];
|
|
38
|
-
|
|
39
|
-
return (
|
|
40
|
-
<Box>
|
|
41
|
-
<Toolbar
|
|
42
|
-
{...args}
|
|
43
|
-
pageList={pageList}
|
|
44
|
-
currentPage={currentPage}
|
|
45
|
-
backButtonDisabled={false}
|
|
46
|
-
>
|
|
47
|
-
<Button
|
|
48
|
-
variant="secondary"
|
|
49
|
-
text="Sign Out"
|
|
50
|
-
width="variable"
|
|
51
|
-
ariaLabel="button"
|
|
52
|
-
/>
|
|
53
|
-
</Toolbar>
|
|
54
|
-
</Box>
|
|
55
|
-
);
|
|
56
|
-
};
|
|
57
|
-
|
|
58
|
-
export const Default = Template.bind({});
|
|
59
|
-
Default.args = {};
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Meta, Story } from '@storybook/react';
|
|
3
|
+
|
|
4
|
+
import { Box } from '@chakra-ui/react';
|
|
5
|
+
import { Toolbar, ToolbarProps } from '.';
|
|
6
|
+
import { useState } from '@storybook/addons';
|
|
7
|
+
import { Button } from '../button';
|
|
8
|
+
|
|
9
|
+
const meta: Meta<ToolbarProps> = {
|
|
10
|
+
title: 'Toolbar example',
|
|
11
|
+
component: Toolbar,
|
|
12
|
+
argTypes: {},
|
|
13
|
+
parameters: {
|
|
14
|
+
controls: { expanded: true },
|
|
15
|
+
},
|
|
16
|
+
};
|
|
17
|
+
export default meta;
|
|
18
|
+
const Template: Story<ToolbarProps> = args => {
|
|
19
|
+
const [currentPage, setCurrentPage] = useState('howdy');
|
|
20
|
+
const [searchValue, setSearchValue] = useState('');
|
|
21
|
+
const pageList = [
|
|
22
|
+
{ label: 'hi', handler: () => setCurrentPage('hi') },
|
|
23
|
+
{ label: 'hey', handler: () => setCurrentPage('hey') },
|
|
24
|
+
{ label: 'hello', handler: () => setCurrentPage('hello') },
|
|
25
|
+
{ label: 'howdy', handler: () => setCurrentPage('howdy') },
|
|
26
|
+
];
|
|
27
|
+
|
|
28
|
+
const sortOptions = [
|
|
29
|
+
{ label: 'Sort by', value: 'section_header', sortValue: 0 },
|
|
30
|
+
{ label: 'Name', value: 'name', sortValue: 1 },
|
|
31
|
+
{ label: 'Type', value: 'type', sortValue: 2 },
|
|
32
|
+
{ label: 'Date Last Opened', value: 'date_last_opened', sortValue: 3 },
|
|
33
|
+
{ label: 'Date Added', value: 'date_added', sortValue: 4 },
|
|
34
|
+
{ label: 'Date Modified', value: 'date_modified', sortValue: 5 },
|
|
35
|
+
{ label: 'Date Created', value: 'date_created', sortValue: 5 },
|
|
36
|
+
{ label: 'Size', value: 'size', sortValue: 5 },
|
|
37
|
+
];
|
|
38
|
+
|
|
39
|
+
return (
|
|
40
|
+
<Box>
|
|
41
|
+
<Toolbar
|
|
42
|
+
{...args}
|
|
43
|
+
pageList={pageList}
|
|
44
|
+
currentPage={currentPage}
|
|
45
|
+
backButtonDisabled={false}
|
|
46
|
+
>
|
|
47
|
+
<Button
|
|
48
|
+
variant="secondary"
|
|
49
|
+
text="Sign Out"
|
|
50
|
+
width="variable"
|
|
51
|
+
ariaLabel="button"
|
|
52
|
+
/>
|
|
53
|
+
</Toolbar>
|
|
54
|
+
</Box>
|
|
55
|
+
);
|
|
56
|
+
};
|
|
57
|
+
|
|
58
|
+
export const Default = Template.bind({});
|
|
59
|
+
Default.args = {};
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { Box } from '@chakra-ui/react';
|
|
3
|
-
import { FolderAddOutline } from 'src/components/icons';
|
|
4
|
-
|
|
5
|
-
export interface AddProps {
|
|
6
|
-
onClick: () => void;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
/**
|
|
10
|
-
* A functional React component utilized to render the `Add` component
|
|
11
|
-
*/
|
|
12
|
-
export const Add: React.FC<AddProps> = ({ onClick }) => {
|
|
13
|
-
return (
|
|
14
|
-
<Box mx="8px" cursor="pointer" onClick={onClick}>
|
|
15
|
-
<FolderAddOutline boxSize="16px" />
|
|
16
|
-
</Box>
|
|
17
|
-
);
|
|
18
|
-
};
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Box } from '@chakra-ui/react';
|
|
3
|
+
import { FolderAddOutline } from 'src/components/icons';
|
|
4
|
+
|
|
5
|
+
export interface AddProps {
|
|
6
|
+
onClick: () => void;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* A functional React component utilized to render the `Add` component
|
|
11
|
+
*/
|
|
12
|
+
export const Add: React.FC<AddProps> = ({ onClick }) => {
|
|
13
|
+
return (
|
|
14
|
+
<Box mx="8px" cursor="pointer" onClick={onClick}>
|
|
15
|
+
<FolderAddOutline boxSize="16px" />
|
|
16
|
+
</Box>
|
|
17
|
+
);
|
|
18
|
+
};
|
|
@@ -1,38 +1,38 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { Box, useMediaQuery } from '@chakra-ui/react';
|
|
3
|
-
import { Search as SearchIcon } from '../../../../icons';
|
|
4
|
-
import StackedInput from '../../../..//input/StackedInput/StackedInput';
|
|
5
|
-
|
|
6
|
-
export interface SearchProps {
|
|
7
|
-
searchValue: string;
|
|
8
|
-
onClick: () => void;
|
|
9
|
-
onChange: (value: string) => void;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
/**
|
|
13
|
-
* A functional React component utilized to render the `Search` component
|
|
14
|
-
*/
|
|
15
|
-
export const Search: React.FC<SearchProps> = ({
|
|
16
|
-
searchValue,
|
|
17
|
-
onClick,
|
|
18
|
-
onChange,
|
|
19
|
-
}) => {
|
|
20
|
-
const [breakpoint600] = useMediaQuery('(max-width: 600px)');
|
|
21
|
-
|
|
22
|
-
return (
|
|
23
|
-
<Box>
|
|
24
|
-
{breakpoint600 ? (
|
|
25
|
-
<Box cursor="pointer" onClick={onClick}>
|
|
26
|
-
<SearchIcon boxSize="16px" />
|
|
27
|
-
</Box>
|
|
28
|
-
) : (
|
|
29
|
-
<StackedInput
|
|
30
|
-
placeholder="Search..."
|
|
31
|
-
name="search"
|
|
32
|
-
value={searchValue}
|
|
33
|
-
onChange={e => onChange(e.target.value)}
|
|
34
|
-
/>
|
|
35
|
-
)}
|
|
36
|
-
</Box>
|
|
37
|
-
);
|
|
38
|
-
};
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Box, useMediaQuery } from '@chakra-ui/react';
|
|
3
|
+
import { Search as SearchIcon } from '../../../../icons';
|
|
4
|
+
import StackedInput from '../../../..//input/StackedInput/StackedInput';
|
|
5
|
+
|
|
6
|
+
export interface SearchProps {
|
|
7
|
+
searchValue: string;
|
|
8
|
+
onClick: () => void;
|
|
9
|
+
onChange: (value: string) => void;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* A functional React component utilized to render the `Search` component
|
|
14
|
+
*/
|
|
15
|
+
export const Search: React.FC<SearchProps> = ({
|
|
16
|
+
searchValue,
|
|
17
|
+
onClick,
|
|
18
|
+
onChange,
|
|
19
|
+
}) => {
|
|
20
|
+
const [breakpoint600] = useMediaQuery('(max-width: 600px)');
|
|
21
|
+
|
|
22
|
+
return (
|
|
23
|
+
<Box>
|
|
24
|
+
{breakpoint600 ? (
|
|
25
|
+
<Box cursor="pointer" onClick={onClick}>
|
|
26
|
+
<SearchIcon boxSize="16px" />
|
|
27
|
+
</Box>
|
|
28
|
+
) : (
|
|
29
|
+
<StackedInput
|
|
30
|
+
placeholder="Search..."
|
|
31
|
+
name="search"
|
|
32
|
+
value={searchValue}
|
|
33
|
+
onChange={e => onChange(e.target.value)}
|
|
34
|
+
/>
|
|
35
|
+
)}
|
|
36
|
+
</Box>
|
|
37
|
+
);
|
|
38
|
+
};
|