contentoh-components-library 21.2.71 → 21.2.73
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/.env.development +4 -1
- package/dist/components/molecules/CustomSelect/CustomSelect.stories.js +21 -22
- package/dist/components/molecules/CustomSelect/SelectItem.js +10 -1
- package/dist/components/molecules/CustomSelect/index.js +3 -4
- package/dist/components/molecules/HeaderTop/index.js +10 -5
- package/dist/components/molecules/HeaderTop/styles.js +1 -1
- package/dist/components/molecules/TagAndInput/index.js +3 -2
- package/dist/components/molecules/TagAndInput/styles.js +1 -1
- package/dist/components/organisms/InputGroup/index.js +4 -2
- package/dist/components/pages/Dashboard/Dashboard.stories.js +1 -1
- package/dist/components/pages/Dashboard/index.js +3 -2
- package/dist/components/pages/ProviderProductEdition/index.js +9 -13
- package/dist/components/pages/RetailerProductEdition/RetailerProductEdition.stories.js +32 -128
- package/dist/global-files/data.js +1 -0
- package/package.json +10 -5
- package/src/assets/images/chatPopup/Spinner.gif +0 -0
- package/src/assets/images/chatPopup/close.svg +3 -0
- package/src/assets/images/chatPopup/defaultImage.png +0 -0
- package/src/assets/images/chatPopup/defaultProfile.png +0 -0
- package/src/assets/images/chatPopup/doc.svg +1 -0
- package/src/assets/images/chatPopup/document.svg +1 -0
- package/src/assets/images/chatPopup/iconChat.svg +19 -0
- package/src/assets/images/chatPopup/iconPlus.svg +3 -0
- package/src/assets/images/chatPopup/pdf.svg +75 -0
- package/src/assets/images/chatPopup/remove.svg +4 -0
- package/src/assets/images/chatPopup/send.svg +3 -0
- package/src/assets/images/chatPopup/svgIcon.svg +109 -0
- package/src/assets/images/chatPopup/upload_file.svg +3 -0
- package/src/assets/images/chatPopup/xls.svg +53 -0
- package/src/assets/images/customSelect/starIcon.svg +14 -0
- package/src/components/atoms/ChatPopUp/ChatPopUp.stories.js +11 -0
- package/src/components/atoms/ChatPopUp/index.js +541 -0
- package/src/components/atoms/ChatPopUp/styles.js +278 -0
- package/src/components/atoms/ChatPopUp/utils/handlersChat.js +104 -0
- package/src/components/atoms/Tooltip/Tooltip.stories.js +15 -0
- package/src/components/atoms/Tooltip/index.js +35 -0
- package/src/components/atoms/Tooltip/styles.js +5 -0
- package/src/components/molecules/CustomSelect/CustomSelect.stories.js +19 -11
- package/src/components/molecules/CustomSelect/SelectItem.js +7 -0
- package/src/components/molecules/CustomSelect/index.js +2 -3
- package/src/components/molecules/HeaderTop/index.js +10 -6
- package/src/components/molecules/HeaderTop/styles.js +4 -0
- package/src/components/molecules/TagAndInput/index.js +2 -1
- package/src/components/molecules/TagAndInput/styles.js +1 -1
- package/src/components/organisms/InputGroup/index.js +2 -0
- package/src/components/pages/Dashboard/Dashboard.stories.js +1 -1
- package/src/components/pages/Dashboard/index.js +5 -4
- package/src/components/pages/ProviderProductEdition/index.js +0 -1
- package/src/components/pages/RetailerProductEdition/RetailerProductEdition.stories.js +31 -318
- package/src/global-files/data.js +1 -0
- package/dist/components/atoms/StatusTag/StatusTag.stories.js +0 -48
- package/dist/components/atoms/StatusTag/index.js +0 -58
- package/dist/components/atoms/StatusTag/styles.js +0 -20
- package/dist/components/pages/RegistrationLoginFirstStep/RegistrationLoginFirstStep.stories.js +0 -37
- package/dist/components/pages/RegistrationLoginFirstStep/index.js +0 -269
- package/dist/components/pages/RegistrationLoginFirstStep/styles.js +0 -20
|
@@ -0,0 +1,278 @@
|
|
|
1
|
+
import styled from "styled-components";
|
|
2
|
+
import { GlobalColors, FontFamily } from "../../../global-files/variables";
|
|
3
|
+
|
|
4
|
+
export const Container = styled.button`
|
|
5
|
+
height: 34px;
|
|
6
|
+
width: 34px;
|
|
7
|
+
background-color: transparent;
|
|
8
|
+
border: 1px solid #f0f0f0;
|
|
9
|
+
border-radius: 50px;
|
|
10
|
+
padding: 10px;
|
|
11
|
+
display: flex;
|
|
12
|
+
align-items: center;
|
|
13
|
+
justify-content: center;
|
|
14
|
+
position: relative;
|
|
15
|
+
cursor: pointer;
|
|
16
|
+
&:hover {
|
|
17
|
+
background-color: #f0f0f0;
|
|
18
|
+
}
|
|
19
|
+
.icon-chat {
|
|
20
|
+
margin: 0;
|
|
21
|
+
width: 15px;
|
|
22
|
+
height: 15px;
|
|
23
|
+
}
|
|
24
|
+
`;
|
|
25
|
+
export const Slider = styled.div`
|
|
26
|
+
-webkit-box-shadow: 0px 0px 10px -1px rgba(0, 0, 0, 0.8);
|
|
27
|
+
box-shadow: 0px 0px 10px -1px rgba(0, 0, 0, 0.8);
|
|
28
|
+
z-index: 200;
|
|
29
|
+
width: 425px;
|
|
30
|
+
height: 600px;
|
|
31
|
+
border-radius: 10px;
|
|
32
|
+
background: white;
|
|
33
|
+
padding: 37px 16px 17px 20px;
|
|
34
|
+
position: absolute;
|
|
35
|
+
right: ${({ showMenu }) => (showMenu ? 2 : -50)}%;
|
|
36
|
+
top: 3%;
|
|
37
|
+
transition: right 2s ease 0;
|
|
38
|
+
.image {
|
|
39
|
+
display: flex;
|
|
40
|
+
justify-content: center;
|
|
41
|
+
align-content: center;
|
|
42
|
+
background-color: #f7f7f7;
|
|
43
|
+
border-radius: 10px;
|
|
44
|
+
#myList {
|
|
45
|
+
list-style: none;
|
|
46
|
+
img {
|
|
47
|
+
width: 365px;
|
|
48
|
+
border-radius: 10px;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
.close {
|
|
53
|
+
background-color: #e33aa9;
|
|
54
|
+
border: 3px solid white;
|
|
55
|
+
height: 35px;
|
|
56
|
+
width: 35px;
|
|
57
|
+
border-radius: 50%;
|
|
58
|
+
position: absolute;
|
|
59
|
+
top: -18px;
|
|
60
|
+
display: flex;
|
|
61
|
+
justify-content: center;
|
|
62
|
+
align-items: center;
|
|
63
|
+
cursor: pointer;
|
|
64
|
+
}
|
|
65
|
+
.content-chat {
|
|
66
|
+
height: 495px;
|
|
67
|
+
max-height: 495px;
|
|
68
|
+
overflow-y: auto;
|
|
69
|
+
overflow-x: hidden;
|
|
70
|
+
background-color: transparent;
|
|
71
|
+
font-family: sans-serif;
|
|
72
|
+
font-size: 12px;
|
|
73
|
+
& + * {
|
|
74
|
+
margin-top: 12px;
|
|
75
|
+
}
|
|
76
|
+
::-webkit-scrollbar {
|
|
77
|
+
width: 0;
|
|
78
|
+
}
|
|
79
|
+
.cargar-mas {
|
|
80
|
+
border: none;
|
|
81
|
+
border-radius: 10px;
|
|
82
|
+
font: normal normal normal 11px/11px sans-serif;
|
|
83
|
+
letter-spacing: 0.1px;
|
|
84
|
+
color: #8a6caa;
|
|
85
|
+
background-color: #f7f7fc;
|
|
86
|
+
padding: 5px 17px;
|
|
87
|
+
margin: 0 35%;
|
|
88
|
+
display: flex;
|
|
89
|
+
cursor: pointer;
|
|
90
|
+
white-space: nowrap;
|
|
91
|
+
&:hover {
|
|
92
|
+
background-color: #f0f0f0;
|
|
93
|
+
}
|
|
94
|
+
img {
|
|
95
|
+
margin-right: 7px;
|
|
96
|
+
height: 13px;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
#myListChat {
|
|
100
|
+
list-style: none;
|
|
101
|
+
margin: 0;
|
|
102
|
+
padding: 0;
|
|
103
|
+
height: 100%;
|
|
104
|
+
overflow-y: auto;
|
|
105
|
+
overflow-x: hidden;
|
|
106
|
+
display: flex;
|
|
107
|
+
flex-direction: column-reverse;
|
|
108
|
+
gap: 3px;
|
|
109
|
+
.group-date {
|
|
110
|
+
display: flex;
|
|
111
|
+
justify-content: center;
|
|
112
|
+
align-items: center;
|
|
113
|
+
hr {
|
|
114
|
+
width: 120px;
|
|
115
|
+
border: 0.3px solid #f0f0f0;
|
|
116
|
+
}
|
|
117
|
+
p {
|
|
118
|
+
margin: 0 10px;
|
|
119
|
+
color: #b3b3b3;
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
li {
|
|
123
|
+
width: 100%;
|
|
124
|
+
padding: 5px 0;
|
|
125
|
+
margin: 0;
|
|
126
|
+
display: flex;
|
|
127
|
+
flex-direction: row-reverse;
|
|
128
|
+
justify-content: flex-start;
|
|
129
|
+
flex-wrap: nowrap;
|
|
130
|
+
gap: 5px;
|
|
131
|
+
align-items: center;
|
|
132
|
+
.tooltip-userName {
|
|
133
|
+
background-color: #f0f0f0;
|
|
134
|
+
padding: 6px 10px;
|
|
135
|
+
color: #000000;
|
|
136
|
+
font-size: 11px;
|
|
137
|
+
margin-bottom: 6px;
|
|
138
|
+
.MuiTooltip-arrow {
|
|
139
|
+
color: #f0f0f0;
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.profile {
|
|
144
|
+
display: grid;
|
|
145
|
+
place-items: center;
|
|
146
|
+
align-self: start;
|
|
147
|
+
width: 34px;
|
|
148
|
+
height: 34px;
|
|
149
|
+
border-radius: 50%;
|
|
150
|
+
overflow: hidden;
|
|
151
|
+
img {
|
|
152
|
+
width: 100%;
|
|
153
|
+
height: 100%;
|
|
154
|
+
border-radius: inherit;
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
.img-file {
|
|
158
|
+
margin: 0 10px;
|
|
159
|
+
width: 165px;
|
|
160
|
+
img {
|
|
161
|
+
width: 100%;
|
|
162
|
+
object-fit: contain;
|
|
163
|
+
border-radius: 10px;
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
.body-message {
|
|
167
|
+
margin: 0 10px;
|
|
168
|
+
border-radius: 10px;
|
|
169
|
+
box-sizing: border-box;
|
|
170
|
+
background-color: #f0f0f0;
|
|
171
|
+
padding: 10px 10px 10px 12px;
|
|
172
|
+
max-width: 280px;
|
|
173
|
+
p {
|
|
174
|
+
color: #262626;
|
|
175
|
+
margin: 0;
|
|
176
|
+
padding: 0;
|
|
177
|
+
}
|
|
178
|
+
a {
|
|
179
|
+
text-decoration: none;
|
|
180
|
+
}
|
|
181
|
+
div {
|
|
182
|
+
cursor: pointer;
|
|
183
|
+
background-color: white;
|
|
184
|
+
border-radius: 10px;
|
|
185
|
+
padding: 7px 10px;
|
|
186
|
+
display: flex;
|
|
187
|
+
align-items: center;
|
|
188
|
+
img {
|
|
189
|
+
height: 20px;
|
|
190
|
+
width: 20px;
|
|
191
|
+
margin-right: 5px;
|
|
192
|
+
}
|
|
193
|
+
p {
|
|
194
|
+
color: #262626 !important;
|
|
195
|
+
white-space: nowrap;
|
|
196
|
+
text-overflow: ellipsis;
|
|
197
|
+
overflow: hidden;
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
.date {
|
|
202
|
+
display: flex;
|
|
203
|
+
align-items: center;
|
|
204
|
+
white-space: nowrap;
|
|
205
|
+
p {
|
|
206
|
+
color: #d9d9d9;
|
|
207
|
+
font-size: 9px;
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
&.own-message {
|
|
211
|
+
flex-direction: row;
|
|
212
|
+
justify-content: flex-start;
|
|
213
|
+
.body-message {
|
|
214
|
+
background-color: #8386ee;
|
|
215
|
+
p {
|
|
216
|
+
margin: 0;
|
|
217
|
+
padding: 0;
|
|
218
|
+
color: #ffffff;
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
.input-chat {
|
|
226
|
+
display: flex;
|
|
227
|
+
align-items: center;
|
|
228
|
+
border-radius: 17px;
|
|
229
|
+
background-color: #f7f7f7;
|
|
230
|
+
padding: 10px 7px 10px 15px;
|
|
231
|
+
.send-message {
|
|
232
|
+
background-color: transparent;
|
|
233
|
+
width: 157%;
|
|
234
|
+
border: none;
|
|
235
|
+
font-family: sans-serif;
|
|
236
|
+
font-size: 13px;
|
|
237
|
+
line-height: initial;
|
|
238
|
+
color: #242424;
|
|
239
|
+
::placeholder {
|
|
240
|
+
font: normal normal medium 12px/14px sans-serif;
|
|
241
|
+
letter-spacing: 0.6px;
|
|
242
|
+
color: #b3b3b3;
|
|
243
|
+
}
|
|
244
|
+
:focus {
|
|
245
|
+
outline: none;
|
|
246
|
+
}
|
|
247
|
+
& + * {
|
|
248
|
+
margin-left: 10px;
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
.upload {
|
|
252
|
+
border: none;
|
|
253
|
+
background: transparent;
|
|
254
|
+
cursor: pointer;
|
|
255
|
+
& + * {
|
|
256
|
+
margin-left: 7px;
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
.add-picture-input {
|
|
260
|
+
display: none;
|
|
261
|
+
}
|
|
262
|
+
.send {
|
|
263
|
+
width: 35.4px;
|
|
264
|
+
height: 20px;
|
|
265
|
+
border: none;
|
|
266
|
+
background-color: #e33aa9;
|
|
267
|
+
border-radius: 50%;
|
|
268
|
+
display: flex;
|
|
269
|
+
justify-content: center;
|
|
270
|
+
cursor: pointer;
|
|
271
|
+
align-items: center;
|
|
272
|
+
img {
|
|
273
|
+
width: 11px;
|
|
274
|
+
height: 11px;
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
`;
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
|
|
2
|
+
import axios from "axios";
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export const getBD = (
|
|
6
|
+
id_article,
|
|
7
|
+
version_article,
|
|
8
|
+
get_type,
|
|
9
|
+
item_date ,
|
|
10
|
+
tokenUser
|
|
11
|
+
) => {
|
|
12
|
+
return new Promise(async (response, error) => {
|
|
13
|
+
try {
|
|
14
|
+
let URL = `https://fc069ovhuk.execute-api.us-east-1.amazonaws.com/dev/products-chat`; // endpoint
|
|
15
|
+
URL += `?id_article=${id_article}`;
|
|
16
|
+
URL += `&version_article=${version_article}`;
|
|
17
|
+
URL += `&get_type=${get_type}`;
|
|
18
|
+
URL += `&item_date=${item_date}`;
|
|
19
|
+
|
|
20
|
+
const respHTTPjson = await axios.get(URL, {
|
|
21
|
+
headers: {
|
|
22
|
+
// AQUI COLOCAR EL TOKEN DEL USUARIO CONECTADO
|
|
23
|
+
Authorization: tokenUser,
|
|
24
|
+
},
|
|
25
|
+
});
|
|
26
|
+
//console.log( "respHTTPjson" , respHTTPjson )
|
|
27
|
+
// verificar si existe un error en la peticion realizada
|
|
28
|
+
if (respHTTPjson.status != 200) {
|
|
29
|
+
response({
|
|
30
|
+
message: "No fue posible llevar a cabo la operacion",
|
|
31
|
+
errorDetails: respHTTPjson.statusText,
|
|
32
|
+
});
|
|
33
|
+
return;
|
|
34
|
+
}
|
|
35
|
+
// obtener body backend
|
|
36
|
+
const body = JSON.parse(respHTTPjson.data.body);
|
|
37
|
+
//console.log( "resHTTP body:" , body );
|
|
38
|
+
// verificar si existe error desde el backend
|
|
39
|
+
if (respHTTPjson.data.statusCode != 200) {
|
|
40
|
+
response({
|
|
41
|
+
message: body.message,
|
|
42
|
+
errorDetails: body.errorDetail,
|
|
43
|
+
});
|
|
44
|
+
return;
|
|
45
|
+
}
|
|
46
|
+
// cuando se ejecuto bien el create ... tomar un posible message
|
|
47
|
+
response({ body });
|
|
48
|
+
} catch (err) {
|
|
49
|
+
//console.log("error catch get items chat" , err);
|
|
50
|
+
response({
|
|
51
|
+
message: "Algo salio mal al obtener los items del chat",
|
|
52
|
+
errorDetails: err.message,
|
|
53
|
+
});
|
|
54
|
+
}
|
|
55
|
+
});
|
|
56
|
+
};
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
export const createItemBD = (
|
|
60
|
+
id_article,
|
|
61
|
+
version_article,
|
|
62
|
+
value_type,
|
|
63
|
+
value ,
|
|
64
|
+
tokenUser
|
|
65
|
+
) => {
|
|
66
|
+
return new Promise(async (response, error) => {
|
|
67
|
+
try {
|
|
68
|
+
const URL = `https://fc069ovhuk.execute-api.us-east-1.amazonaws.com/dev/products-chat`;
|
|
69
|
+
const bodyData = {
|
|
70
|
+
id_article: id_article,
|
|
71
|
+
version_article: version_article,
|
|
72
|
+
value_type: value_type,
|
|
73
|
+
value: value,
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
const respHTTPjson = await axios.post(URL, bodyData, {
|
|
77
|
+
headers: {
|
|
78
|
+
Authorization: tokenUser,
|
|
79
|
+
},
|
|
80
|
+
});
|
|
81
|
+
if (respHTTPjson.status != 200) {
|
|
82
|
+
response({
|
|
83
|
+
message: "No fue posible llevar a cabo la operacion",
|
|
84
|
+
errorDetails: respHTTPjson.statusText,
|
|
85
|
+
});
|
|
86
|
+
return;
|
|
87
|
+
}
|
|
88
|
+
const body = JSON.parse(respHTTPjson.data.body);
|
|
89
|
+
if (respHTTPjson.data.statusCode != 200) {
|
|
90
|
+
response({
|
|
91
|
+
message: body.message,
|
|
92
|
+
errorDetails: body.errorDetail,
|
|
93
|
+
});
|
|
94
|
+
return;
|
|
95
|
+
}
|
|
96
|
+
response({ body: true });
|
|
97
|
+
} catch (err) {
|
|
98
|
+
response({
|
|
99
|
+
message: "Algo salio mal al agregar el item en el chat",
|
|
100
|
+
errorDetails: err.message,
|
|
101
|
+
});
|
|
102
|
+
}
|
|
103
|
+
});
|
|
104
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { CustomTooltip } from "./index";
|
|
2
|
+
|
|
3
|
+
export default {
|
|
4
|
+
title: "Components/atoms/CustomTooltip",
|
|
5
|
+
component: CustomTooltip
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
const Template = (args) => <CustomTooltip {...args} />;
|
|
9
|
+
|
|
10
|
+
export const TooltipDefault = Template.bind({});
|
|
11
|
+
TooltipDefault.args = {
|
|
12
|
+
componentTooltip: (<p> hola soy tooltip </p>) ,
|
|
13
|
+
children: (<button> abrir tooltip </button>) ,
|
|
14
|
+
className: "container-tooltip"
|
|
15
|
+
};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { useEffect, useState } from "react";
|
|
2
|
+
import { Tooltip } from "@mui/material";
|
|
3
|
+
import { Container } from "./styles";
|
|
4
|
+
import React from "react";
|
|
5
|
+
|
|
6
|
+
export const CustomTooltip = ({
|
|
7
|
+
componentTooltip ,
|
|
8
|
+
children ,
|
|
9
|
+
className ,
|
|
10
|
+
...props
|
|
11
|
+
}) => {
|
|
12
|
+
|
|
13
|
+
const MyComponent = React.forwardRef(function MyComponent(props, ref) {
|
|
14
|
+
return (
|
|
15
|
+
<div {...props} ref={ref}>
|
|
16
|
+
Bin
|
|
17
|
+
</div>
|
|
18
|
+
);
|
|
19
|
+
});
|
|
20
|
+
|
|
21
|
+
return (
|
|
22
|
+
<Tooltip
|
|
23
|
+
{...props}
|
|
24
|
+
arrow
|
|
25
|
+
placement="top"
|
|
26
|
+
componentsProps={{
|
|
27
|
+
tooltip: {className: className} ,
|
|
28
|
+
popper: {disablePortal: true}
|
|
29
|
+
}}
|
|
30
|
+
title={ componentTooltip }
|
|
31
|
+
>
|
|
32
|
+
{children}
|
|
33
|
+
</Tooltip>
|
|
34
|
+
)
|
|
35
|
+
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { CustomSelect } from "./index";
|
|
2
|
+
import iconStar from "../../../assets/images/customSelect/starIcon.svg";
|
|
2
3
|
|
|
3
4
|
export default {
|
|
4
5
|
title: "Components/molecules/CustomSelect",
|
|
@@ -8,20 +9,27 @@ export default {
|
|
|
8
9
|
const Template = (args) => <CustomSelect {...args} />;
|
|
9
10
|
export const CustomSelectDefault = Template.bind({});
|
|
10
11
|
CustomSelectDefault.args = {
|
|
11
|
-
selectLabel: "Todos los departamentos",
|
|
12
|
+
// selectLabel: "Todos los departamentos",
|
|
12
13
|
defaultOption: "Todos los departamentos",
|
|
13
14
|
options: [
|
|
14
15
|
{
|
|
15
|
-
id:
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
16
|
+
id: 47,
|
|
17
|
+
name: "Enero 2023",
|
|
18
|
+
isSelected: true,
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
id: 49,
|
|
22
|
+
name: "Mis Favoritos",
|
|
21
23
|
},
|
|
22
|
-
{ id: 2, value: "Eléctrico" },
|
|
23
|
-
{ id: 3, value: "Ferretería" },
|
|
24
|
-
{ id: 4, value: "Herramientas" },
|
|
25
|
-
{ id: 5, value: "Iluminación" },
|
|
26
24
|
],
|
|
25
|
+
onClickItem: (v, id) => {
|
|
26
|
+
if (v) {
|
|
27
|
+
console.log("Agregar a la lista", id);
|
|
28
|
+
} else {
|
|
29
|
+
console.log("Eliminar a la lista", id);
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
icon: iconStar,
|
|
33
|
+
showSearchBar: true,
|
|
34
|
+
customOptions: <p>Esto es un customOptions</p>
|
|
27
35
|
};
|
|
@@ -7,6 +7,7 @@ export const SelecItem = ({
|
|
|
7
7
|
setParameterArray,
|
|
8
8
|
activeFilters,
|
|
9
9
|
setActiveFilters,
|
|
10
|
+
onClickItem,
|
|
10
11
|
}) => {
|
|
11
12
|
const [showSubOptions, setShowSubOptions] = useState(false);
|
|
12
13
|
const [chkGlobal, setChkGlobal] = useState(false);
|
|
@@ -17,6 +18,9 @@ export const SelecItem = ({
|
|
|
17
18
|
id={"main-item-" + option.id}
|
|
18
19
|
label={option.name}
|
|
19
20
|
onChange={(e) => {
|
|
21
|
+
if (onClickItem) {
|
|
22
|
+
onClickItem(e.target.checked, option.id)
|
|
23
|
+
}
|
|
20
24
|
const subOptions = option.subOptions;
|
|
21
25
|
const filtersCopy = { ...activeFilters };
|
|
22
26
|
if (subOptions) {
|
|
@@ -77,6 +81,9 @@ export const SelecItem = ({
|
|
|
77
81
|
activeFilters[option.name][sub.name]
|
|
78
82
|
}
|
|
79
83
|
onChange={(e) => {
|
|
84
|
+
if (onClickItem) {
|
|
85
|
+
onClickItem(e.target.checked, sub.id)
|
|
86
|
+
}
|
|
80
87
|
if (e.target.checked) {
|
|
81
88
|
setParameterArray((current) =>
|
|
82
89
|
[...current, sub.id].sort((a, b) => a - b)
|
|
@@ -2,7 +2,6 @@ import { Container } from "./styles";
|
|
|
2
2
|
import { useEffect, useState } from "react";
|
|
3
3
|
import searchIcon from "../../../assets/images/customSelect/searchIcon.png";
|
|
4
4
|
import { useCloseModal } from "../../../global-files/customHooks";
|
|
5
|
-
import { SelecItem } from "./SelectItem";
|
|
6
5
|
import { Calendar } from "../../organisms/Calendar";
|
|
7
6
|
import { CustomSelectItem } from "../../atoms/CustomSelectItem";
|
|
8
7
|
|
|
@@ -18,7 +17,7 @@ export const CustomSelect = ({
|
|
|
18
17
|
onClickItem,
|
|
19
18
|
icon,
|
|
20
19
|
customOptions,
|
|
21
|
-
|
|
20
|
+
isSingleSelect = false,
|
|
22
21
|
}) => {
|
|
23
22
|
const [filters, setFilters] = useState([]);
|
|
24
23
|
const [showList, setShowList] = useCloseModal(customSelectId);
|
|
@@ -151,7 +150,7 @@ export const CustomSelect = ({
|
|
|
151
150
|
)}
|
|
152
151
|
<div className="filters-container">
|
|
153
152
|
{filters?.map((option) =>
|
|
154
|
-
|
|
153
|
+
isSingleSelect ? (
|
|
155
154
|
<div
|
|
156
155
|
className="dates-select-item"
|
|
157
156
|
key={customSelectId + option.id}
|
|
@@ -2,6 +2,7 @@ import { Container } from "./styles";
|
|
|
2
2
|
import { ScreenHeader } from "../../atoms/ScreenHeader/index";
|
|
3
3
|
import { Button } from "../../atoms/GeneralButton/index";
|
|
4
4
|
import { useEffect, useRef } from "react";
|
|
5
|
+
import { ChatPopUp } from "../../atoms/ChatPopUp/index";
|
|
5
6
|
|
|
6
7
|
export const HeaderTop = ({ setHeaderTop }) => {
|
|
7
8
|
const headerTop = useRef();
|
|
@@ -13,12 +14,15 @@ export const HeaderTop = ({ setHeaderTop }) => {
|
|
|
13
14
|
return (
|
|
14
15
|
<Container ref={headerTop}>
|
|
15
16
|
<ScreenHeader text="Edición de producto" />
|
|
16
|
-
<
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
17
|
+
<div className="buttons-top">
|
|
18
|
+
{/* <ChatPopUp /> */}
|
|
19
|
+
<Button
|
|
20
|
+
buttonType="close-button"
|
|
21
|
+
onClick={() => {
|
|
22
|
+
window.location.href = `/products`;
|
|
23
|
+
}}
|
|
24
|
+
/>
|
|
25
|
+
</div>
|
|
22
26
|
</Container>
|
|
23
27
|
);
|
|
24
28
|
};
|
|
@@ -27,6 +27,7 @@ export const TagAndInput = ({
|
|
|
27
27
|
color,
|
|
28
28
|
disabled,
|
|
29
29
|
onKeyDown,
|
|
30
|
+
showTooltip,
|
|
30
31
|
}) => {
|
|
31
32
|
return (
|
|
32
33
|
<Container
|
|
@@ -40,7 +41,7 @@ export const TagAndInput = ({
|
|
|
40
41
|
headerType={"input-name-header"}
|
|
41
42
|
color={color}
|
|
42
43
|
/>
|
|
43
|
-
<span className="tooltip">{label}</span>
|
|
44
|
+
{showTooltip && <span className="tooltip">{label}</span>}
|
|
44
45
|
</div>
|
|
45
46
|
<GeneralInput
|
|
46
47
|
inputId={inputId}
|
|
@@ -71,6 +71,7 @@ export const InputGroup = ({
|
|
|
71
71
|
}
|
|
72
72
|
optionList={dataInputs[input]?.option_list}
|
|
73
73
|
description={dataInputs[input]?.description}
|
|
74
|
+
showTooltip={true}
|
|
74
75
|
/>
|
|
75
76
|
) : (
|
|
76
77
|
<TagAndInput
|
|
@@ -89,6 +90,7 @@ export const InputGroup = ({
|
|
|
89
90
|
version={version}
|
|
90
91
|
dinamicHeight={dinamicHeight}
|
|
91
92
|
description={input?.description}
|
|
93
|
+
showTooltip={true}
|
|
92
94
|
/>
|
|
93
95
|
)
|
|
94
96
|
)}
|
|
@@ -41,5 +41,5 @@ DashboardDeafult.args = {
|
|
|
41
41
|
},
|
|
42
42
|
src: "https://content-management-profile-prod.s3.amazonaws.com/id-425/425.png?1666639556174",
|
|
43
43
|
},
|
|
44
|
-
jwt: "
|
|
44
|
+
jwt: "eyJraWQiOiJkQWJkZCtlclwvTlwveVRQUWNvUlVyOCtrNUd2M1hMM2N1MWUzQ09zWExVRnc9IiwiYWxnIjoiUlMyNTYifQ.eyJzdWIiOiI5YTIxMzEyOC02NDgyLTRjMTYtYTRiNi02ZTY0ZjIyNWIxYmQiLCJjb2duaXRvOmdyb3VwcyI6WyJjb2xhYm9yYWRvcmVzX2NvbnRlbnRvaCJdLCJlbWFpbF92ZXJpZmllZCI6dHJ1ZSwiaXNzIjoiaHR0cHM6XC9cL2NvZ25pdG8taWRwLnVzLWVhc3QtMS5hbWF6b25hd3MuY29tXC91cy1lYXN0LTFfWE1aUWRxa0dqIiwiY29nbml0bzp1c2VybmFtZSI6IjlhMjEzMTI4LTY0ODItNGMxNi1hNGI2LTZlNjRmMjI1YjFiZCIsImNvZ25pdG86cm9sZXMiOlsiYXJuOmF3czppYW06Ojg5ODY3MDIzMjgwNzpyb2xlXC9jb250ZW50b2gtZGV2LXVzLWVhc3QtMS1sYW1iZGFSb2xlIl0sImF1ZCI6IjVhYzh0cGdzNmdic3ExM2ZydnJwaWVlcDQwIiwiZXZlbnRfaWQiOiJkYWVmODU5ZC00ODQyLTRkNDQtYTNiNC02ODZlNmJhNTVkMjgiLCJ0b2tlbl91c2UiOiJpZCIsImF1dGhfdGltZSI6MTY2NzA3MjM5MCwibmFtZSI6IkNvbGFib3JhZG9yIiwicGhvbmVfbnVtYmVyIjoiKzUyMTExMSIsImV4cCI6MTY2NzA3NTk5MCwiaWF0IjoxNjY3MDcyMzkwLCJlbWFpbCI6ImlzbWFlbDk3bG9wZXpAZ21haWwuY29tIn0.FbGtX1sC3b2c76hGcxkx-GSurEMKZSwNVEnuUOlV9Dhhqrre1VmtfjvodH_3Leipr4g38Sukb6Pr9lVgEy6DJ57MShpS63niXE7Y43FUJ4gVe4F6k8sYbXUaZYS2vw2_PibnycNsFrpD76fZ_ulTqlSuHNrnzf2mjcDFJ5Qlj8hcLlRnpu_DFVpIiXVyK9kvLE5jImHvo4oQZUSrnuIs-oUE7j8mX8-GH2e95Up2wnBMak6S6meMibKoUEFo2qdtDSFbS1JCMBq4vWw2DxToX-7AGXGp_CLxf-sjJ_UpLmFa0KyyxjhAE2cR9BGo8DM8LEUIqMvcz2KH-7e9QTgisA",
|
|
45
45
|
};
|
|
@@ -239,6 +239,7 @@ export const Dashboard = ({ jwt, user, company }) => {
|
|
|
239
239
|
customSelectId="dates-select"
|
|
240
240
|
parameterArray={datesRange}
|
|
241
241
|
setParameterArray={setDatesRange}
|
|
242
|
+
isSingleSelect
|
|
242
243
|
/>
|
|
243
244
|
<CustomSelect
|
|
244
245
|
showFilterString={true}
|
|
@@ -249,7 +250,7 @@ export const Dashboard = ({ jwt, user, company }) => {
|
|
|
249
250
|
customSelectId="providers-select"
|
|
250
251
|
parameterArray={companyId}
|
|
251
252
|
setParameterArray={setCompanyId}
|
|
252
|
-
defaultOption=
|
|
253
|
+
defaultOption="Todos los proveedores"
|
|
253
254
|
/>
|
|
254
255
|
<CustomSelect
|
|
255
256
|
showFilterString={true}
|
|
@@ -260,7 +261,7 @@ export const Dashboard = ({ jwt, user, company }) => {
|
|
|
260
261
|
customSelectId="category-select"
|
|
261
262
|
parameterArray={categoryId}
|
|
262
263
|
setParameterArray={setCategoryId}
|
|
263
|
-
defaultOption=
|
|
264
|
+
defaultOption="Todas las categorías"
|
|
264
265
|
/>
|
|
265
266
|
<CustomSelect
|
|
266
267
|
showFilterString={true}
|
|
@@ -271,7 +272,7 @@ export const Dashboard = ({ jwt, user, company }) => {
|
|
|
271
272
|
customSelectId="retailers-select"
|
|
272
273
|
parameterArray={retailerId}
|
|
273
274
|
setParameterArray={setRetailerId}
|
|
274
|
-
defaultOption=
|
|
275
|
+
defaultOption="Todas las cadenas"
|
|
275
276
|
/>
|
|
276
277
|
{user.is_retailer === 1 && (
|
|
277
278
|
<CustomSelect
|
|
@@ -281,7 +282,7 @@ export const Dashboard = ({ jwt, user, company }) => {
|
|
|
281
282
|
customSelectId="applicants-select"
|
|
282
283
|
parameterArray={applicantsFilter}
|
|
283
284
|
setParameterArray={setApplicantsFilter}
|
|
284
|
-
defaultOption=
|
|
285
|
+
defaultOption="Todos los solicitantes"
|
|
285
286
|
/>
|
|
286
287
|
)}
|
|
287
288
|
</div>
|
|
@@ -939,7 +939,6 @@ export const ProviderProductEdition = ({
|
|
|
939
939
|
);
|
|
940
940
|
});
|
|
941
941
|
const evalResponse = await Promise.all(evaluationArray);
|
|
942
|
-
console.log(evalResponse.map(({ data }) => JSON.parse(data.body)));
|
|
943
942
|
const userType = user.is_retailer === 1 ? "CA" : "P";
|
|
944
943
|
|
|
945
944
|
const productTemp = product;
|