contentoh-components-library 21.4.4 → 21.4.5
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/Avatar/index.js +3 -2
- package/dist/components/atoms/CheckBox/index.js +4 -1
- package/dist/components/atoms/CheckBox/styles.js +1 -1
- package/dist/components/atoms/ImageCarousel/ImgeSlider.stories.js +90 -0
- package/dist/components/atoms/ImageCarousel/index.js +120 -0
- package/dist/components/atoms/ImageCarousel/styles.js +18 -0
- package/dist/components/atoms/PercentTag/PercentTag.stories.js +31 -0
- package/dist/components/atoms/PercentTag/index.js +23 -0
- package/dist/components/atoms/PercentTag/styles.js +22 -0
- package/dist/components/atoms/RatingStars/RatingStars.stories.js +30 -0
- package/dist/components/atoms/RatingStars/index.js +53 -0
- package/dist/components/atoms/RatingStars/styles.js +18 -0
- package/dist/components/atoms/RetailerCatalog/RetailerCatalog.stories.js +48 -0
- package/dist/components/atoms/RetailerCatalog/index.js +69 -0
- package/dist/components/atoms/RetailerCatalog/styles.js +20 -0
- package/dist/components/atoms/RetailerOption/RetailerOption.stories.js +33 -0
- package/dist/components/atoms/RetailerOption/index.js +62 -0
- package/dist/components/atoms/RetailerOption/styles.js +20 -0
- package/dist/components/atoms/RetailersList/RetailersList.stories.js +45 -0
- package/dist/components/atoms/RetailersList/index.js +46 -0
- package/dist/components/atoms/RetailersList/styles.js +18 -0
- package/dist/components/atoms/UserCatalog/UserCatalog.stories.js +73 -0
- package/dist/components/atoms/UserCatalog/index.js +101 -0
- package/dist/components/atoms/UserCatalog/styles.js +18 -0
- package/dist/components/atoms/UserOption/UserOption.stories.js +40 -0
- package/dist/components/atoms/UserOption/index.js +130 -0
- package/dist/components/atoms/UserOption/styles.js +20 -0
- package/dist/components/atoms/UserSelector/UserSelector.stories.js +40 -0
- package/dist/components/atoms/UserSelector/index.js +98 -0
- package/dist/components/atoms/UserSelector/styles.js +32 -0
- package/dist/components/molecules/GridItem/GridItem.stories.js +123 -0
- package/dist/components/molecules/GridItem/index.js +143 -0
- package/dist/components/molecules/GridItem/styles.js +20 -0
- package/dist/components/molecules/HeaderItem/ColumnItem.js +23 -0
- package/dist/components/molecules/HeaderItem/HeaderItem.stories.js +70 -0
- package/dist/components/molecules/HeaderItem/index.js +42 -0
- package/dist/components/molecules/HeaderItem/styles.js +30 -0
- package/dist/components/molecules/RowItem/ColumnItem.js +23 -0
- package/dist/components/molecules/RowItem/RowItem.stories.js +5242 -0
- package/dist/components/molecules/RowItem/index.js +58 -0
- package/dist/components/molecules/RowItem/styles.js +30 -0
- package/dist/components/organisms/GridProducts/GridProducts.stories.js +5097 -0
- package/dist/components/organisms/GridProducts/index.js +63 -0
- package/dist/components/organisms/GridProducts/styles.js +18 -0
- package/dist/components/organisms/GridProducts/utils.js +149 -0
- package/dist/components/pages/RetailerProductEdition/RetailerProductEdition.stories.js +41 -28
- package/dist/components/pages/RetailerProductEdition/index.js +23 -0
- package/dist/index.js +201 -58
- package/package.json +2 -1
- package/src/components/atoms/Avatar/index.js +8 -2
- package/src/components/atoms/CheckBox/index.js +2 -1
- package/src/components/atoms/CheckBox/styles.js +2 -0
- package/src/components/atoms/ImageCarousel/ImgeSlider.stories.js +76 -0
- package/src/components/atoms/ImageCarousel/index.js +103 -0
- package/src/components/atoms/ImageCarousel/styles.js +79 -0
- package/src/components/atoms/PercentTag/PercentTag.stories.js +7 -0
- package/src/components/atoms/PercentTag/index.js +9 -0
- package/src/components/atoms/PercentTag/styles.js +69 -0
- package/src/components/atoms/RatingStars/RatingStars.stories.js +10 -0
- package/src/components/atoms/RatingStars/index.js +31 -0
- package/src/components/atoms/RatingStars/styles.js +28 -0
- package/src/components/atoms/RetailerCatalog/RetailerCatalog.stories.js +36 -0
- package/src/components/atoms/RetailerCatalog/index.js +49 -0
- package/src/components/atoms/RetailerCatalog/styles.js +30 -0
- package/src/components/atoms/RetailerOption/RetailerOption.stories.js +15 -0
- package/src/components/atoms/RetailerOption/index.js +53 -0
- package/src/components/atoms/RetailerOption/styles.js +41 -0
- package/src/components/atoms/RetailersList/RetailersList.stories.js +33 -0
- package/src/components/atoms/RetailersList/index.js +20 -0
- package/src/components/atoms/RetailersList/styles.js +19 -0
- package/src/components/atoms/UserCatalog/UserCatalog.stories.js +67 -0
- package/src/components/atoms/UserCatalog/index.js +94 -0
- package/src/components/atoms/UserCatalog/styles.js +24 -0
- package/src/components/atoms/UserOption/UserOption.stories.js +25 -0
- package/src/components/atoms/UserOption/index.js +95 -0
- package/src/components/atoms/UserOption/styles.js +61 -0
- package/src/components/atoms/UserSelector/UserSelector.stories.js +25 -0
- package/src/components/atoms/UserSelector/index.js +86 -0
- package/src/components/atoms/UserSelector/styles.js +55 -0
- package/src/components/molecules/GridItem/GridItem.stories.js +126 -0
- package/src/components/molecules/GridItem/index.js +97 -0
- package/src/components/molecules/GridItem/styles.js +104 -0
- package/src/components/molecules/HeaderItem/ColumnItem.js +9 -0
- package/src/components/molecules/HeaderItem/HeaderItem.stories.js +24 -0
- package/src/components/molecules/HeaderItem/index.js +26 -0
- package/src/components/molecules/HeaderItem/styles.js +27 -0
- package/src/components/molecules/RowItem/ColumnItem.js +9 -0
- package/src/components/molecules/RowItem/RowItem.stories.js +5660 -0
- package/src/components/molecules/RowItem/index.js +45 -0
- package/src/components/molecules/RowItem/styles.js +40 -0
- package/src/components/organisms/GridProducts/GridProducts.stories.js +5485 -0
- package/src/components/organisms/GridProducts/index.js +50 -0
- package/src/components/organisms/GridProducts/styles.js +15 -0
- package/src/components/organisms/GridProducts/utils.js +111 -0
- package/src/components/organisms/OrderDetail/utils/Table/utils.js +6 -16
- package/src/components/pages/RetailerProductEdition/RetailerProductEdition.stories.js +39 -21
- package/src/components/pages/RetailerProductEdition/index.js +12 -0
- package/src/index.js +12 -0
- package/dist/assets/fonts/roboto/LICENSE.txt +0 -202
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import { UserCatalog } from ".";
|
|
2
|
+
|
|
3
|
+
export default {
|
|
4
|
+
title: "Components/atoms/UserCatalog",
|
|
5
|
+
component: UserCatalog,
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
const Template = (args) => <UserCatalog {...args} />;
|
|
9
|
+
export const UserCatalogDefault = Template.bind({});
|
|
10
|
+
UserCatalogDefault.args = {
|
|
11
|
+
product: "product",
|
|
12
|
+
datasheet: 54,
|
|
13
|
+
description: 54,
|
|
14
|
+
images: 55,
|
|
15
|
+
auditor: 37,
|
|
16
|
+
auditors: [
|
|
17
|
+
{
|
|
18
|
+
name: "José",
|
|
19
|
+
last_name: "Castañeda",
|
|
20
|
+
id_user: 37,
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
name: "Eduardo ",
|
|
24
|
+
last_name: " Reyes",
|
|
25
|
+
id_user: 195,
|
|
26
|
+
},
|
|
27
|
+
],
|
|
28
|
+
textSpecialists: [
|
|
29
|
+
{
|
|
30
|
+
name: "Especialista",
|
|
31
|
+
last_name: "Textos",
|
|
32
|
+
id_user: 36,
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
name: "ESPECIALISTA TXTS PRUEBA",
|
|
36
|
+
last_name: "",
|
|
37
|
+
id_user: 54,
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
name: "Gerson",
|
|
41
|
+
last_name: "Martínez",
|
|
42
|
+
id_user: 57,
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
name: "Angel",
|
|
46
|
+
last_name: "Perea",
|
|
47
|
+
id_user: 232,
|
|
48
|
+
},
|
|
49
|
+
],
|
|
50
|
+
imagesSpecialists: [
|
|
51
|
+
{
|
|
52
|
+
name: "Especialista",
|
|
53
|
+
last_name: "Imágenes",
|
|
54
|
+
id_user: 35,
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
name: "ESPECIALISTA ED PRUEBA",
|
|
58
|
+
last_name: "",
|
|
59
|
+
id_user: 55,
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
name: "Uriel",
|
|
63
|
+
last_name: "Herrera",
|
|
64
|
+
id_user: 196,
|
|
65
|
+
},
|
|
66
|
+
],
|
|
67
|
+
};
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import { Container } from "./styles";
|
|
2
|
+
import { Avatar } from "../Avatar";
|
|
3
|
+
import { getProfilePicture } from "../../../global-files/data";
|
|
4
|
+
import { UserOption } from "../UserOption";
|
|
5
|
+
import { useCloseModal } from "../../../global-files/customHooks";
|
|
6
|
+
export const UserCatalog = ({
|
|
7
|
+
datasheet,
|
|
8
|
+
description,
|
|
9
|
+
images,
|
|
10
|
+
auditor,
|
|
11
|
+
auditors = [],
|
|
12
|
+
textSpecialists = [],
|
|
13
|
+
imagesSpecialists = [],
|
|
14
|
+
id = "list-modal",
|
|
15
|
+
onAssign,
|
|
16
|
+
product,
|
|
17
|
+
}) => {
|
|
18
|
+
const [showList, setShowList] = useCloseModal(id);
|
|
19
|
+
|
|
20
|
+
return (
|
|
21
|
+
<Container
|
|
22
|
+
id={id}
|
|
23
|
+
onClick={(e) => {
|
|
24
|
+
if (!e.target.closest(`#${id} .users-assigned-list`))
|
|
25
|
+
setShowList(!showList);
|
|
26
|
+
}}
|
|
27
|
+
>
|
|
28
|
+
{datasheet && (
|
|
29
|
+
<Avatar
|
|
30
|
+
image={getProfilePicture(datasheet, 26, 26)}
|
|
31
|
+
altText={"datasheet specialist"}
|
|
32
|
+
imageType={"medium-image"}
|
|
33
|
+
/>
|
|
34
|
+
)}
|
|
35
|
+
{description && (
|
|
36
|
+
<Avatar
|
|
37
|
+
image={getProfilePicture(description, 26, 26)}
|
|
38
|
+
altText={"description specialist"}
|
|
39
|
+
imageType={"medium-image"}
|
|
40
|
+
/>
|
|
41
|
+
)}
|
|
42
|
+
{images && (
|
|
43
|
+
<Avatar
|
|
44
|
+
image={getProfilePicture(images, 26, 26)}
|
|
45
|
+
altText={"images specialist"}
|
|
46
|
+
imageType={"medium-image"}
|
|
47
|
+
/>
|
|
48
|
+
)}
|
|
49
|
+
{auditor && (
|
|
50
|
+
<Avatar
|
|
51
|
+
image={getProfilePicture(auditor, 26, 26)}
|
|
52
|
+
altText={"auditor"}
|
|
53
|
+
imageType={"medium-image"}
|
|
54
|
+
/>
|
|
55
|
+
)}
|
|
56
|
+
{showList && (
|
|
57
|
+
<div className="users-assigned-list">
|
|
58
|
+
<UserOption
|
|
59
|
+
onAssign={onAssign}
|
|
60
|
+
product={product}
|
|
61
|
+
userId={datasheet}
|
|
62
|
+
usersArray={textSpecialists}
|
|
63
|
+
id={id + "-datasheet"}
|
|
64
|
+
index={"datasheet"}
|
|
65
|
+
/>
|
|
66
|
+
<UserOption
|
|
67
|
+
onAssign={onAssign}
|
|
68
|
+
product={product}
|
|
69
|
+
userId={description}
|
|
70
|
+
usersArray={textSpecialists}
|
|
71
|
+
id={id + "-description"}
|
|
72
|
+
index={"description"}
|
|
73
|
+
/>
|
|
74
|
+
<UserOption
|
|
75
|
+
onAssign={onAssign}
|
|
76
|
+
product={product}
|
|
77
|
+
userId={images}
|
|
78
|
+
usersArray={imagesSpecialists}
|
|
79
|
+
id={id + "-images"}
|
|
80
|
+
index={"image"}
|
|
81
|
+
/>
|
|
82
|
+
<UserOption
|
|
83
|
+
onAssign={onAssign}
|
|
84
|
+
product={product}
|
|
85
|
+
userId={auditor}
|
|
86
|
+
usersArray={auditors}
|
|
87
|
+
id={id + "-auditor"}
|
|
88
|
+
index={"auditor"}
|
|
89
|
+
/>
|
|
90
|
+
</div>
|
|
91
|
+
)}
|
|
92
|
+
</Container>
|
|
93
|
+
);
|
|
94
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import styled from "styled-components";
|
|
2
|
+
|
|
3
|
+
export const Container = styled.div`
|
|
4
|
+
display: flex;
|
|
5
|
+
justify-content: center;
|
|
6
|
+
width: 100%;
|
|
7
|
+
height: 100%;
|
|
8
|
+
cursor: pointer;
|
|
9
|
+
position: relative;
|
|
10
|
+
|
|
11
|
+
.users-assigned-list {
|
|
12
|
+
background-color: white;
|
|
13
|
+
padding: 10px;
|
|
14
|
+
box-shadow: 0px 2px 4px #00000040;
|
|
15
|
+
position: absolute;
|
|
16
|
+
top: 100%;
|
|
17
|
+
left: 0;
|
|
18
|
+
z-index: 400;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
> * + * {
|
|
22
|
+
margin-left: -10px;
|
|
23
|
+
}
|
|
24
|
+
`;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { UserOption } from ".";
|
|
2
|
+
|
|
3
|
+
export default {
|
|
4
|
+
title: "Components/atoms/UserOption",
|
|
5
|
+
component: UserOption,
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
const Template = (args) => <UserOption {...args} />;
|
|
9
|
+
export const UserOptionDefault = Template.bind({});
|
|
10
|
+
UserOptionDefault.args = {
|
|
11
|
+
userId: 37,
|
|
12
|
+
index: "datasheet",
|
|
13
|
+
usersArray: [
|
|
14
|
+
{
|
|
15
|
+
name: "José",
|
|
16
|
+
last_name: "Castañeda",
|
|
17
|
+
id_user: 37,
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
name: "Eduardo ",
|
|
21
|
+
last_name: " Reyes",
|
|
22
|
+
id_user: 195,
|
|
23
|
+
},
|
|
24
|
+
],
|
|
25
|
+
};
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import { Container } from "./styles";
|
|
2
|
+
import { Avatar } from "../Avatar";
|
|
3
|
+
import { useState } from "react";
|
|
4
|
+
import { useEffect } from "react";
|
|
5
|
+
import { getProfilePicture } from "../../../global-files/data";
|
|
6
|
+
import { servicesCodeIcon } from "../../organisms/OrderDetail/utils/Table/utils";
|
|
7
|
+
import { UserSelector } from "../UserSelector";
|
|
8
|
+
import { useCloseModal } from "../../../global-files/customHooks";
|
|
9
|
+
|
|
10
|
+
export const UserOption = ({
|
|
11
|
+
userId,
|
|
12
|
+
index,
|
|
13
|
+
usersArray,
|
|
14
|
+
id,
|
|
15
|
+
onAssign,
|
|
16
|
+
product,
|
|
17
|
+
}) => {
|
|
18
|
+
index === "auditor" && console.log(userId);
|
|
19
|
+
const [userAssigned, setUserAssigned] = useState({});
|
|
20
|
+
const [showSelector, setShowSelector] = useCloseModal(id);
|
|
21
|
+
const [assignationTarget, setAssignationTarget] = useState("");
|
|
22
|
+
const [concept, setConcept] = useState("");
|
|
23
|
+
const [target, setTarget] = useState("");
|
|
24
|
+
|
|
25
|
+
const icons = servicesCodeIcon;
|
|
26
|
+
|
|
27
|
+
useEffect(() => {
|
|
28
|
+
if (usersArray) {
|
|
29
|
+
usersArray.forEach((user) => {
|
|
30
|
+
if (user.id_user === userId) {
|
|
31
|
+
setUserAssigned(user);
|
|
32
|
+
}
|
|
33
|
+
});
|
|
34
|
+
}
|
|
35
|
+
}, [userId, usersArray]);
|
|
36
|
+
|
|
37
|
+
useEffect(() => {
|
|
38
|
+
switch (index) {
|
|
39
|
+
case "datasheet":
|
|
40
|
+
case "description":
|
|
41
|
+
setAssignationTarget(`id_${index}_especialist`);
|
|
42
|
+
setConcept(index);
|
|
43
|
+
setTarget("especialist");
|
|
44
|
+
break;
|
|
45
|
+
case "image":
|
|
46
|
+
setAssignationTarget(`id_${index}s_especialist`);
|
|
47
|
+
setConcept(index + "s");
|
|
48
|
+
setTarget("especialist");
|
|
49
|
+
break;
|
|
50
|
+
case "auditor":
|
|
51
|
+
setAssignationTarget(`id_${index}`);
|
|
52
|
+
setConcept(index);
|
|
53
|
+
setTarget(index);
|
|
54
|
+
break;
|
|
55
|
+
default:
|
|
56
|
+
break;
|
|
57
|
+
}
|
|
58
|
+
}, [index]);
|
|
59
|
+
|
|
60
|
+
return (
|
|
61
|
+
<Container
|
|
62
|
+
onClick={(e) => {
|
|
63
|
+
setShowSelector(!showSelector);
|
|
64
|
+
e.stopPropagation();
|
|
65
|
+
}}
|
|
66
|
+
id={id}
|
|
67
|
+
>
|
|
68
|
+
<div className="image-and-name">
|
|
69
|
+
<Avatar
|
|
70
|
+
image={getProfilePicture(userAssigned?.id_user, 26, 26)}
|
|
71
|
+
altText={"datasheet especialist"}
|
|
72
|
+
imageType={"medium-image"}
|
|
73
|
+
/>
|
|
74
|
+
<p>
|
|
75
|
+
{userAssigned?.name} {userAssigned?.last_name}
|
|
76
|
+
</p>
|
|
77
|
+
</div>
|
|
78
|
+
<div className="icon-container">{icons[index]}</div>
|
|
79
|
+
{showSelector && (
|
|
80
|
+
<UserSelector
|
|
81
|
+
id={id}
|
|
82
|
+
searchLabel="Buscar Usuario"
|
|
83
|
+
index={index}
|
|
84
|
+
usersArray={usersArray}
|
|
85
|
+
position="absolute"
|
|
86
|
+
onAssign={onAssign}
|
|
87
|
+
product={product}
|
|
88
|
+
assignationTarget={assignationTarget}
|
|
89
|
+
target={target}
|
|
90
|
+
concept={concept}
|
|
91
|
+
/>
|
|
92
|
+
)}
|
|
93
|
+
</Container>
|
|
94
|
+
);
|
|
95
|
+
};
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import styled from "styled-components";
|
|
2
|
+
import { FontFamily } from "../../../global-files/variables";
|
|
3
|
+
|
|
4
|
+
export const Container = styled.div`
|
|
5
|
+
border: 1px solid #f0f0f0;
|
|
6
|
+
border-radius: 5px;
|
|
7
|
+
color: #262626;
|
|
8
|
+
font-size: 12px;
|
|
9
|
+
font-family: ${FontFamily.Lato};
|
|
10
|
+
display: flex;
|
|
11
|
+
align-items: center;
|
|
12
|
+
padding: 5px 10px;
|
|
13
|
+
justify-content: space-between;
|
|
14
|
+
cursor: pointer;
|
|
15
|
+
position: relative;
|
|
16
|
+
background-color: white;
|
|
17
|
+
|
|
18
|
+
.image-and-name {
|
|
19
|
+
display: flex;
|
|
20
|
+
align-items: center;
|
|
21
|
+
|
|
22
|
+
div + p {
|
|
23
|
+
margin-left: 10px;
|
|
24
|
+
white-space: nowrap;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
& + * {
|
|
28
|
+
margin-left: 10px;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.icon-container {
|
|
33
|
+
position: relative;
|
|
34
|
+
span {
|
|
35
|
+
color: #808080;
|
|
36
|
+
cursor: pointer;
|
|
37
|
+
|
|
38
|
+
& + span {
|
|
39
|
+
display: none;
|
|
40
|
+
position: absolute;
|
|
41
|
+
right: 120%;
|
|
42
|
+
top: 50%;
|
|
43
|
+
transform: translateY(-50%);
|
|
44
|
+
white-space: nowrap;
|
|
45
|
+
border: 1px solid #f0f0f0;
|
|
46
|
+
padding: 5px;
|
|
47
|
+
background-color: white;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
&:hover {
|
|
51
|
+
& + span {
|
|
52
|
+
display: block;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
& + * {
|
|
59
|
+
margin-top: 5px;
|
|
60
|
+
}
|
|
61
|
+
`;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { UserSelector } from ".";
|
|
2
|
+
|
|
3
|
+
export default {
|
|
4
|
+
title: "Components/atoms/UserSelector",
|
|
5
|
+
component: UserSelector,
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
const Template = (args) => <UserSelector {...args} />;
|
|
9
|
+
export const UserSelectorDefault = Template.bind({});
|
|
10
|
+
UserSelectorDefault.args = {
|
|
11
|
+
searchLabel: "Buscar auditor",
|
|
12
|
+
index: "auditor",
|
|
13
|
+
usersArray: [
|
|
14
|
+
{
|
|
15
|
+
name: "José",
|
|
16
|
+
last_name: "Castañeda",
|
|
17
|
+
id_user: 37,
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
name: "Eduardo ",
|
|
21
|
+
last_name: " Reyes",
|
|
22
|
+
id_user: 195,
|
|
23
|
+
},
|
|
24
|
+
],
|
|
25
|
+
};
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import { Container } from "./styles";
|
|
2
|
+
import { faSearch } from "@fortawesome/free-solid-svg-icons";
|
|
3
|
+
import { FontAwesomeIcon as Icon } from "@fortawesome/react-fontawesome";
|
|
4
|
+
import { Avatar } from "../Avatar";
|
|
5
|
+
import { getProfilePicture } from "../../../global-files/data";
|
|
6
|
+
import { useState } from "react";
|
|
7
|
+
import { useEffect } from "react";
|
|
8
|
+
|
|
9
|
+
export const UserSelector = ({
|
|
10
|
+
searchLabel,
|
|
11
|
+
usersArray,
|
|
12
|
+
position,
|
|
13
|
+
id,
|
|
14
|
+
onAssign,
|
|
15
|
+
product,
|
|
16
|
+
assignationTarget,
|
|
17
|
+
target,
|
|
18
|
+
concept,
|
|
19
|
+
}) => {
|
|
20
|
+
const [text, setText] = useState([]);
|
|
21
|
+
const [userFiltered, setUsersFiltered] = useState([]);
|
|
22
|
+
|
|
23
|
+
useEffect(() => {
|
|
24
|
+
if (usersArray) setUsersFiltered(usersArray);
|
|
25
|
+
}, [usersArray]);
|
|
26
|
+
|
|
27
|
+
const onChangeText = (e) => {
|
|
28
|
+
setText(e.target.value);
|
|
29
|
+
if (usersArray)
|
|
30
|
+
setUsersFiltered(
|
|
31
|
+
usersArray.filter((user) =>
|
|
32
|
+
(user.name + " " + user.last_name)
|
|
33
|
+
.toLowerCase()
|
|
34
|
+
.includes(e.target.value.toLowerCase())
|
|
35
|
+
)
|
|
36
|
+
);
|
|
37
|
+
};
|
|
38
|
+
|
|
39
|
+
return (
|
|
40
|
+
<Container position={position} id={id + "users-list"}>
|
|
41
|
+
<div className="search-cotainer">
|
|
42
|
+
<Icon icon={faSearch} />
|
|
43
|
+
<input
|
|
44
|
+
type="text"
|
|
45
|
+
className="search"
|
|
46
|
+
placeholder={searchLabel}
|
|
47
|
+
value={text}
|
|
48
|
+
onChange={onChangeText}
|
|
49
|
+
autoFocus
|
|
50
|
+
/>
|
|
51
|
+
</div>
|
|
52
|
+
<div className="selector-container">
|
|
53
|
+
{userFiltered.length ? (
|
|
54
|
+
userFiltered.map((user, i) => (
|
|
55
|
+
<div
|
|
56
|
+
key={user.id_user + "-" + i}
|
|
57
|
+
className="user-item"
|
|
58
|
+
onClick={() => {
|
|
59
|
+
onAssign(
|
|
60
|
+
product,
|
|
61
|
+
user.id_user,
|
|
62
|
+
assignationTarget,
|
|
63
|
+
target,
|
|
64
|
+
concept
|
|
65
|
+
);
|
|
66
|
+
}}
|
|
67
|
+
>
|
|
68
|
+
<Avatar
|
|
69
|
+
image={getProfilePicture(user.id_user, 26, 26)}
|
|
70
|
+
altText={"profile image"}
|
|
71
|
+
imageType={"medium-image"}
|
|
72
|
+
/>
|
|
73
|
+
<p>
|
|
74
|
+
{user.name} {user.last_name}
|
|
75
|
+
</p>
|
|
76
|
+
</div>
|
|
77
|
+
))
|
|
78
|
+
) : (
|
|
79
|
+
<div>
|
|
80
|
+
<p>Sin usuarios para asignar</p>
|
|
81
|
+
</div>
|
|
82
|
+
)}
|
|
83
|
+
</div>
|
|
84
|
+
</Container>
|
|
85
|
+
);
|
|
86
|
+
};
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import styled from "styled-components";
|
|
2
|
+
import { FontFamily } from "../../../global-files/variables";
|
|
3
|
+
|
|
4
|
+
export const Container = styled.div`
|
|
5
|
+
box-shadow: 0px 2px 4px #00000040;
|
|
6
|
+
width: 197px;
|
|
7
|
+
border-radius: 5px;
|
|
8
|
+
position: ${({ position }) => (position ? position : "initial")};
|
|
9
|
+
top: ${({ position }) => (position ? "100%" : "initial")};
|
|
10
|
+
left: ${({ position }) => (position ? "50%" : "initial")};
|
|
11
|
+
transform: ${({ position }) => (position ? "translateX(-50%)" : "initial")};
|
|
12
|
+
z-index: 500;
|
|
13
|
+
background-color: white;
|
|
14
|
+
|
|
15
|
+
.search-cotainer {
|
|
16
|
+
display: flex;
|
|
17
|
+
padding-left: 10px;
|
|
18
|
+
align-items: center;
|
|
19
|
+
border-bottom: 1px solid #f0f0f0;
|
|
20
|
+
|
|
21
|
+
svg {
|
|
22
|
+
& + * {
|
|
23
|
+
margin-left: 10px;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
input {
|
|
28
|
+
border: none;
|
|
29
|
+
width: 100%;
|
|
30
|
+
padding: 10px;
|
|
31
|
+
outline: none;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.selector-container {
|
|
36
|
+
max-height: 184px;
|
|
37
|
+
overflow: auto;
|
|
38
|
+
.user-item {
|
|
39
|
+
display: flex;
|
|
40
|
+
font-family: ${FontFamily.Lato};
|
|
41
|
+
font-size: 12px;
|
|
42
|
+
align-items: center;
|
|
43
|
+
padding: 10px;
|
|
44
|
+
cursor: pointer;
|
|
45
|
+
|
|
46
|
+
&:hover {
|
|
47
|
+
background-color: #f0f0f0;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
> * + * {
|
|
51
|
+
margin-left: 10px;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
`;
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
import { GridItem } from ".";
|
|
2
|
+
|
|
3
|
+
export default { title: "Components/molecules/GridItem", component: GridItem };
|
|
4
|
+
|
|
5
|
+
const Template = (args) => <GridItem {...args} />;
|
|
6
|
+
export const GridItemDefault = Template.bind({});
|
|
7
|
+
GridItemDefault.args = {
|
|
8
|
+
article: {
|
|
9
|
+
services: {
|
|
10
|
+
datasheets: 1,
|
|
11
|
+
descriptions: 1,
|
|
12
|
+
images: 1,
|
|
13
|
+
},
|
|
14
|
+
orderId: 15254,
|
|
15
|
+
status: "Ex",
|
|
16
|
+
datasheet_status: "Ex",
|
|
17
|
+
prio: "none",
|
|
18
|
+
version: 15,
|
|
19
|
+
description_status: "Ex",
|
|
20
|
+
images_status: "Ex",
|
|
21
|
+
statusByRetailer: {
|
|
22
|
+
70: {
|
|
23
|
+
datasheet: "Ex",
|
|
24
|
+
description: "Ex",
|
|
25
|
+
images: "Ex",
|
|
26
|
+
},
|
|
27
|
+
},
|
|
28
|
+
id_article: 38443,
|
|
29
|
+
id_category: "4319",
|
|
30
|
+
name: "Im Polvo Compacto Natural 2",
|
|
31
|
+
upc: "7501611823017",
|
|
32
|
+
timestamp: "2023-03-15T05:54:54.000Z",
|
|
33
|
+
id_user: 133,
|
|
34
|
+
status: "Ex",
|
|
35
|
+
active: 1,
|
|
36
|
+
company_id: 912,
|
|
37
|
+
company_name: "GRUPO BRAHMA",
|
|
38
|
+
country: "México",
|
|
39
|
+
id_order: 15254,
|
|
40
|
+
id_datasheet_especialist: 1841,
|
|
41
|
+
id_datasheet_facilitator: null,
|
|
42
|
+
id_description_especialist: 509,
|
|
43
|
+
id_description_facilitator: null,
|
|
44
|
+
id_images_especialist: 289,
|
|
45
|
+
id_images_facilitator: 160,
|
|
46
|
+
id_auditor: 493,
|
|
47
|
+
id_recepcionist: null,
|
|
48
|
+
category: "Salud y Belleza|Cosméticos|Cosméticos",
|
|
49
|
+
missingAttributes: 0,
|
|
50
|
+
missingDescriptions: 0,
|
|
51
|
+
missingImages: 0,
|
|
52
|
+
retailers: [
|
|
53
|
+
{
|
|
54
|
+
id: 70,
|
|
55
|
+
name: "Bodega Aurrera",
|
|
56
|
+
},
|
|
57
|
+
],
|
|
58
|
+
country: "México",
|
|
59
|
+
upc: "7501611823017",
|
|
60
|
+
imageArray: [
|
|
61
|
+
{
|
|
62
|
+
id: 35596,
|
|
63
|
+
status: null,
|
|
64
|
+
image_id: 1,
|
|
65
|
+
packing_type: "3",
|
|
66
|
+
image_type: "1",
|
|
67
|
+
article_id: "38443",
|
|
68
|
+
src: "https://d24s337exbt5zr.cloudfront.net/eyJidWNrZXQiOiJjb250ZW50LW1hbmFnZW1lbnQtaW1hZ2VzIiwia2V5IjoiaWQtMzg0NDMvMTUvMS1kNDQ2ZjIwNy0wYTkzLTQyNzgtYWZjNi01MTY2ZjIyY2EzNDMucG5nIiwiZWRpdHMiOnsicmVzaXplIjp7IndpZHRoIjoxMDAwLCJoZWlnaHQiOjEwMDAsImZpdCI6ImNvbnRhaW4iLCJiYWNrZ3JvdW5kIjp7InIiOjI1NSwiZyI6MjU1LCJiIjoyNTUsImFscGhhIjoxfX19fQ==",
|
|
69
|
+
timestamp: "2023-05-30T03:01:12.000Z",
|
|
70
|
+
id_version: 15,
|
|
71
|
+
width: null,
|
|
72
|
+
height: null,
|
|
73
|
+
scene_type: null,
|
|
74
|
+
image_shot_type: null,
|
|
75
|
+
last_modified: "2023-06-05T23:49:49.000Z",
|
|
76
|
+
name: "Central (Frente Comercial)",
|
|
77
|
+
version: 15,
|
|
78
|
+
ext: "png",
|
|
79
|
+
uuid: "d446f207-0a93-4278-afc6-5166f22ca343",
|
|
80
|
+
srcDB: "id-38443/15/1-d446f207-0a93-4278-afc6-5166f22ca343.png",
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
id: 35597,
|
|
84
|
+
status: null,
|
|
85
|
+
image_id: 3,
|
|
86
|
+
packing_type: "3",
|
|
87
|
+
image_type: "1",
|
|
88
|
+
article_id: "38443",
|
|
89
|
+
src: "https://d24s337exbt5zr.cloudfront.net/eyJidWNrZXQiOiJjb250ZW50LW1hbmFnZW1lbnQtaW1hZ2VzIiwia2V5IjoiaWQtMzg0NDMvMTUvMy0yOTZkMzU3ZC00OTUzLTRiMzktYjFjMy04YWZmZDI2NDgwMWIucG5nIiwiZWRpdHMiOnsicmVzaXplIjp7IndpZHRoIjoxMDAwLCJoZWlnaHQiOjEwMDAsImZpdCI6ImNvbnRhaW4iLCJiYWNrZ3JvdW5kIjp7InIiOjI1NSwiZyI6MjU1LCJiIjoyNTUsImFscGhhIjoxfX19fQ==",
|
|
90
|
+
timestamp: "2023-05-30T03:01:12.000Z",
|
|
91
|
+
id_version: 15,
|
|
92
|
+
width: null,
|
|
93
|
+
height: null,
|
|
94
|
+
scene_type: null,
|
|
95
|
+
image_shot_type: null,
|
|
96
|
+
last_modified: "2023-06-05T23:49:49.000Z",
|
|
97
|
+
name: "Trasera (Back)",
|
|
98
|
+
version: 15,
|
|
99
|
+
ext: "png",
|
|
100
|
+
uuid: "296d357d-4953-4b39-b1c3-8affd264801b",
|
|
101
|
+
srcDB: "id-38443/15/3-296d357d-4953-4b39-b1c3-8affd264801b.png",
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
id: 35598,
|
|
105
|
+
status: null,
|
|
106
|
+
image_id: 16,
|
|
107
|
+
packing_type: "3",
|
|
108
|
+
image_type: "1",
|
|
109
|
+
article_id: "38443",
|
|
110
|
+
src: "https://d24s337exbt5zr.cloudfront.net/eyJidWNrZXQiOiJjb250ZW50LW1hbmFnZW1lbnQtaW1hZ2VzIiwia2V5IjoiaWQtMzg0NDMvMTUvMTYtOGMzNDIzM2YtZTRiMC00MjU0LWFlYzUtZjEyN2ZiYjhkYmVkLnBuZyIsImVkaXRzIjp7InJlc2l6ZSI6eyJ3aWR0aCI6MTAwMCwiaGVpZ2h0IjoxMDAwLCJmaXQiOiJjb250YWluIiwiYmFja2dyb3VuZCI6eyJyIjoyNTUsImciOjI1NSwiYiI6MjU1LCJhbHBoYSI6MX19fX0=",
|
|
111
|
+
timestamp: "2023-05-30T03:01:12.000Z",
|
|
112
|
+
id_version: 15,
|
|
113
|
+
width: null,
|
|
114
|
+
height: null,
|
|
115
|
+
scene_type: null,
|
|
116
|
+
image_shot_type: null,
|
|
117
|
+
last_modified: "2023-06-05T23:49:49.000Z",
|
|
118
|
+
name: "Detalle / Características 1",
|
|
119
|
+
version: 15,
|
|
120
|
+
ext: "png",
|
|
121
|
+
uuid: "8c34233f-e4b0-4254-aec5-f127fbb8dbed",
|
|
122
|
+
srcDB: "id-38443/15/16-8c34233f-e4b0-4254-aec5-f127fbb8dbed.png",
|
|
123
|
+
},
|
|
124
|
+
],
|
|
125
|
+
},
|
|
126
|
+
};
|