contentoh-components-library 21.2.37 → 21.2.38

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.
Files changed (43) hide show
  1. package/dist/components/atoms/ListCommercialRetailers/ListCommercialRetailers.stories.js +36 -0
  2. package/dist/components/atoms/ListCommercialRetailers/index.js +64 -0
  3. package/dist/components/atoms/ListCommercialRetailers/styles.js +20 -0
  4. package/dist/components/atoms/MenuCommercialRetailers/MenuCommercialRetailers.stories.js +37 -0
  5. package/dist/components/atoms/MenuCommercialRetailers/index.js +25 -0
  6. package/dist/components/atoms/MenuCommercialRetailers/styles.js +20 -0
  7. package/dist/components/atoms/MenuProductImage/MenuProductImage.stories.js +28 -0
  8. package/dist/components/atoms/MenuProductImage/index.js +88 -0
  9. package/dist/components/atoms/MenuProductImage/styles.js +20 -0
  10. package/dist/components/atoms/StatusTag/StatusTag.stories.js +48 -0
  11. package/dist/components/atoms/StatusTag/index.js +58 -0
  12. package/dist/components/atoms/StatusTag/styles.js +20 -0
  13. package/dist/components/atoms/VerticalSideMenuMainPage/styles.js +10 -22
  14. package/dist/components/molecules/ApproveRejetPanel/ApproveRejetPanel.stories.js +25 -0
  15. package/dist/components/molecules/ApproveRejetPanel/index.js +49 -0
  16. package/dist/components/molecules/ApproveRejetPanel/styles.js +18 -0
  17. package/dist/components/molecules/CustomSelect/CustomSelect.stories.js +8 -19
  18. package/dist/components/molecules/CustomSelect/SelectItem.js +1 -10
  19. package/dist/components/molecules/CustomSelect/index.js +3 -28
  20. package/dist/components/molecules/CustomSelect/styles.js +1 -3
  21. package/dist/components/molecules/SignInLoginCreationApp/SignInLogin.stories.js +28 -0
  22. package/dist/components/molecules/SignInLoginCreationApp/index.js +270 -0
  23. package/dist/components/molecules/SignInLoginCreationApp/styles.js +20 -0
  24. package/dist/components/organisms/DashboardMetric/index.js +10 -36
  25. package/dist/components/organisms/DashboardMetric/styles.js +1 -1
  26. package/dist/components/pages/Dashboard/index.js +3 -5
  27. package/dist/components/pages/RegistrationLoginFirstStep/RegistrationLoginFirstStep.stories.js +37 -0
  28. package/dist/components/pages/RegistrationLoginFirstStep/index.js +269 -0
  29. package/dist/components/pages/RegistrationLoginFirstStep/styles.js +20 -0
  30. package/dist/index.js +0 -13
  31. package/package.json +1 -1
  32. package/src/components/atoms/Graphic/index.js +1 -0
  33. package/src/components/atoms/VerticalSideMenuMainPage/styles.js +6 -7
  34. package/src/components/molecules/CustomSelect/CustomSelect.stories.js +7 -16
  35. package/src/components/molecules/CustomSelect/SelectItem.js +0 -7
  36. package/src/components/molecules/CustomSelect/index.js +2 -22
  37. package/src/components/molecules/CustomSelect/styles.js +1 -4
  38. package/src/components/organisms/DashboardMetric/index.js +8 -32
  39. package/src/components/organisms/DashboardMetric/styles.js +1 -1
  40. package/src/components/pages/Dashboard/index.js +1 -3
  41. package/src/index.js +0 -3
  42. package/dist/components/organisms/DashboardMetric/dashboardMetricUtils.js +0 -147
  43. package/src/components/organisms/DashboardMetric/dashboardMetricUtils.js +0 -105
@@ -0,0 +1,269 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.RegistrationLoginFirstStep = void 0;
9
+
10
+ var _regenerator = _interopRequireDefault(require("@babel/runtime/regenerator"));
11
+
12
+ var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/asyncToGenerator"));
13
+
14
+ var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/slicedToArray"));
15
+
16
+ var _styles = require("./styles");
17
+
18
+ var _GradientPanel = require("../../atoms/GradientPanel");
19
+
20
+ var _CarouselImagesLogin = require("../../molecules/CarouselImagesLogin");
21
+
22
+ var _react = require("react");
23
+
24
+ var _LogoImage = require("../../atoms/LogoImage");
25
+
26
+ var _ScreenHeader = require("../../atoms/ScreenHeader");
27
+
28
+ var _variables = require("../../../global-files/variables");
29
+
30
+ var _TagAndInput = require("../../molecules/TagAndInput");
31
+
32
+ var _GeneralButton = require("../../atoms/GeneralButton");
33
+
34
+ var _GeneralInput = require("../../atoms/GeneralInput");
35
+
36
+ var _jsxRuntime = require("react/jsx-runtime");
37
+
38
+ var RegistrationLoginFirstStep = function RegistrationLoginFirstStep(_ref) {
39
+ var _ref$imageArrayCarous = _ref.imageArrayCarousel,
40
+ imageArrayCarousel = _ref$imageArrayCarous === void 0 ? [] : _ref$imageArrayCarous,
41
+ textCarousel = _ref.textCarousel,
42
+ backogroundColorCarousel = _ref.backogroundColorCarousel;
43
+
44
+ var _useState = (0, _react.useState)(false),
45
+ _useState2 = (0, _slicedToArray2.default)(_useState, 2),
46
+ emptyName = _useState2[0],
47
+ setEmptyName = _useState2[1];
48
+
49
+ var _useState3 = (0, _react.useState)(false),
50
+ _useState4 = (0, _slicedToArray2.default)(_useState3, 2),
51
+ emptyLastName = _useState4[0],
52
+ setEmptyLastName = _useState4[1];
53
+
54
+ var _useState5 = (0, _react.useState)(false),
55
+ _useState6 = (0, _slicedToArray2.default)(_useState5, 2),
56
+ emptyEmail = _useState6[0],
57
+ setEmptyEmail = _useState6[1];
58
+
59
+ var _useState7 = (0, _react.useState)(false),
60
+ _useState8 = (0, _slicedToArray2.default)(_useState7, 2),
61
+ emptyJob = _useState8[0],
62
+ setEmptyJob = _useState8[1];
63
+
64
+ var _useState9 = (0, _react.useState)(false),
65
+ _useState10 = (0, _slicedToArray2.default)(_useState9, 2),
66
+ emptyPhone = _useState10[0],
67
+ setEmptyPhone = _useState10[1];
68
+
69
+ var _useState11 = (0, _react.useState)(false),
70
+ _useState12 = (0, _slicedToArray2.default)(_useState11, 2),
71
+ invalidEmail = _useState12[0],
72
+ setInvalidEmail = _useState12[1];
73
+
74
+ var validate = /*#__PURE__*/function () {
75
+ var _ref2 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(e) {
76
+ var name, lastName, email, job, phone;
77
+ return _regenerator.default.wrap(function _callee$(_context) {
78
+ while (1) {
79
+ switch (_context.prev = _context.next) {
80
+ case 0:
81
+ e.preventDefault();
82
+ name = document.querySelector("#nameInput").value;
83
+ lastName = document.querySelector("#lastNameInput").value;
84
+ email = document.querySelector("#emailInput").value;
85
+ job = document.querySelector("#jobInput").value;
86
+ phone = document.querySelector("#phoneInput").value;
87
+ name === "" ? setEmptyName(true) : setEmptyName(false);
88
+ lastName === "" ? setEmptyLastName(true) : setEmptyLastName(false);
89
+ email === "" ? setEmptyEmail(true) : setEmptyEmail(false);
90
+ job === "" ? setEmptyJob(true) : setEmptyJob(false);
91
+ phone === "" ? setEmptyPhone(true) : setEmptyPhone(false);
92
+ !/^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*$/.test(email) ? setInvalidEmail(true) : setInvalidEmail(false);
93
+
94
+ case 12:
95
+ case "end":
96
+ return _context.stop();
97
+ }
98
+ }
99
+ }, _callee);
100
+ }));
101
+
102
+ return function validate(_x) {
103
+ return _ref2.apply(this, arguments);
104
+ };
105
+ }();
106
+
107
+ var loginRight = [/*#__PURE__*/(0, _jsxRuntime.jsx)(_LogoImage.LogoImage, {}, "1"), /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
108
+ className: "credenciales",
109
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_ScreenHeader.ScreenHeader, {
110
+ fontFamily: _variables.FontFamily.AvenirNext,
111
+ color: _variables.GlobalColors.s5,
112
+ text: "Ingresa tus credenciales"
113
+ })
114
+ }, "2"), /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
115
+ className: "user",
116
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
117
+ className: "name-registration-user",
118
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_TagAndInput.TagAndInput, {
119
+ inputType: "text",
120
+ inputId: "nameInput",
121
+ label: "Nombre",
122
+ inputPlaceHolder: "Nombre"
123
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_TagAndInput.TagAndInput, {
124
+ inputType: "text",
125
+ inputId: "lastNameInput",
126
+ label: "Apellido",
127
+ inputPlaceHolder: "Apellido"
128
+ })]
129
+ }), emptyName && /*#__PURE__*/(0, _jsxRuntime.jsx)("label", {
130
+ children: "Ingrese su nombre"
131
+ }), emptyLastName && /*#__PURE__*/(0, _jsxRuntime.jsx)("label", {
132
+ children: "Ingrese sus apellidos"
133
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_TagAndInput.TagAndInput, {
134
+ inputType: "text",
135
+ inputId: "emailInput",
136
+ label: "Correo electrónico",
137
+ inputPlaceHolder: "username@contentoh.com"
138
+ }), emptyEmail && /*#__PURE__*/(0, _jsxRuntime.jsx)("label", {
139
+ children: "Ingrese su correo"
140
+ }), invalidEmail && !emptyEmail && /*#__PURE__*/(0, _jsxRuntime.jsx)("label", {
141
+ children: "Ingrese un correo v\xE1lido"
142
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_TagAndInput.TagAndInput, {
143
+ inputType: "text",
144
+ inputId: "jobInput",
145
+ label: "Puesto laboral",
146
+ inputPlaceHolder: "Puesto dentro de la empresa"
147
+ }), emptyJob && /*#__PURE__*/(0, _jsxRuntime.jsx)("label", {
148
+ children: "Ingrese su puesto"
149
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_ScreenHeader.ScreenHeader, {
150
+ text: "Teléfono",
151
+ headerType: "input-name-header"
152
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
153
+ className: "phone-registration-user",
154
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)("select", {
155
+ name: "select",
156
+ className: "phone-options",
157
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("option", {
158
+ children: "+52"
159
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("option", {
160
+ children: "+54"
161
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("option", {
162
+ children: "+57"
163
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("option", {
164
+ children: "+506"
165
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("option", {
166
+ children: "+593"
167
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("option", {
168
+ children: "+503"
169
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("option", {
170
+ children: "+504"
171
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("option", {
172
+ children: "+507"
173
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("option", {
174
+ children: "+51"
175
+ })]
176
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_GeneralInput.GeneralInput, {
177
+ inputId: "phoneInput",
178
+ inputType: "text",
179
+ inputPlaceholder: "Teléfono"
180
+ })]
181
+ }), emptyPhone && /*#__PURE__*/(0, _jsxRuntime.jsx)("label", {
182
+ children: "Ingrese su n\xFAmero de tel\xE9fono"
183
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_ScreenHeader.ScreenHeader, {
184
+ text: "País",
185
+ headerType: "input-name-header"
186
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)("select", {
187
+ name: "select",
188
+ className: "country-options",
189
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("option", {
190
+ value: "value1",
191
+ selected: true,
192
+ children: "Selecciona tu pa\xEDs"
193
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("option", {
194
+ value: "value2",
195
+ children: "Argentina"
196
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("option", {
197
+ value: "value3",
198
+ children: "Colombia"
199
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("option", {
200
+ value: "value2",
201
+ children: "Ecuador"
202
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("option", {
203
+ value: "value3",
204
+ children: "El Salvador"
205
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("option", {
206
+ value: "value2",
207
+ children: "Honduras"
208
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("option", {
209
+ value: "value3",
210
+ children: "M\xE9xico"
211
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("option", {
212
+ value: "value2",
213
+ children: "Panam\xE1"
214
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("option", {
215
+ value: "value3",
216
+ children: "Per\xFA"
217
+ })]
218
+ }), emptyEmail && /*#__PURE__*/(0, _jsxRuntime.jsx)("label", {
219
+ children: "Seleccione su pa\xEDs"
220
+ })]
221
+ }, "3"), /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
222
+ className: "button-end",
223
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_GeneralButton.Button, {
224
+ buttonType: "general-default-button",
225
+ label: "Enviar",
226
+ onClick: function onClick(e) {
227
+ return validate(e);
228
+ }
229
+ })
230
+ }, "4"), /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
231
+ className: "progress-bar",
232
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
233
+ className: "progress-bar-first-step"
234
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
235
+ className: "progress-bar-registration"
236
+ })]
237
+ }, "5"), /*#__PURE__*/(0, _jsxRuntime.jsx)(_ScreenHeader.ScreenHeader, {
238
+ text: "Paso 1",
239
+ headerType: "date-header",
240
+ color: _variables.GlobalColors.s4
241
+ }, "6"), /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
242
+ className: "new-login",
243
+ children: /*#__PURE__*/(0, _jsxRuntime.jsxs)("p", {
244
+ className: "pre-registro",
245
+ children: ["\xBFYa tienes una cuenta?", /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
246
+ children: " Inicia Sesi\xF3n"
247
+ })]
248
+ })
249
+ }, "7")];
250
+ return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_styles.Container, {
251
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
252
+ className: "home-retailer",
253
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_CarouselImagesLogin.CarouselImagesLogin, {
254
+ panelImg: imageArrayCarousel,
255
+ panelText: textCarousel,
256
+ panelColor: backogroundColorCarousel
257
+ })
258
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
259
+ className: "home-login-retailer",
260
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_GradientPanel.GradientPanel, {
261
+ componentsArray: loginRight,
262
+ panelType: "home-login",
263
+ panelColor: _variables.GlobalColors.white
264
+ })
265
+ })]
266
+ });
267
+ };
268
+
269
+ exports.RegistrationLoginFirstStep = RegistrationLoginFirstStep;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.Container = void 0;
9
+
10
+ var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/taggedTemplateLiteral"));
11
+
12
+ var _styledComponents = _interopRequireDefault(require("styled-components"));
13
+
14
+ var _variables = require("../../../global-files/variables");
15
+
16
+ var _templateObject;
17
+
18
+ var Container = _styledComponents.default.div(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n display: flex;\n width: 100%;\n height: 100vh;\n .user {\n .name-registration-user {\n display: flex;\n justify-content: space-between;\n input {\n width: 160px;\n }\n }\n .input-name-header {\n margin-bottom: 4px;\n margin-top: 12px;\n }\n .phone-registration-user {\n display: flex;\n justify-content: space-between;\n .phone-options {\n width: 80px;\n }\n input {\n width: 100%;\n }\n & + * {\n margin-top: 10px;\n }\n }\n .country-options,\n .phone-options {\n width: 100%;\n border: 1px solid ", ";\n font-family: ", ";\n color: ", ";\n font-weight: normal;\n font-size: 12px;\n line-height: 15px;\n padding: 10px;\n outline: none;\n border-radius: 2px;\n resize: none;\n &:focus {\n border: 1px solid ", ";\n }\n }\n }\n .button-end {\n text-align: end;\n .general-default-button {\n width: 160px;\n }\n & + * {\n margin-top: 10px;\n }\n }\n .progress-bar {\n width: 100%;\n height: 8px;\n display: flex;\n justify-content: space-between;\n .progress-bar-first-step {\n width: 33.33%;\n background-color: rgb(196, 196, 196);\n }\n .progress-bar-registration {\n background-color: rgb(226, 226, 226);\n width: 66.66%;\n }\n }\n .date-header {\n .new-login {\n & + * {\n margin-top: 20px;\n }\n }\n }\n .home-login-retailer,\n .home-retailer {\n width: 50%;\n }\n"])), _variables.GlobalColors.s2, _variables.FontFamily.AvenirNext, _variables.GlobalColors.s4, _variables.GlobalColors.magenta_s2);
19
+
20
+ exports.Container = Container;
package/dist/index.js CHANGED
@@ -886,17 +886,4 @@ Object.keys(_VerificationCodeResetPassword).forEach(function (key) {
886
886
  return _VerificationCodeResetPassword[key];
887
887
  }
888
888
  });
889
- });
890
-
891
- var _dashboardUtils = require("./components/pages/Dashboard/dashboardUtils");
892
-
893
- Object.keys(_dashboardUtils).forEach(function (key) {
894
- if (key === "default" || key === "__esModule") return;
895
- if (key in exports && exports[key] === _dashboardUtils[key]) return;
896
- Object.defineProperty(exports, key, {
897
- enumerable: true,
898
- get: function get() {
899
- return _dashboardUtils[key];
900
- }
901
- });
902
889
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "contentoh-components-library",
3
- "version": "21.2.37",
3
+ "version": "21.2.38",
4
4
  "dependencies": {
5
5
  "@aws-amplify/auth": "^4.5.3",
6
6
  "@aws-amplify/datastore": "^3.11.0",
@@ -3,6 +3,7 @@ import { Chart } from "react-chartjs-2";
3
3
  import "chart.js/auto";
4
4
 
5
5
  export const Graphic = ({ data, type, options }) => {
6
+
6
7
  return (
7
8
  <Container>
8
9
  <Chart type={type} data={data} options={options} />
@@ -9,14 +9,13 @@ export const Container = styled.div`
9
9
  flex-direction: column;
10
10
  justify-content: space-between;
11
11
  overflow: none;
12
- width: ${({ bar }) => (bar ? 260 : 58)}px;
13
- border-radius: ${({ bar }) => (bar ? 20 : 50)}px;
12
+ width: ${({ bar }) => (bar ? 250 : 58)}px;
14
13
  background: linear-gradient(180deg, #e33aa9 0%, #3b1366 100%);
15
14
  scrollbar-width: none;
16
15
  display: flex;
17
16
  text-align: center;
18
17
  transition: width 0.3s linear;
19
- margin: 10px 0 10px 20px;
18
+ margin: 0;
20
19
  & + * {
21
20
  margin-left: 30px;
22
21
  }
@@ -31,8 +30,7 @@ export const Container = styled.div`
31
30
  display: flex;
32
31
  flex-direction: column;
33
32
  align-items: flex-start;
34
- margin-top: ${({ bar }) => (bar === "" ? 145 : 40)}%;
35
- padding-left: ${({ bar }) => (bar ? 10 : 0)}px;
33
+ margin-top: 50px;
36
34
  .active {
37
35
  background: #e33aa9;
38
36
  color: #fafafa;
@@ -51,7 +49,7 @@ export const Container = styled.div`
51
49
  `;
52
50
 
53
51
  export const NavLinkOption = styled(NavLink)`
54
- height: ${({ bar }) => (bar ? 32 : 38)}px;
52
+ height: 38px;
55
53
  display: flex;
56
54
  justify-content: ${({ bar }) => (bar ? "flex-start" : "center")};
57
55
  border-radius: ${({ bar }) => (bar ? 18 : 100)}px;
@@ -61,7 +59,6 @@ export const NavLinkOption = styled(NavLink)`
61
59
  font-weight: 400;
62
60
  font-size: 18px;
63
61
  line-height: 21px;
64
- //margin: 5px 0;
65
62
  letter-spacing: -0.015em;
66
63
  color: #fafafa;
67
64
  text-decoration: none;
@@ -70,6 +67,8 @@ export const NavLinkOption = styled(NavLink)`
70
67
  padding: 0 17px;
71
68
  &:hover {
72
69
  background: #e33aa9;
70
+ color: #fafafa;
71
+ text-decoration: none;
73
72
  }
74
73
  p {
75
74
  cursor: pointer;
@@ -13,24 +13,15 @@ CustomSelectDefault.args = {
13
13
  options: [
14
14
  {
15
15
  id: 1,
16
- name: "Decoración",
16
+ value: "Decoración",
17
17
  subOptions: [
18
- { id: 1, name: "Espejos", isSelected: true },
19
- { id: 2, name: "Persianas" },
18
+ { id: 1, value: "Espejos" },
19
+ { id: 2, value: "Persianas" },
20
20
  ],
21
21
  },
22
- { id: 2, name: "Eléctrico", isSelected: true },
23
- { id: 3, name: "Ferretería" },
24
- { id: 4, name: "Herramientas" },
25
- { id: 5, name: "Iluminación" },
22
+ { id: 2, value: "Eléctrico" },
23
+ { id: 3, value: "Ferretería" },
24
+ { id: 4, value: "Herramientas" },
25
+ { id: 5, value: "Iluminación" },
26
26
  ],
27
- onClickItem: (v, id) => {
28
- if (v) {
29
- console.log("Agregar a la lista", id);
30
- } else {
31
- console.log("Eliminar a la lista", id);
32
- }
33
- },
34
- icon: "",
35
- showSearchBar: true,
36
27
  };
@@ -7,7 +7,6 @@ export const SelecItem = ({
7
7
  setParameterArray,
8
8
  activeFilters,
9
9
  setActiveFilters,
10
- onClickItem,
11
10
  }) => {
12
11
  const [showSubOptions, setShowSubOptions] = useState(false);
13
12
  const [chkGlobal, setChkGlobal] = useState(false);
@@ -18,9 +17,6 @@ export const SelecItem = ({
18
17
  id={"main-item-" + option.id}
19
18
  label={option.name}
20
19
  onChange={(e) => {
21
- if (onClickItem) {
22
- onClickItem(e.target.checked, option.id)
23
- }
24
20
  const subOptions = option.subOptions;
25
21
  const filtersCopy = { ...activeFilters };
26
22
  if (subOptions) {
@@ -81,9 +77,6 @@ export const SelecItem = ({
81
77
  activeFilters[option.name][sub.name]
82
78
  }
83
79
  onChange={(e) => {
84
- if (onClickItem) {
85
- onClickItem(e.target.checked, sub.id)
86
- }
87
80
  if (e.target.checked) {
88
81
  setParameterArray((current) =>
89
82
  [...current, sub.id].sort((a, b) => a - b)
@@ -13,8 +13,6 @@ export const CustomSelect = ({
13
13
  customSelectId = "defaultSelectId",
14
14
  defaultOption,
15
15
  setParameterArray,
16
- onClickItem,
17
- icon,
18
16
  }) => {
19
17
  const [filters, setFilters] = useState(options || []);
20
18
  const [showList, setShowList] = useCloseModal(customSelectId);
@@ -35,19 +33,6 @@ export const CustomSelect = ({
35
33
  const end = new Date();
36
34
  setStartDate(start);
37
35
  setEndDate(end);
38
- const obj = {};
39
- options.forEach((o) => {
40
- const { name, isSelected, subOptions } = o;
41
- if (isSelected) obj[name] = {};
42
- subOptions?.forEach((so) => {
43
- const { name: nameSO, isSelected: isSelectedSO } = so;
44
- if (isSelectedSO) {
45
- if (!obj[name]) obj[name] = {};
46
- obj[name][nameSO] = true;
47
- }
48
- });
49
- });
50
- setActiveFilters(obj);
51
36
  }, []);
52
37
 
53
38
  const onChangeDatePicker = (dates) => {
@@ -79,14 +64,10 @@ export const CustomSelect = ({
79
64
  }, [text]);
80
65
 
81
66
  return (
82
- <Container id={customSelectId} selectLabel={selectLabel}>
67
+ <Container id={customSelectId}>
83
68
  <div className="button-list" onClick={() => setShowList(!showList)}>
84
69
  <p>{selectLabel}</p>
85
- {icon ? (
86
- <img src={icon} alt="Favorite" width={"20px"} />
87
- ) : (
88
- <div className="arrow-item">&#9664;</div>
89
- )}
70
+ <div className="arrow-item">&#9664;</div>
90
71
  </div>
91
72
  {showList && (
92
73
  <div className="select-container">
@@ -135,7 +116,6 @@ export const CustomSelect = ({
135
116
  setParameterArray={setParameterArray}
136
117
  activeFilters={activeFilters}
137
118
  setActiveFilters={setActiveFilters}
138
- onClickItem={onClickItem}
139
119
  />
140
120
  )
141
121
  )}
@@ -9,9 +9,7 @@ export const Container = styled.div`
9
9
  font-family: ${FontFamily.Raleway};
10
10
  font-size: 13px;
11
11
  display: flex;
12
- padding: ${(props) => (props.selectLabel !== "" ? "10px 15px" : "5px 5px")};
13
- //padding: 10px 15px;
14
- //padding: 5px 5px;
12
+ padding: 10px 15px;
15
13
  justify-content: space-between;
16
14
  border-radius: 50px;
17
15
  background-color: #fff;
@@ -22,7 +20,6 @@ export const Container = styled.div`
22
20
  transform: rotate(-90deg);
23
21
  cursor: pointer;
24
22
  font-size: 10px;
25
- margin-left: 10px;
26
23
  }
27
24
  & + * {
28
25
  margin-top: 10px;
@@ -1,10 +1,5 @@
1
1
  import { Container } from "./styles";
2
2
  import { Graphic } from "../../atoms/Graphic";
3
- import {
4
- getFullStatus,
5
- removeOldStatus,
6
- getStatusColor,
7
- } from "./dashboardMetricUtils";
8
3
 
9
4
  export const DashboardMetric = ({
10
5
  label,
@@ -15,17 +10,12 @@ export const DashboardMetric = ({
15
10
  scale = "x",
16
11
  displayScale = false,
17
12
  displayLegend = false,
18
- showPercent = false,
19
- borderColor,
20
13
  }) => {
21
- const labels =
22
- type === "doughnut"
23
- ? Object.keys(dataObject).map((key) => getFullStatus(key))
24
- : Object.keys(dataObject);
25
- const newObject =
26
- type === "doughnut" ? removeOldStatus(dataObject) : dataObject;
27
- const values = Object.values(newObject);
28
- const colorsArray = Object.keys(newObject).map((key) => getStatusColor(key));
14
+ const labels = Object.keys(dataObject);
15
+ const values = Object.values(dataObject);
16
+ const colorsArray = values.map(
17
+ () => `#${Math.floor(Math.random() * 16777215).toString(16)}`
18
+ );
29
19
 
30
20
  const data = {
31
21
  labels,
@@ -33,7 +23,6 @@ export const DashboardMetric = ({
33
23
  {
34
24
  data: values,
35
25
  backgroundColor: colorsArray,
36
- borderColor: borderColor,
37
26
  },
38
27
  ],
39
28
  };
@@ -49,25 +38,12 @@ export const DashboardMetric = ({
49
38
  maintainAspectRatio: false,
50
39
  aspectRatio: 1,
51
40
  plugins: {
52
- tooltip: {
53
- callbacks: {
54
- label: ({ dataset, element }) => {
55
- const sum = dataset?.data?.reduce((accumulator, value) => {
56
- return accumulator + value;
57
- }, 0);
58
- const { raw } = element.$context;
59
- const percent = Math.round(100 * (raw / sum)) + "%";
60
- return showPercent ? percent : raw;
61
- },
62
- },
63
- },
64
41
  legend: {
65
42
  position: "right",
66
43
  display: displayLegend,
67
- labels: {
68
- usePointStyle: true,
69
- boxWidth: 8,
70
- },
44
+ },
45
+ title: {
46
+ display: false,
71
47
  },
72
48
  },
73
49
  scales: {
@@ -48,7 +48,7 @@ export const Container = styled.div`
48
48
  }
49
49
 
50
50
  .graphic-cotainer {
51
- height: 320px;
51
+ height: 300px;
52
52
  border: 1px solid ${GlobalColors.s3};
53
53
  padding: 10px;
54
54
  border-radius: 5px;
@@ -166,7 +166,7 @@ export const Dashboard = ({ jwt, user }) => {
166
166
  },
167
167
  {
168
168
  id: 7,
169
- name: "El mes pasado",
169
+ name: "Este mes",
170
170
  function: () =>
171
171
  setDatesRange({
172
172
  startDate: new Date(
@@ -286,7 +286,6 @@ export const Dashboard = ({ jwt, user }) => {
286
286
  }}
287
287
  type="doughnut"
288
288
  displayLegend={true}
289
- showPercent={true}
290
289
  />
291
290
  <DashboardMetric
292
291
  label={"Productos solicitados"}
@@ -304,7 +303,6 @@ export const Dashboard = ({ jwt, user }) => {
304
303
  loadRequiredProducts(evt);
305
304
  setOrderByRequired(evt);
306
305
  }}
307
- borderColor={"#3B1366"}
308
306
  />
309
307
  </div>
310
308
  </Container>
package/src/index.js CHANGED
@@ -73,6 +73,3 @@ export * from "./components/pages/RegistrationLoginThirdStep";
73
73
  export * from "./components/pages/RetailerProductEdition";
74
74
  export * from "./components/pages/ProviderProductEdition";
75
75
  export * from "./components/pages/VerificationCodeResetPassword";
76
-
77
- //functions
78
- export * from "./components/pages/Dashboard/dashboardUtils";