contentoh-components-library 21.1.41 → 21.1.45
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/dist/components/atoms/StatusTag/index.js +17 -2
- package/dist/components/atoms/StatusTag/styles.js +1 -1
- package/dist/components/organisms/FullProductNameHeader/index.js +1 -1
- package/dist/components/pages/ProviderProductEdition/ProviderProductEdition.stories.js +87 -119
- package/dist/components/pages/ProviderProductEdition/index.js +328 -380
- package/dist/components/pages/RetailerProductEdition/RetailerProductEdition.stories.js +41 -86
- package/dist/components/pages/RetailerProductEdition/index.js +198 -211
- package/dist/global-files/data.js +9 -10
- package/package.json +2 -2
- package/src/components/atoms/StatusTag/index.js +12 -2
- package/src/components/atoms/StatusTag/styles.js +11 -11
- package/src/components/molecules/StatusAsignationInfo/index.js +1 -1
- package/src/components/organisms/FullProductNameHeader/index.js +1 -1
- package/src/components/pages/ProviderProductEdition/ProviderProductEdition.stories.js +92 -116
- package/src/components/pages/ProviderProductEdition/index.js +208 -218
- package/src/components/pages/RetailerProductEdition/RetailerProductEdition.stories.js +38 -87
- package/src/components/pages/RetailerProductEdition/index.js +168 -143
- package/src/global-files/data.js +9 -10
|
@@ -280,21 +280,20 @@ var getNewStatus = function getNewStatus(statusArray) {
|
|
|
280
280
|
statusArray.forEach(function (element) {
|
|
281
281
|
return lookupString += element + "/";
|
|
282
282
|
});
|
|
283
|
-
if (lookupString.includes("
|
|
283
|
+
if (lookupString.includes("RF")) return "RF";
|
|
284
284
|
if (lookupString.includes("RA")) return "RA";
|
|
285
285
|
if (lookupString.includes("RP")) return "RP";
|
|
286
|
-
if (lookupString.includes("
|
|
287
|
-
if (lookupString.includes("UNASSIGNED")) return "
|
|
288
|
-
if (lookupString.includes("
|
|
289
|
-
if (lookupString.includes("
|
|
290
|
-
if (lookupString.includes("
|
|
286
|
+
if (lookupString.includes("RC")) return "RC";
|
|
287
|
+
if (lookupString.includes("UNASSIGNED")) return "IN_PROGRESS";
|
|
288
|
+
if (lookupString.includes("IN_PROGRESS")) return "IN_PROGRESS";
|
|
289
|
+
if (lookupString.includes("QF")) return "QF";
|
|
290
|
+
if (lookupString.includes("AF")) return "AF";
|
|
291
291
|
if (lookupString.includes("AA")) return "AA";
|
|
292
292
|
if (lookupString.includes("AP")) return "AP";
|
|
293
|
-
if (lookupString.includes("
|
|
294
|
-
if (lookupString.includes("
|
|
293
|
+
if (lookupString.includes("AC")) return "AC";
|
|
294
|
+
if (lookupString.includes("RECEIVED")) return "RECEIVED";
|
|
295
295
|
if (lookupString.includes("NA")) return "NA";
|
|
296
|
-
|
|
297
|
-
return "NA";
|
|
296
|
+
return new Error("Status not found");
|
|
298
297
|
};
|
|
299
298
|
|
|
300
299
|
exports.getNewStatus = getNewStatus;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "contentoh-components-library",
|
|
3
|
-
"version": "21.1.
|
|
3
|
+
"version": "21.1.45",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"@aws-amplify/auth": "^4.5.3",
|
|
6
6
|
"@aws-amplify/datastore": "^3.11.0",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|
|
36
36
|
"start": "start-storybook -p 6006",
|
|
37
|
-
"build": "cross-env BABEL_ENV=production babel src -d dist
|
|
37
|
+
"build": "cross-env BABEL_ENV=production babel src -d dist",
|
|
38
38
|
"chromatic": "npx chromatic --project-token=d7bb0c8ba831",
|
|
39
39
|
"release": "auto shipit --base-branch=main"
|
|
40
40
|
},
|
|
@@ -5,10 +5,20 @@ export const StatusTag = ({ statusType, ovalForm }) => {
|
|
|
5
5
|
switch (status) {
|
|
6
6
|
case "COMPLETED":
|
|
7
7
|
return "C";
|
|
8
|
+
case "RECEPTION":
|
|
9
|
+
return "Pr";
|
|
8
10
|
case "NULL":
|
|
9
|
-
return "
|
|
11
|
+
return "-";
|
|
12
|
+
case "RECEIVED":
|
|
13
|
+
return "Rc";
|
|
14
|
+
case "IN_PROGRESS":
|
|
15
|
+
return "P";
|
|
16
|
+
case "ASSIGNED":
|
|
17
|
+
return "As";
|
|
10
18
|
case "APPROVED":
|
|
11
19
|
return "Ap";
|
|
20
|
+
case "VALIDATING":
|
|
21
|
+
return "V";
|
|
12
22
|
case "PAID_OUT":
|
|
13
23
|
return "Po";
|
|
14
24
|
default:
|
|
@@ -17,7 +27,7 @@ export const StatusTag = ({ statusType, ovalForm }) => {
|
|
|
17
27
|
};
|
|
18
28
|
return (
|
|
19
29
|
<Container
|
|
20
|
-
className={`status-${getShortStatus(statusType
|
|
30
|
+
className={`status-${getShortStatus(statusType)} ${
|
|
21
31
|
ovalForm && "oval-form"
|
|
22
32
|
}`}
|
|
23
33
|
>
|
|
@@ -16,27 +16,30 @@ export const Container = styled.div`
|
|
|
16
16
|
line-height: 20px;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
-
&.status-
|
|
20
|
-
&.status-
|
|
21
|
-
&.status-
|
|
19
|
+
&.status-As,
|
|
20
|
+
&.status-P,
|
|
21
|
+
&.status-IN_PROGRESS,
|
|
22
|
+
&.status-QF {
|
|
22
23
|
background-color: ${GlobalColors.in_progress};
|
|
23
24
|
}
|
|
24
25
|
|
|
25
|
-
&.status-
|
|
26
|
+
&.status-Pr,
|
|
27
|
+
&.status-Rr,
|
|
28
|
+
&.status-Rc {
|
|
26
29
|
background-color: ${GlobalColors.reception};
|
|
27
30
|
}
|
|
28
31
|
|
|
29
32
|
&.status-AA,
|
|
30
33
|
&.status-AP,
|
|
31
|
-
&.status-
|
|
32
|
-
&.status-
|
|
34
|
+
&.status-AC,
|
|
35
|
+
&.status-AF {
|
|
33
36
|
background-color: ${GlobalColors.finished};
|
|
34
37
|
}
|
|
35
38
|
|
|
36
39
|
&.status-RA,
|
|
37
|
-
&.status-
|
|
40
|
+
&.status-RF,
|
|
38
41
|
&.status-RP,
|
|
39
|
-
&.status-
|
|
42
|
+
&.status-RC {
|
|
40
43
|
background-color: ${GlobalColors.rejected_status};
|
|
41
44
|
}
|
|
42
45
|
|
|
@@ -70,7 +73,4 @@ export const Container = styled.div`
|
|
|
70
73
|
&.oval-form {
|
|
71
74
|
border-radius: 10px;
|
|
72
75
|
}
|
|
73
|
-
&.delThis {
|
|
74
|
-
color: red;
|
|
75
|
-
}
|
|
76
76
|
`;
|
|
@@ -70,7 +70,7 @@ export const StatusAsignationInfo = ({
|
|
|
70
70
|
slidefront={slidefront}
|
|
71
71
|
iconSize={"medium-image"}
|
|
72
72
|
slidePosition={"bottom-slide"}
|
|
73
|
-
|
|
73
|
+
></SliderToolTip>
|
|
74
74
|
{status !== "-" && <StatusTag statusType={status} ovalForm={true} />}
|
|
75
75
|
{showSaveButton && (
|
|
76
76
|
<Button
|
|
@@ -26,7 +26,7 @@ export const FullProductNameHeader = ({
|
|
|
26
26
|
const element = [];
|
|
27
27
|
servicesData.forEach((sd) => {
|
|
28
28
|
if (sd.id_retailer === rt.id) {
|
|
29
|
-
element.push(sd.status ? sd.status : "
|
|
29
|
+
element.push(sd.status ? sd.status : "RECEIVED");
|
|
30
30
|
} else element.push("NA");
|
|
31
31
|
rt["services"] = element;
|
|
32
32
|
});
|
|
@@ -12,51 +12,31 @@ export const ProviderProductEditionDefault = Template.bind({});
|
|
|
12
12
|
ProviderProductEditionDefault.args = {
|
|
13
13
|
tabsSections: {
|
|
14
14
|
Descripción: true,
|
|
15
|
-
"Ficha técnica":
|
|
16
|
-
Imágenes:
|
|
15
|
+
"Ficha técnica": false,
|
|
16
|
+
Imágenes: false,
|
|
17
17
|
},
|
|
18
18
|
token:
|
|
19
|
-
"eyJraWQiOiJkQWJkZCtlclwvTlwveVRQUWNvUlVyOCtrNUd2M1hMM2N1MWUzQ09zWExVRnc9IiwiYWxnIjoiUlMyNTYifQ.
|
|
20
|
-
articleId:
|
|
21
|
-
category:
|
|
22
|
-
version:
|
|
19
|
+
"eyJraWQiOiJkQWJkZCtlclwvTlwveVRQUWNvUlVyOCtrNUd2M1hMM2N1MWUzQ09zWExVRnc9IiwiYWxnIjoiUlMyNTYifQ.eyJzdWIiOiI1ODg0YWUzNC01OWQ2LTQ0NTQtYjk4ZS04MjE1MThiY2MzYTciLCJjb2duaXRvOmdyb3VwcyI6WyJ1c3VhcmlvX2NvbnRlbnRvaCJdLCJlbWFpbF92ZXJpZmllZCI6dHJ1ZSwiaXNzIjoiaHR0cHM6XC9cL2NvZ25pdG8taWRwLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tXC91cy1lYXN0LTFfWE1aUWRxa0dqIiwicGhvbmVfbnVtYmVyX3ZlcmlmaWVkIjpmYWxzZSwiY29nbml0bzp1c2VybmFtZSI6IjU4ODRhZTM0LTU5ZDYtNDQ1NC1iOThlLTgyMTUxOGJjYzNhNyIsImNvZ25pdG86cm9sZXMiOlsiYXJuOmF3czppYW06Ojg5ODY3MDIzMjgwNzpyb2xlXC9jb250ZW50b2gtZGV2LXVzLWVhc3QtMS1sYW1iZGFSb2xlIl0sImF1ZCI6IjVhYzh0cGdzNmdic3ExM2ZydnJwaWVlcDQwIiwiZXZlbnRfaWQiOiJhODE2NGMwNi1hN2U5LTQ2OGItYTBiMS02MDIxNzMyNWY0ZTgiLCJ0b2tlbl91c2UiOiJpZCIsImF1dGhfdGltZSI6MTY1NjExMzE0NiwibmFtZSI6IkNhZGVuYSBJc21hZWwiLCJwaG9uZV9udW1iZXIiOiIrNTIzMTExMzY2MzM2IiwiZXhwIjoxNjU2MTE2NzQ2LCJpYXQiOjE2NTYxMTMxNDYsImVtYWlsIjoiY2FkZW5hLmlzbWFlbEBhbGxmcmVlbWFpbC5uZXQifQ.kfMoKcxYDkpNZJibGdw50oOkRwPVl26YNAwwDoLEfQjOZB6WRCY95iHfU1maYcTTvA5KlT5ali8XZ-nLnxh60vZoLGTDOfCvEnwd1t94JtfE5CsWDr_jfH1U0AVidxihqKnkwvCezkHwU1DUFlbu2iBNo7MHQw4ydiK2sx4q0-QGltmE7W2JJ0sayRDuNchy2S6FQoyIWhsP3oaKTvJGDKCaJxwkFEKk-3antoMtfua9H8V4p2Kkqa_eDbFk8pLYGaYgImLlaia2orGgETkHZIWEMr4WJq1V_7qOg4lYq2BUUuMhWdmK6XUL_Jhmv05TUJ3Rp_Ti4_J2WE4zQqhbfQ",
|
|
20
|
+
articleId: 238,
|
|
21
|
+
category: 846,
|
|
22
|
+
version: 2,
|
|
23
23
|
productSelected: {
|
|
24
|
-
orderId:
|
|
25
|
-
|
|
26
|
-
datasheet_status: "
|
|
24
|
+
orderId: 55,
|
|
25
|
+
article_status: "AP",
|
|
26
|
+
datasheet_status: "AP",
|
|
27
|
+
description_status: "AP",
|
|
28
|
+
images_status: "AP",
|
|
27
29
|
prio: "none",
|
|
28
|
-
version:
|
|
29
|
-
description_status: "AA",
|
|
30
|
-
images_status: "AA",
|
|
30
|
+
version: 2,
|
|
31
31
|
brand: null,
|
|
32
|
-
retailerOrder: 0,
|
|
33
|
-
missing: {
|
|
34
|
-
datasheet: null,
|
|
35
|
-
descriptions: null,
|
|
36
|
-
images: null,
|
|
37
|
-
},
|
|
38
|
-
services: {
|
|
39
|
-
datasheets: 1,
|
|
40
|
-
descriptions: 1,
|
|
41
|
-
images: 1,
|
|
42
|
-
},
|
|
43
32
|
article: {
|
|
44
|
-
category: "
|
|
45
|
-
company_name: "
|
|
33
|
+
category: "ILUMINACIÓN|FOCOS|FOCOS",
|
|
34
|
+
company_name: "THD Proveedor",
|
|
46
35
|
country: "México",
|
|
47
|
-
id_category: "
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
id_description_facilitator: 52,
|
|
52
|
-
id_images_especialist: 55,
|
|
53
|
-
id_images_facilitator: 53,
|
|
54
|
-
id_order: 96,
|
|
55
|
-
id_article: 55154,
|
|
56
|
-
id_auditor: 37,
|
|
57
|
-
name: "Prueba 12312",
|
|
58
|
-
timestamp: "2022-07-04T22:17:43.000Z",
|
|
59
|
-
upc: "977812",
|
|
36
|
+
id_category: "2143",
|
|
37
|
+
id_article: 55118,
|
|
38
|
+
name: "FOCO BLUETOOTH SPOT PHILIPS 6 WATTS 300 LÚMENES MULTICOLOR",
|
|
39
|
+
upc: "145582",
|
|
60
40
|
},
|
|
61
41
|
retailers: [
|
|
62
42
|
{
|
|
@@ -67,17 +47,21 @@ ProviderProductEditionDefault.args = {
|
|
|
67
47
|
id: 59,
|
|
68
48
|
name: "The Home Depot Platinum",
|
|
69
49
|
},
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
datasheet: "AA",
|
|
74
|
-
description: "AA",
|
|
75
|
-
images: "AA",
|
|
50
|
+
{
|
|
51
|
+
id: 60,
|
|
52
|
+
name: "The Home Depot Resizing",
|
|
76
53
|
},
|
|
77
|
-
|
|
78
|
-
|
|
54
|
+
{
|
|
55
|
+
id: 61,
|
|
56
|
+
name: "Home Depot TAB",
|
|
79
57
|
},
|
|
58
|
+
],
|
|
59
|
+
services: {
|
|
60
|
+
datasheets: 1,
|
|
61
|
+
descriptions: 1,
|
|
62
|
+
images: 1,
|
|
80
63
|
},
|
|
64
|
+
id_article: 55118,
|
|
81
65
|
retailersAvailable: [
|
|
82
66
|
{
|
|
83
67
|
id: 58,
|
|
@@ -87,52 +71,36 @@ ProviderProductEditionDefault.args = {
|
|
|
87
71
|
id: 59,
|
|
88
72
|
name: "The Home Depot Platinum",
|
|
89
73
|
},
|
|
74
|
+
{
|
|
75
|
+
id: 60,
|
|
76
|
+
name: "The Home Depot Resizing",
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
id: 61,
|
|
80
|
+
name: "Home Depot TAB",
|
|
81
|
+
},
|
|
90
82
|
],
|
|
91
|
-
categoryName: "SEGURIDAD|BATERÍAS Y PILAS|BATERÍAS Y PILAS",
|
|
92
|
-
upc: "977812",
|
|
93
|
-
id_article: 55154,
|
|
94
|
-
id_order: 96,
|
|
95
83
|
},
|
|
96
84
|
productToEdit: {
|
|
97
|
-
ArticleId:
|
|
98
|
-
idCategory: "
|
|
85
|
+
ArticleId: 55118,
|
|
86
|
+
idCategory: "2143",
|
|
99
87
|
product: {
|
|
100
|
-
orderId:
|
|
101
|
-
|
|
102
|
-
datasheet_status: "
|
|
88
|
+
orderId: 55,
|
|
89
|
+
article_status: "AP",
|
|
90
|
+
datasheet_status: "AP",
|
|
91
|
+
description_status: "AP",
|
|
92
|
+
images_status: "AP",
|
|
103
93
|
prio: "none",
|
|
104
|
-
version:
|
|
105
|
-
description_status: "AA",
|
|
106
|
-
images_status: "AA",
|
|
94
|
+
version: 2,
|
|
107
95
|
brand: null,
|
|
108
|
-
retailerOrder: 0,
|
|
109
|
-
missing: {
|
|
110
|
-
datasheet: null,
|
|
111
|
-
descriptions: null,
|
|
112
|
-
images: null,
|
|
113
|
-
},
|
|
114
|
-
services: {
|
|
115
|
-
datasheets: 1,
|
|
116
|
-
descriptions: 1,
|
|
117
|
-
images: 1,
|
|
118
|
-
},
|
|
119
96
|
article: {
|
|
120
|
-
category: "
|
|
121
|
-
company_name: "
|
|
97
|
+
category: "ILUMINACIÓN|FOCOS|FOCOS",
|
|
98
|
+
company_name: "THD Proveedor",
|
|
122
99
|
country: "México",
|
|
123
|
-
id_category: "
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
id_description_facilitator: 52,
|
|
128
|
-
id_images_especialist: 55,
|
|
129
|
-
id_images_facilitator: 53,
|
|
130
|
-
id_order: 96,
|
|
131
|
-
id_article: 55154,
|
|
132
|
-
id_auditor: 37,
|
|
133
|
-
name: "Prueba 12312",
|
|
134
|
-
timestamp: "2022-07-04T22:17:43.000Z",
|
|
135
|
-
upc: "977812",
|
|
100
|
+
id_category: "2143",
|
|
101
|
+
id_article: 55118,
|
|
102
|
+
name: "FOCO BLUETOOTH SPOT PHILIPS 6 WATTS 300 LÚMENES MULTICOLOR",
|
|
103
|
+
upc: "145582",
|
|
136
104
|
},
|
|
137
105
|
retailers: [
|
|
138
106
|
{
|
|
@@ -143,17 +111,21 @@ ProviderProductEditionDefault.args = {
|
|
|
143
111
|
id: 59,
|
|
144
112
|
name: "The Home Depot Platinum",
|
|
145
113
|
},
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
datasheet: "AA",
|
|
150
|
-
description: "AA",
|
|
151
|
-
images: "AA",
|
|
114
|
+
{
|
|
115
|
+
id: 60,
|
|
116
|
+
name: "The Home Depot Resizing",
|
|
152
117
|
},
|
|
153
|
-
|
|
154
|
-
|
|
118
|
+
{
|
|
119
|
+
id: 61,
|
|
120
|
+
name: "Home Depot TAB",
|
|
155
121
|
},
|
|
122
|
+
],
|
|
123
|
+
services: {
|
|
124
|
+
datasheets: 1,
|
|
125
|
+
descriptions: 1,
|
|
126
|
+
images: 1,
|
|
156
127
|
},
|
|
128
|
+
id_article: 55118,
|
|
157
129
|
retailersAvailable: [
|
|
158
130
|
{
|
|
159
131
|
id: 58,
|
|
@@ -163,48 +135,52 @@ ProviderProductEditionDefault.args = {
|
|
|
163
135
|
id: 59,
|
|
164
136
|
name: "The Home Depot Platinum",
|
|
165
137
|
},
|
|
138
|
+
{
|
|
139
|
+
id: 60,
|
|
140
|
+
name: "The Home Depot Resizing",
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
id: 61,
|
|
144
|
+
name: "Home Depot TAB",
|
|
145
|
+
},
|
|
166
146
|
],
|
|
167
|
-
categoryName: "SEGURIDAD|BATERÍAS Y PILAS|BATERÍAS Y PILAS",
|
|
168
|
-
upc: "977812",
|
|
169
|
-
id_article: 55154,
|
|
170
|
-
id_order: 96,
|
|
171
147
|
},
|
|
172
148
|
},
|
|
173
149
|
location: {
|
|
174
|
-
product: { articleId:
|
|
150
|
+
product: { articleId: 109485, versionId: 3 },
|
|
175
151
|
state: { origin: "Contentoh" },
|
|
176
152
|
},
|
|
177
153
|
user: {
|
|
178
|
-
id_user:
|
|
179
|
-
name: "
|
|
180
|
-
last_name: "
|
|
181
|
-
email: "
|
|
182
|
-
position: "
|
|
154
|
+
id_user: 59,
|
|
155
|
+
name: "The Home",
|
|
156
|
+
last_name: "Depot",
|
|
157
|
+
email: "cadena.ismael@allfreemail.net",
|
|
158
|
+
position: "Admin",
|
|
183
159
|
telephone: "+523111366336",
|
|
184
160
|
country: "México",
|
|
185
|
-
id_company:
|
|
186
|
-
id_cognito: "
|
|
161
|
+
id_company: 7,
|
|
162
|
+
id_cognito: "5884ae34-59d6-4454-b98e-821518bcc3a7",
|
|
187
163
|
birth_Date: null,
|
|
188
164
|
about_me: null,
|
|
189
165
|
zip_code: null,
|
|
190
166
|
address: null,
|
|
191
167
|
job: null,
|
|
192
|
-
id_stripe: "
|
|
168
|
+
id_stripe: "",
|
|
193
169
|
id_role: 0,
|
|
194
170
|
active: 1,
|
|
195
171
|
is_retailer: 0,
|
|
196
|
-
email_notify:
|
|
172
|
+
email_notify: 1,
|
|
197
173
|
membership: {
|
|
198
|
-
id:
|
|
199
|
-
start_date: "
|
|
200
|
-
end_date: "
|
|
201
|
-
planID:
|
|
202
|
-
plan: "
|
|
203
|
-
name: "Plan
|
|
204
|
-
user_limit: "
|
|
205
|
-
products_limit: "
|
|
174
|
+
id: 24,
|
|
175
|
+
start_date: "2021-11-23T03:35:50.000Z",
|
|
176
|
+
end_date: "2022-11-23T03:35:50.000Z",
|
|
177
|
+
planID: 9,
|
|
178
|
+
plan: "prod_KtlkzZVGq6bRTO",
|
|
179
|
+
name: "Plan Enterprise Full",
|
|
180
|
+
user_limit: "30",
|
|
181
|
+
products_limit: "10000",
|
|
206
182
|
type: "Enterprise",
|
|
207
183
|
},
|
|
208
|
-
src: "https://content-management-profile.s3.amazonaws.com/id-
|
|
184
|
+
src: "https://content-management-profile.s3.amazonaws.com/id-59/59.png?1656113146885",
|
|
209
185
|
},
|
|
210
|
-
};
|
|
186
|
+
};
|