@omniumretail/component-library 1.0.70 → 1.0.72
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/.storybook/main.js +16 -16
- package/.storybook/preview-head.html +20 -20
- package/.storybook/preview.js +27 -27
- package/README.md +54 -54
- package/bitbucket-pipelines.yml +94 -94
- package/dist/bundle.js +246 -290
- package/dist/types/components/AnalyticsBar/AnalyticsBar.stories.d.ts +5 -5
- package/dist/types/components/AnalyticsBar/helpers/codeMutation.d.ts +4 -4
- package/dist/types/components/AnalyticsBar/index.d.ts +2 -2
- package/dist/types/components/AnalyticsBar/interfaces/analyticsBar.d.ts +12 -12
- package/dist/types/components/Button/Button.stories.d.ts +6 -6
- package/dist/types/components/Button/index.d.ts +7 -7
- package/dist/types/components/Category/Category.stories.d.ts +4 -4
- package/dist/types/components/Category/CategoryContent/index.d.ts +7 -7
- package/dist/types/components/Category/CategorySidebar/index.d.ts +26 -26
- package/dist/types/components/Category/index.d.ts +7 -7
- package/dist/types/components/CategoryReadOnly/CategoryReadOnly.stories.d.ts +4 -4
- package/dist/types/components/CategoryReadOnly/evaluationOptions.d.ts +10 -10
- package/dist/types/components/CategoryReadOnly/index.d.ts +9 -9
- package/dist/types/components/CategoryResponse/CategoryResponse.stories.d.ts +4 -4
- package/dist/types/components/CategoryResponse/evaluationOptions.d.ts +10 -10
- package/dist/types/components/CategoryResponse/index.d.ts +9 -9
- package/dist/types/components/DatePicker/DatePicker.stories.d.ts +5 -5
- package/dist/types/components/DatePicker/index.d.ts +8 -8
- package/dist/types/components/DatePickerTag/DatePickerTag.stories.d.ts +5 -5
- package/dist/types/components/DatePickerTag/index.d.ts +6 -6
- package/dist/types/components/Footer/Footer.stories.d.ts +5 -5
- package/dist/types/components/Footer/index.d.ts +4 -4
- package/dist/types/components/Input/Input.stories.d.ts +5 -5
- package/dist/types/components/Input/index.d.ts +10 -10
- package/dist/types/components/InputCountryCode/index.d.ts +10 -10
- package/dist/types/components/InputCountryCode/inputCountryCode.stories.d.ts +5 -5
- package/dist/types/components/Label/Label.stories.d.ts +6 -6
- package/dist/types/components/Label/index.d.ts +7 -7
- package/dist/types/components/Link/Link.stories.d.ts +7 -7
- package/dist/types/components/Link/index.d.ts +7 -7
- package/dist/types/components/Menu/Menu.stories.d.ts +5 -5
- package/dist/types/components/Menu/helpers/codeMutation.d.ts +4 -4
- package/dist/types/components/Menu/index.d.ts +3 -2
- package/dist/types/components/ModalConfirmation/ModalConfirmation.stories.d.ts +5 -5
- package/dist/types/components/ModalConfirmation/ModalStatusList.d.ts +5 -5
- package/dist/types/components/ModalConfirmation/index.d.ts +9 -9
- package/dist/types/components/ModalWithTable/ModalWithTable.stories.d.ts +5 -5
- package/dist/types/components/ModalWithTable/index.d.ts +13 -13
- package/dist/types/components/Navigation/Navigation.stories.d.ts +5 -5
- package/dist/types/components/Navigation/index.d.ts +10 -10
- package/dist/types/components/Notification/Notification.stories.d.ts +5 -5
- package/dist/types/components/Notification/index.d.ts +9 -9
- package/dist/types/components/Questions/Questions.stories.d.ts +4 -4
- package/dist/types/components/Questions/SingleQuestion/index.d.ts +1 -1
- package/dist/types/components/Questions/index.d.ts +5 -5
- package/dist/types/components/Radio/Radio.stories.d.ts +5 -5
- package/dist/types/components/Radio/index.d.ts +10 -10
- package/dist/types/components/Select/Select.stories.d.ts +6 -6
- package/dist/types/components/Select/index.d.ts +5 -5
- package/dist/types/components/Separator/Separator.stories.d.ts +6 -6
- package/dist/types/components/Separator/index.d.ts +11 -11
- package/dist/types/components/Sidebar/Sidebar.stories.d.ts +6 -6
- package/dist/types/components/Sidebar/index.d.ts +15 -15
- package/dist/types/components/Switch/Switch.stories.d.ts +5 -5
- package/dist/types/components/Switch/index.d.ts +2 -2
- package/dist/types/components/Table/Table.stories.d.ts +9 -9
- package/dist/types/components/Table/index.d.ts +37 -36
- package/dist/types/components/Tag/Tag.stories.d.ts +5 -5
- package/dist/types/components/Tag/index.d.ts +8 -8
- package/dist/types/components/Upload/Upload.stories.d.ts +4 -4
- package/dist/types/components/Upload/index.d.ts +8 -8
- package/dist/types/components/UserInfo/UserInfo.stories.d.ts +4 -4
- package/dist/types/components/UserInfo/index.d.ts +8 -8
- package/dist/types/components/index.d.ts +25 -25
- package/dist/types/constants/i18n.d.ts +1 -1
- package/dist/types/constants/translationHelper.d.ts +2 -2
- package/dist/types/index.d.ts +2 -2
- package/package.json +198 -198
- package/src/assets/scss/_global.scss +89 -89
- package/src/assets/scss/index.scss +2 -2
- package/src/components/AnalyticsBar/AnalyticsBar.stories.tsx +236 -236
- package/src/components/AnalyticsBar/helpers/codeMutation.tsx +19 -19
- package/src/components/AnalyticsBar/index.tsx +76 -76
- package/src/components/AnalyticsBar/interfaces/analyticsBar.tsx +13 -13
- package/src/components/AnalyticsBar/styles.module.scss +108 -108
- package/src/components/Button/Button.stories.tsx +26 -26
- package/src/components/Button/index.tsx +24 -24
- package/src/components/Button/styles.module.scss +65 -65
- package/src/components/Category/Category.stories.tsx +88 -88
- package/src/components/Category/CategoryContent/index.tsx +188 -188
- package/src/components/Category/CategoryContent/styles.module.scss +51 -51
- package/src/components/Category/CategorySidebar/index.tsx +268 -268
- package/src/components/Category/CategorySidebar/styles.module.scss +28 -28
- package/src/components/Category/index.tsx +76 -76
- package/src/components/Category/styles.module.scss +13 -13
- package/src/components/CategoryReadOnly/CategoryReadOnly.stories.tsx +270 -270
- package/src/components/CategoryReadOnly/evaluationOptions.tsx +81 -81
- package/src/components/CategoryReadOnly/index.tsx +254 -254
- package/src/components/CategoryReadOnly/styles.module.scss +184 -184
- package/src/components/CategoryResponse/CategoryResponse.stories.tsx +251 -251
- package/src/components/CategoryResponse/evaluationOptions.tsx +81 -81
- package/src/components/CategoryResponse/index.tsx +277 -277
- package/src/components/CategoryResponse/styles.module.scss +180 -180
- package/src/components/DatePicker/DatePicker.stories.tsx +16 -16
- package/src/components/DatePicker/index.tsx +38 -38
- package/src/components/DatePicker/styles.module.scss +3 -3
- package/src/components/DatePickerTag/DatePickerTag.stories.tsx +19 -19
- package/src/components/DatePickerTag/index.tsx +89 -89
- package/src/components/DatePickerTag/styles.module.scss +31 -31
- package/src/components/Footer/Footer.stories.tsx +14 -14
- package/src/components/Footer/index.tsx +38 -38
- package/src/components/Footer/styles.module.scss +38 -38
- package/src/components/Input/Input.stories.tsx +13 -13
- package/src/components/Input/index.tsx +31 -31
- package/src/components/Input/styles.module.scss +8 -8
- package/src/components/InputCountryCode/index.tsx +75 -75
- package/src/components/InputCountryCode/inputCountryCode.stories.tsx +55 -55
- package/src/components/InputCountryCode/styles.module.scss +3 -3
- package/src/components/Label/Label.stories.tsx +21 -21
- package/src/components/Label/index.tsx +19 -19
- package/src/components/Label/styles.module.scss +16 -16
- package/src/components/Link/Link.stories.tsx +30 -30
- package/src/components/Link/index.tsx +21 -21
- package/src/components/Link/styles.module.scss +24 -24
- package/src/components/Menu/Menu.stories.tsx +178 -178
- package/src/components/Menu/helpers/codeMutation.tsx +19 -19
- package/src/components/Menu/index.tsx +23 -23
- package/src/components/ModalConfirmation/ModalConfirmation.stories.tsx +40 -40
- package/src/components/ModalConfirmation/ModalStatusList.tsx +5 -5
- package/src/components/ModalConfirmation/index.tsx +70 -70
- package/src/components/ModalConfirmation/styles.module.scss +62 -62
- package/src/components/ModalWithTable/ModalWithTable.stories.tsx +96 -96
- package/src/components/ModalWithTable/index.tsx +232 -232
- package/src/components/ModalWithTable/styles.module.scss +77 -77
- package/src/components/Navigation/Navigation.stories.tsx +17 -17
- package/src/components/Navigation/index.tsx +33 -33
- package/src/components/Navigation/styles.module.scss +58 -58
- package/src/components/Notification/Notification.stories.tsx +29 -29
- package/src/components/Notification/index.tsx +21 -21
- package/src/components/Questions/Questions.stories.tsx +37 -37
- package/src/components/Questions/SingleQuestion/index.tsx +84 -84
- package/src/components/Questions/SingleQuestion/styles.module.scss +81 -81
- package/src/components/Questions/index.tsx +78 -78
- package/src/components/Radio/Radio.stories.tsx +43 -43
- package/src/components/Radio/index.tsx +26 -26
- package/src/components/Radio/styles.module.scss +23 -23
- package/src/components/Select/Select.stories.tsx +39 -39
- package/src/components/Select/index.tsx +27 -27
- package/src/components/Select/styles.module.scss +13 -13
- package/src/components/Separator/Separator.stories.tsx +22 -22
- package/src/components/Separator/index.tsx +27 -27
- package/src/components/Separator/styles.module.scss +25 -25
- package/src/components/Sidebar/Sidebar.stories.tsx +85 -85
- package/src/components/Sidebar/index.tsx +103 -103
- package/src/components/Sidebar/styles.module.scss +85 -85
- package/src/components/Switch/Switch.stories.tsx +14 -14
- package/src/components/Switch/index.tsx +8 -8
- package/src/components/Switch/styles.module.scss +7 -7
- package/src/components/Table/Table.stories.tsx +222 -221
- package/src/components/Table/index.tsx +275 -271
- package/src/components/Table/styles.module.scss +75 -75
- package/src/components/Tag/Tag.stories.tsx +22 -22
- package/src/components/Tag/index.tsx +189 -189
- package/src/components/Tag/styles.module.scss +60 -60
- package/src/components/Upload/Upload.stories.tsx +45 -45
- package/src/components/Upload/index.tsx +91 -91
- package/src/components/UserInfo/UserInfo.stories.tsx +37 -37
- package/src/components/UserInfo/index.tsx +62 -62
- package/src/components/UserInfo/styles.module.scss +29 -29
- package/src/components/index.tsx +25 -25
- package/src/constants/i18n.ts +25 -25
- package/src/constants/translationHelper.ts +7 -7
- package/src/index.ts +2 -2
- package/src/locales/en.json +86 -86
- package/src/locales/es.json +86 -86
- package/src/locales/pt.json +86 -86
- package/src/types/Global.d.ts +4 -4
- package/tsconfig.json +29 -29
- package/webpack.config.js +51 -51
|
@@ -1,89 +1,89 @@
|
|
|
1
|
-
import React, { useEffect, useState } from 'react';
|
|
2
|
-
import type { Dayjs } from 'dayjs';
|
|
3
|
-
import { DatePicker, Tag, TagProps } from 'antd';
|
|
4
|
-
import { TweenOneGroup } from 'rc-tween-one';
|
|
5
|
-
import styles from './styles.module.scss';
|
|
6
|
-
import { t } from 'i18next';
|
|
7
|
-
import moment, { Moment } from 'moment';
|
|
8
|
-
|
|
9
|
-
export interface DatePickerTagProps extends TagProps {
|
|
10
|
-
customTags?: any,
|
|
11
|
-
tagsInfo?: any;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
type DateValue = Dayjs | null;
|
|
15
|
-
|
|
16
|
-
export const DatePickerTag = (props: DatePickerTagProps) => {
|
|
17
|
-
const { customTags = [] } = props;
|
|
18
|
-
|
|
19
|
-
const [tags, setTags] = useState<any>(customTags);
|
|
20
|
-
const [dateValue, setDateValue] = useState<DateValue>(null);
|
|
21
|
-
|
|
22
|
-
const handleClose = (removedTag: any) => {
|
|
23
|
-
const newTags = tags.filter((tag: any) => tag !== removedTag);
|
|
24
|
-
setTags(newTags);
|
|
25
|
-
};
|
|
26
|
-
|
|
27
|
-
const handleChange = (date: DateValue, dateString: string) => {
|
|
28
|
-
const formattedDate = date?.format('DD/MM/YYYY');
|
|
29
|
-
setTags([...tags, formattedDate]);
|
|
30
|
-
setDateValue(null);
|
|
31
|
-
};
|
|
32
|
-
|
|
33
|
-
useEffect(() => {
|
|
34
|
-
props?.tagsInfo(tags);
|
|
35
|
-
}, [tags]);
|
|
36
|
-
|
|
37
|
-
const forMap = (tag: any) => {
|
|
38
|
-
const tagElem = (
|
|
39
|
-
<Tag
|
|
40
|
-
closable
|
|
41
|
-
onClose={(e) => {
|
|
42
|
-
e.preventDefault();
|
|
43
|
-
handleClose(tag);
|
|
44
|
-
}}
|
|
45
|
-
>
|
|
46
|
-
{tag}
|
|
47
|
-
</Tag>
|
|
48
|
-
);
|
|
49
|
-
return (
|
|
50
|
-
<span key={tag} className={styles.new} style={{ display: 'inline-block' }}>
|
|
51
|
-
{tagElem}
|
|
52
|
-
</span>
|
|
53
|
-
);
|
|
54
|
-
};
|
|
55
|
-
|
|
56
|
-
const tagChild = tags.map(forMap);
|
|
57
|
-
|
|
58
|
-
return (
|
|
59
|
-
<div className={styles.tagfield}>
|
|
60
|
-
<DatePicker
|
|
61
|
-
disabledDate={(current) => current && current < moment().endOf('day')}
|
|
62
|
-
value={dateValue}
|
|
63
|
-
onChange={handleChange}
|
|
64
|
-
className={styles.picker}
|
|
65
|
-
placeholder={t('components.datePickerTag.placeholder')!}
|
|
66
|
-
/>
|
|
67
|
-
|
|
68
|
-
<div style={{ marginTop: 16 }}>
|
|
69
|
-
<TweenOneGroup
|
|
70
|
-
enter={{
|
|
71
|
-
scale: 0.8,
|
|
72
|
-
opacity: 0,
|
|
73
|
-
type: 'from',
|
|
74
|
-
duration: 100,
|
|
75
|
-
}}
|
|
76
|
-
onEnd={(e: any) => {
|
|
77
|
-
if (e.type === 'appear' || e.type === 'enter') {
|
|
78
|
-
(e.target as any).style = 'display: inline-block';
|
|
79
|
-
}
|
|
80
|
-
}}
|
|
81
|
-
leave={{ opacity: 0, width: 0, scale: 0, duration: 200 }}
|
|
82
|
-
appear={false}
|
|
83
|
-
>
|
|
84
|
-
{tagChild}
|
|
85
|
-
</TweenOneGroup>
|
|
86
|
-
</div>
|
|
87
|
-
</div>
|
|
88
|
-
);
|
|
89
|
-
}
|
|
1
|
+
import React, { useEffect, useState } from 'react';
|
|
2
|
+
import type { Dayjs } from 'dayjs';
|
|
3
|
+
import { DatePicker, Tag, TagProps } from 'antd';
|
|
4
|
+
import { TweenOneGroup } from 'rc-tween-one';
|
|
5
|
+
import styles from './styles.module.scss';
|
|
6
|
+
import { t } from 'i18next';
|
|
7
|
+
import moment, { Moment } from 'moment';
|
|
8
|
+
|
|
9
|
+
export interface DatePickerTagProps extends TagProps {
|
|
10
|
+
customTags?: any,
|
|
11
|
+
tagsInfo?: any;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
type DateValue = Dayjs | null;
|
|
15
|
+
|
|
16
|
+
export const DatePickerTag = (props: DatePickerTagProps) => {
|
|
17
|
+
const { customTags = [] } = props;
|
|
18
|
+
|
|
19
|
+
const [tags, setTags] = useState<any>(customTags);
|
|
20
|
+
const [dateValue, setDateValue] = useState<DateValue>(null);
|
|
21
|
+
|
|
22
|
+
const handleClose = (removedTag: any) => {
|
|
23
|
+
const newTags = tags.filter((tag: any) => tag !== removedTag);
|
|
24
|
+
setTags(newTags);
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
const handleChange = (date: DateValue, dateString: string) => {
|
|
28
|
+
const formattedDate = date?.format('DD/MM/YYYY');
|
|
29
|
+
setTags([...tags, formattedDate]);
|
|
30
|
+
setDateValue(null);
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
useEffect(() => {
|
|
34
|
+
props?.tagsInfo(tags);
|
|
35
|
+
}, [tags]);
|
|
36
|
+
|
|
37
|
+
const forMap = (tag: any) => {
|
|
38
|
+
const tagElem = (
|
|
39
|
+
<Tag
|
|
40
|
+
closable
|
|
41
|
+
onClose={(e) => {
|
|
42
|
+
e.preventDefault();
|
|
43
|
+
handleClose(tag);
|
|
44
|
+
}}
|
|
45
|
+
>
|
|
46
|
+
{tag}
|
|
47
|
+
</Tag>
|
|
48
|
+
);
|
|
49
|
+
return (
|
|
50
|
+
<span key={tag} className={styles.new} style={{ display: 'inline-block' }}>
|
|
51
|
+
{tagElem}
|
|
52
|
+
</span>
|
|
53
|
+
);
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
const tagChild = tags.map(forMap);
|
|
57
|
+
|
|
58
|
+
return (
|
|
59
|
+
<div className={styles.tagfield}>
|
|
60
|
+
<DatePicker
|
|
61
|
+
disabledDate={(current) => current && current < moment().endOf('day')}
|
|
62
|
+
value={dateValue}
|
|
63
|
+
onChange={handleChange}
|
|
64
|
+
className={styles.picker}
|
|
65
|
+
placeholder={t('components.datePickerTag.placeholder')!}
|
|
66
|
+
/>
|
|
67
|
+
|
|
68
|
+
<div style={{ marginTop: 16 }}>
|
|
69
|
+
<TweenOneGroup
|
|
70
|
+
enter={{
|
|
71
|
+
scale: 0.8,
|
|
72
|
+
opacity: 0,
|
|
73
|
+
type: 'from',
|
|
74
|
+
duration: 100,
|
|
75
|
+
}}
|
|
76
|
+
onEnd={(e: any) => {
|
|
77
|
+
if (e.type === 'appear' || e.type === 'enter') {
|
|
78
|
+
(e.target as any).style = 'display: inline-block';
|
|
79
|
+
}
|
|
80
|
+
}}
|
|
81
|
+
leave={{ opacity: 0, width: 0, scale: 0, duration: 200 }}
|
|
82
|
+
appear={false}
|
|
83
|
+
>
|
|
84
|
+
{tagChild}
|
|
85
|
+
</TweenOneGroup>
|
|
86
|
+
</div>
|
|
87
|
+
</div>
|
|
88
|
+
);
|
|
89
|
+
}
|
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
.tagfield {
|
|
2
|
-
contain: inline-size;
|
|
3
|
-
|
|
4
|
-
.picker {
|
|
5
|
-
height: 50px;
|
|
6
|
-
width: 300px;
|
|
7
|
-
|
|
8
|
-
@media(min-width: 1024px) {
|
|
9
|
-
width: 450px;
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.new {
|
|
14
|
-
:global {
|
|
15
|
-
.ant-tag {
|
|
16
|
-
background-color: var(--color-orange);
|
|
17
|
-
color: var(--color-white);
|
|
18
|
-
padding: 6px 16px;
|
|
19
|
-
max-width: 240px;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.anticon-close {
|
|
23
|
-
color: var(--color-white);
|
|
24
|
-
font-size: 12px;
|
|
25
|
-
|
|
26
|
-
&:hover {
|
|
27
|
-
color: var(--color-black);
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
}
|
|
1
|
+
.tagfield {
|
|
2
|
+
contain: inline-size;
|
|
3
|
+
|
|
4
|
+
.picker {
|
|
5
|
+
height: 50px;
|
|
6
|
+
width: 300px;
|
|
7
|
+
|
|
8
|
+
@media(min-width: 1024px) {
|
|
9
|
+
width: 450px;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.new {
|
|
14
|
+
:global {
|
|
15
|
+
.ant-tag {
|
|
16
|
+
background-color: var(--color-orange);
|
|
17
|
+
color: var(--color-white);
|
|
18
|
+
padding: 6px 16px;
|
|
19
|
+
max-width: 240px;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.anticon-close {
|
|
23
|
+
color: var(--color-white);
|
|
24
|
+
font-size: 12px;
|
|
25
|
+
|
|
26
|
+
&:hover {
|
|
27
|
+
color: var(--color-black);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
32
|
}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { Meta, Story } from "@storybook/react";
|
|
2
|
-
import { Footer, FooterProps } from '.';
|
|
3
|
-
|
|
4
|
-
export default {
|
|
5
|
-
title: 'Footer',
|
|
6
|
-
component: Footer,
|
|
7
|
-
} as Meta;
|
|
8
|
-
|
|
9
|
-
const Template: Story<FooterProps> = (args) => <Footer {...args}></Footer>;
|
|
10
|
-
|
|
11
|
-
export const Primary = Template.bind({});
|
|
12
|
-
Primary.args = {
|
|
13
|
-
storeName: 'Levis'
|
|
14
|
-
};
|
|
1
|
+
import { Meta, Story } from "@storybook/react";
|
|
2
|
+
import { Footer, FooterProps } from '.';
|
|
3
|
+
|
|
4
|
+
export default {
|
|
5
|
+
title: 'Footer',
|
|
6
|
+
component: Footer,
|
|
7
|
+
} as Meta;
|
|
8
|
+
|
|
9
|
+
const Template: Story<FooterProps> = (args) => <Footer {...args}></Footer>;
|
|
10
|
+
|
|
11
|
+
export const Primary = Template.bind({});
|
|
12
|
+
Primary.args = {
|
|
13
|
+
storeName: 'Levis'
|
|
14
|
+
};
|
|
@@ -1,38 +1,38 @@
|
|
|
1
|
-
import { useEffect, useState } from "react";
|
|
2
|
-
import moment from 'moment';
|
|
3
|
-
import styles from './styles.module.scss';
|
|
4
|
-
import omniumLogo from '../../assets/images/omnium-retail-logo-white.png';
|
|
5
|
-
|
|
6
|
-
export interface FooterProps {
|
|
7
|
-
storeName: string;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
export const Footer = (props: FooterProps) => {
|
|
11
|
-
const [date, setDate] = useState(moment());
|
|
12
|
-
const { storeName = 'Missing Store Name' } = props;
|
|
13
|
-
|
|
14
|
-
useEffect(() => {
|
|
15
|
-
const time = (function updateDate() {
|
|
16
|
-
const nextMinute = moment().add(1, 'minute');
|
|
17
|
-
return setTimeout(() => {
|
|
18
|
-
setDate(moment());
|
|
19
|
-
updateDate();
|
|
20
|
-
}, nextMinute.valueOf() - moment().valueOf());
|
|
21
|
-
}());
|
|
22
|
-
|
|
23
|
-
return () => clearTimeout(time);
|
|
24
|
-
});
|
|
25
|
-
|
|
26
|
-
return (
|
|
27
|
-
<div className={styles.footer}>
|
|
28
|
-
<div className={styles.content}>
|
|
29
|
-
<div className={styles.brand}>{storeName}</div>
|
|
30
|
-
<div className={styles.date}>{date.format('DD/MM/yyyy')}</div>
|
|
31
|
-
<div className={styles.time}>{date.format('HH:mm')}</div>
|
|
32
|
-
</div>
|
|
33
|
-
<img src={omniumLogo} className={styles.omniumLogoImg} alt="omnium logo" />
|
|
34
|
-
</div>
|
|
35
|
-
);
|
|
36
|
-
};
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { useEffect, useState } from "react";
|
|
2
|
+
import moment from 'moment';
|
|
3
|
+
import styles from './styles.module.scss';
|
|
4
|
+
import omniumLogo from '../../assets/images/omnium-retail-logo-white.png';
|
|
5
|
+
|
|
6
|
+
export interface FooterProps {
|
|
7
|
+
storeName: string;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export const Footer = (props: FooterProps) => {
|
|
11
|
+
const [date, setDate] = useState(moment());
|
|
12
|
+
const { storeName = 'Missing Store Name' } = props;
|
|
13
|
+
|
|
14
|
+
useEffect(() => {
|
|
15
|
+
const time = (function updateDate() {
|
|
16
|
+
const nextMinute = moment().add(1, 'minute');
|
|
17
|
+
return setTimeout(() => {
|
|
18
|
+
setDate(moment());
|
|
19
|
+
updateDate();
|
|
20
|
+
}, nextMinute.valueOf() - moment().valueOf());
|
|
21
|
+
}());
|
|
22
|
+
|
|
23
|
+
return () => clearTimeout(time);
|
|
24
|
+
});
|
|
25
|
+
|
|
26
|
+
return (
|
|
27
|
+
<div className={styles.footer}>
|
|
28
|
+
<div className={styles.content}>
|
|
29
|
+
<div className={styles.brand}>{storeName}</div>
|
|
30
|
+
<div className={styles.date}>{date.format('DD/MM/yyyy')}</div>
|
|
31
|
+
<div className={styles.time}>{date.format('HH:mm')}</div>
|
|
32
|
+
</div>
|
|
33
|
+
<img src={omniumLogo} className={styles.omniumLogoImg} alt="omnium logo" />
|
|
34
|
+
</div>
|
|
35
|
+
);
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
|
|
@@ -1,38 +1,38 @@
|
|
|
1
|
-
.footer {
|
|
2
|
-
display: flex;
|
|
3
|
-
justify-content: space-between;
|
|
4
|
-
align-items: center;
|
|
5
|
-
flex-wrap: nowrap;
|
|
6
|
-
gap: 0 16px;
|
|
7
|
-
background-color: var(--color-black);
|
|
8
|
-
position: fixed;
|
|
9
|
-
bottom: 0;
|
|
10
|
-
width: 100%;
|
|
11
|
-
padding: 12px 24px;
|
|
12
|
-
font-size: var(--font-size-body-1);
|
|
13
|
-
color: var(--color-grey-light);
|
|
14
|
-
height: 60px;
|
|
15
|
-
flex-direction: row;
|
|
16
|
-
text-align: left;
|
|
17
|
-
box-sizing: border-box;
|
|
18
|
-
|
|
19
|
-
.brand {
|
|
20
|
-
color: var(--grey2);
|
|
21
|
-
width: 100%;
|
|
22
|
-
margin-bottom: 4px;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.time {
|
|
26
|
-
margin-left: 8px;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
.date,
|
|
30
|
-
.time {
|
|
31
|
-
display: inline-block;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.omniumLogoImg {
|
|
35
|
-
height: 25px;
|
|
36
|
-
align-self: flex-end;
|
|
37
|
-
}
|
|
38
|
-
}
|
|
1
|
+
.footer {
|
|
2
|
+
display: flex;
|
|
3
|
+
justify-content: space-between;
|
|
4
|
+
align-items: center;
|
|
5
|
+
flex-wrap: nowrap;
|
|
6
|
+
gap: 0 16px;
|
|
7
|
+
background-color: var(--color-black);
|
|
8
|
+
position: fixed;
|
|
9
|
+
bottom: 0;
|
|
10
|
+
width: 100%;
|
|
11
|
+
padding: 12px 24px;
|
|
12
|
+
font-size: var(--font-size-body-1);
|
|
13
|
+
color: var(--color-grey-light);
|
|
14
|
+
height: 60px;
|
|
15
|
+
flex-direction: row;
|
|
16
|
+
text-align: left;
|
|
17
|
+
box-sizing: border-box;
|
|
18
|
+
|
|
19
|
+
.brand {
|
|
20
|
+
color: var(--grey2);
|
|
21
|
+
width: 100%;
|
|
22
|
+
margin-bottom: 4px;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.time {
|
|
26
|
+
margin-left: 8px;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.date,
|
|
30
|
+
.time {
|
|
31
|
+
display: inline-block;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.omniumLogoImg {
|
|
35
|
+
height: 25px;
|
|
36
|
+
align-self: flex-end;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { Meta, Story } from "@storybook/react";
|
|
2
|
-
import { FormInputField, FormInputFieldProps } from '.';
|
|
3
|
-
|
|
4
|
-
export default {
|
|
5
|
-
title: 'FormInputField',
|
|
6
|
-
component: FormInputField,
|
|
7
|
-
} as Meta;
|
|
8
|
-
|
|
9
|
-
const Template: Story<FormInputFieldProps> = (args) => <FormInputField {...args}></FormInputField>;
|
|
10
|
-
|
|
11
|
-
export const Primary = Template.bind({});
|
|
12
|
-
Primary.args = {
|
|
13
|
-
};
|
|
1
|
+
import { Meta, Story } from "@storybook/react";
|
|
2
|
+
import { FormInputField, FormInputFieldProps } from '.';
|
|
3
|
+
|
|
4
|
+
export default {
|
|
5
|
+
title: 'FormInputField',
|
|
6
|
+
component: FormInputField,
|
|
7
|
+
} as Meta;
|
|
8
|
+
|
|
9
|
+
const Template: Story<FormInputFieldProps> = (args) => <FormInputField {...args}></FormInputField>;
|
|
10
|
+
|
|
11
|
+
export const Primary = Template.bind({});
|
|
12
|
+
Primary.args = {
|
|
13
|
+
};
|
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
import { Form, FormItemProps, Input, InputProps } from 'antd';
|
|
2
|
-
import classNames from 'classnames';
|
|
3
|
-
import styles from './styles.module.scss';
|
|
4
|
-
|
|
5
|
-
export interface FormInputFieldProps extends Omit<FormItemProps, "name"> {
|
|
6
|
-
name: string;
|
|
7
|
-
inputProps?: InputProps;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
export interface inputPropsCustom extends InputProps {
|
|
11
|
-
customClass?: string;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
export const InputField = ({customClass, ...inputProps}: inputPropsCustom) => {
|
|
15
|
-
const inputClasses = {
|
|
16
|
-
[styles.input]: true,
|
|
17
|
-
[`${customClass}`]: customClass,
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
return (
|
|
21
|
-
<Input className={classNames(inputClasses)} {...inputProps} />
|
|
22
|
-
);
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
export const FormInputField = ({ inputProps, ...itemProps }: FormInputFieldProps) => {
|
|
26
|
-
return (
|
|
27
|
-
<Form.Item {...itemProps}>
|
|
28
|
-
<InputField {...inputProps} />
|
|
29
|
-
</Form.Item>
|
|
30
|
-
)
|
|
31
|
-
};
|
|
1
|
+
import { Form, FormItemProps, Input, InputProps } from 'antd';
|
|
2
|
+
import classNames from 'classnames';
|
|
3
|
+
import styles from './styles.module.scss';
|
|
4
|
+
|
|
5
|
+
export interface FormInputFieldProps extends Omit<FormItemProps, "name"> {
|
|
6
|
+
name: string;
|
|
7
|
+
inputProps?: InputProps;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export interface inputPropsCustom extends InputProps {
|
|
11
|
+
customClass?: string;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export const InputField = ({customClass, ...inputProps}: inputPropsCustom) => {
|
|
15
|
+
const inputClasses = {
|
|
16
|
+
[styles.input]: true,
|
|
17
|
+
[`${customClass}`]: customClass,
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
return (
|
|
21
|
+
<Input className={classNames(inputClasses)} {...inputProps} />
|
|
22
|
+
);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export const FormInputField = ({ inputProps, ...itemProps }: FormInputFieldProps) => {
|
|
26
|
+
return (
|
|
27
|
+
<Form.Item {...itemProps}>
|
|
28
|
+
<InputField {...inputProps} />
|
|
29
|
+
</Form.Item>
|
|
30
|
+
)
|
|
31
|
+
};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
.input {
|
|
2
|
-
border-color: rgba(var(--color-black-rgb), .5);
|
|
3
|
-
height: 50px;
|
|
4
|
-
font-size: var(--font-size-body-3);
|
|
5
|
-
line-height: 100%;
|
|
6
|
-
color: var(--color-black);
|
|
7
|
-
border-radius: 5px;
|
|
8
|
-
}
|
|
1
|
+
.input {
|
|
2
|
+
border-color: rgba(var(--color-black-rgb), .5);
|
|
3
|
+
height: 50px;
|
|
4
|
+
font-size: var(--font-size-body-3);
|
|
5
|
+
line-height: 100%;
|
|
6
|
+
color: var(--color-black);
|
|
7
|
+
border-radius: 5px;
|
|
8
|
+
}
|