contentoh-components-library 21.3.94 → 21.3.95
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 +5 -0
- package/.env.production +3 -0
- package/dist/components/atoms/Avatar/index.js +3 -2
- package/dist/components/atoms/Card/index.js +46 -5
- package/dist/components/atoms/Card/styles.js +3 -1
- package/dist/components/atoms/CheckBox/index.js +7 -2
- 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/InputFormatter/styles.js +1 -1
- 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 +70 -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 +44 -0
- package/dist/components/atoms/RetailersList/styles.js +18 -0
- package/dist/components/atoms/UserCatalog/UserCatalog.stories.js +72 -0
- package/dist/components/atoms/UserCatalog/index.js +89 -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 +80 -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 +91 -0
- package/dist/components/atoms/UserSelector/styles.js +32 -0
- package/dist/components/molecules/CarouselImagesLogin/index.js +1 -1
- package/dist/components/molecules/GridItem/GridItem.stories.js +123 -0
- package/dist/components/molecules/GridItem/index.js +122 -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/HeaderTop/index.js +68 -11
- 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 +59 -0
- package/dist/components/molecules/RowItem/styles.js +30 -0
- package/dist/components/molecules/TabsMenu/index.js +7 -13
- package/dist/components/molecules/TagAndInput/index.js +1 -1
- package/dist/components/organisms/Chat/Chat.stories.js +27 -8
- package/dist/components/organisms/Chat/ContainerItems/index.js +19 -3
- package/dist/components/organisms/Chat/ContainerItems/styles.js +1 -1
- package/dist/components/organisms/Chat/ContentChat/index.js +350 -197
- package/dist/components/organisms/Chat/Footer/index.js +48 -39
- package/dist/components/organisms/Chat/index.js +49 -4
- package/dist/components/organisms/FullProductNameHeader/index.js +2 -2
- package/dist/components/organisms/FullTabsMenu/index.js +1 -3
- package/dist/components/organisms/GridProducts/GridProducts.stories.js +5093 -0
- package/dist/components/organisms/GridProducts/index.js +82 -0
- package/dist/components/organisms/GridProducts/styles.js +18 -0
- package/dist/components/organisms/GridProducts/utils.js +139 -0
- package/dist/components/organisms/Modal/styles.js +1 -1
- package/dist/components/pages/ProviderProductEdition/ProviderProductEdition.stories.js +171 -96
- package/dist/components/pages/ProviderProductEdition/index.js +190 -178
- package/dist/components/pages/ProviderProductEdition/styles.js +1 -1
- package/dist/components/pages/RetailerProductEdition/RetailerProductEdition.stories.js +77 -52
- package/dist/components/pages/RetailerProductEdition/index.js +290 -276
- package/dist/components/pages/RetailerProductEdition/styles.js +1 -1
- package/dist/components/pages/RetailerProductEdition/utils.js +61 -2
- package/dist/index.js +182 -52
- package/package.json +4 -1
- package/src/components/atoms/Avatar/index.js +8 -2
- package/src/components/atoms/Card/index.js +35 -2
- package/src/components/atoms/Card/styles.js +41 -5
- package/src/components/atoms/CheckBox/index.js +4 -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/InputFormatter/styles.js +2 -1
- 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 +50 -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 +66 -0
- package/src/components/atoms/UserCatalog/index.js +77 -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 +49 -0
- package/src/components/atoms/UserOption/styles.js +54 -0
- package/src/components/atoms/UserSelector/UserSelector.stories.js +25 -0
- package/src/components/atoms/UserSelector/index.js +70 -0
- package/src/components/atoms/UserSelector/styles.js +55 -0
- package/src/components/molecules/CarouselImagesLogin/index.js +1 -1
- package/src/components/molecules/GridItem/GridItem.stories.js +126 -0
- package/src/components/molecules/GridItem/index.js +82 -0
- package/src/components/molecules/GridItem/styles.js +85 -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 +25 -0
- package/src/components/molecules/HeaderTop/index.js +52 -6
- 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 +38 -0
- package/src/components/molecules/StripeCardForm/StripeCardForm.stories.js +13 -0
- package/src/components/molecules/StripeCardForm/index.js +42 -0
- package/src/components/molecules/StripeCardForm/paymentForm.js +124 -0
- package/src/components/molecules/StripeCardForm/styles.js +73 -0
- package/src/components/molecules/StripeCardSelector/CardSelector.stories.js +12 -0
- package/src/components/molecules/StripeCardSelector/index.js +44 -0
- package/src/components/molecules/StripeCardSelector/styles.js +4 -0
- package/src/components/molecules/StripeCardSelector/utils.js +17 -0
- package/src/components/molecules/TabsMenu/index.js +10 -16
- package/src/components/molecules/TagAndInput/index.js +10 -8
- package/src/components/organisms/Chat/Chat.stories.js +27 -7
- package/src/components/organisms/Chat/ContainerItems/index.js +18 -2
- package/src/components/organisms/Chat/ContainerItems/styles.js +10 -2
- package/src/components/organisms/Chat/ContentChat/index.js +88 -12
- package/src/components/organisms/Chat/Footer/index.js +11 -0
- package/src/components/organisms/Chat/index.js +46 -4
- package/src/components/organisms/FullProductNameHeader/index.js +1 -1
- package/src/components/organisms/FullTabsMenu/index.js +1 -3
- package/src/components/organisms/GridProducts/GridProducts.stories.js +5474 -0
- package/src/components/organisms/GridProducts/index.js +60 -0
- package/src/components/organisms/GridProducts/styles.js +15 -0
- package/src/components/organisms/GridProducts/utils.js +103 -0
- package/src/components/organisms/Modal/styles.js +4 -1
- package/src/components/organisms/SideModal/SideModal.stories.js +23 -0
- package/src/components/organisms/SideModal/index.js +50 -0
- package/src/components/organisms/SideModal/styles.js +30 -0
- package/src/components/pages/ProviderProductEdition/ProviderProductEdition.stories.js +181 -98
- package/src/components/pages/ProviderProductEdition/index.js +134 -132
- package/src/components/pages/ProviderProductEdition/styles.js +5 -1
- package/src/components/pages/RetailerProductEdition/RetailerProductEdition.stories.js +76 -46
- package/src/components/pages/RetailerProductEdition/index.js +123 -138
- package/src/components/pages/RetailerProductEdition/styles.js +4 -0
- package/src/components/pages/RetailerProductEdition/utils.js +37 -0
- package/src/index.js +11 -0
- package/dist/assets/fonts/roboto/LICENSE.txt +0 -202
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { useState } from "react";
|
|
2
|
+
import { Avatar } from "../Avatar";
|
|
3
|
+
import { Container } from "./styles";
|
|
4
|
+
import { useEffect } from "react";
|
|
5
|
+
|
|
6
|
+
export const RetailerOption = ({ retailer, services = {} }) => {
|
|
7
|
+
const [service, setService] = useState([]);
|
|
8
|
+
|
|
9
|
+
useEffect(() => {
|
|
10
|
+
if (services[retailer.id]) {
|
|
11
|
+
setService(Object.keys(services[retailer.id]));
|
|
12
|
+
}
|
|
13
|
+
}, [services]);
|
|
14
|
+
|
|
15
|
+
return (
|
|
16
|
+
<Container>
|
|
17
|
+
<div className="avatar-and-retailer">
|
|
18
|
+
<Avatar
|
|
19
|
+
image={`https://content-management-images.s3.amazonaws.com/retailers/${retailer.id}.png`}
|
|
20
|
+
altText={retailer?.name}
|
|
21
|
+
imageType={"medium-image"}
|
|
22
|
+
/>
|
|
23
|
+
<p className="retailer-name">{retailer?.name}</p>
|
|
24
|
+
</div>
|
|
25
|
+
<div className="services-icons">
|
|
26
|
+
<span
|
|
27
|
+
key="datasheet"
|
|
28
|
+
className={`material-icons small ${
|
|
29
|
+
service.includes("datasheet") && "is-active"
|
|
30
|
+
}`}
|
|
31
|
+
>
|
|
32
|
+

|
|
33
|
+
</span>
|
|
34
|
+
<span
|
|
35
|
+
key="description"
|
|
36
|
+
className={`material-icons small ${
|
|
37
|
+
service.includes("description") && "is-active"
|
|
38
|
+
}`}
|
|
39
|
+
>
|
|
40
|
+

|
|
41
|
+
</span>
|
|
42
|
+
<span
|
|
43
|
+
key="images"
|
|
44
|
+
className={`material-icons small ${
|
|
45
|
+
service.includes("images") && "is-active"
|
|
46
|
+
}`}
|
|
47
|
+
>
|
|
48
|
+

|
|
49
|
+
</span>
|
|
50
|
+
</div>
|
|
51
|
+
</Container>
|
|
52
|
+
);
|
|
53
|
+
};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import styled from "styled-components";
|
|
2
|
+
import { FontFamily } from "../../../global-files/variables";
|
|
3
|
+
|
|
4
|
+
export const Container = styled.div`
|
|
5
|
+
display: flex;
|
|
6
|
+
padding: 7px;
|
|
7
|
+
border: 1px solid #f0f0f0;
|
|
8
|
+
align-items: center;
|
|
9
|
+
justify-content: space-between;
|
|
10
|
+
border-radius: 5px;
|
|
11
|
+
|
|
12
|
+
.avatar-and-retailer {
|
|
13
|
+
display: flex;
|
|
14
|
+
align-items: center;
|
|
15
|
+
.retailer-name {
|
|
16
|
+
font-family: ${FontFamily.Lato};
|
|
17
|
+
font-size: 12px;
|
|
18
|
+
color: #262626;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
> * + * {
|
|
22
|
+
margin-left: 10px;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.services-icons {
|
|
27
|
+
display: flex;
|
|
28
|
+
|
|
29
|
+
span {
|
|
30
|
+
color: #f0f0f0;
|
|
31
|
+
font-size: 14px;
|
|
32
|
+
&.is-active {
|
|
33
|
+
color: #8a6caa;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
> * + * {
|
|
38
|
+
margin-left: 9px;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
`;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { RetailersList } from ".";
|
|
2
|
+
|
|
3
|
+
export default {
|
|
4
|
+
title: "Components/atoms/RetailersList",
|
|
5
|
+
component: RetailersList,
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
const Template = (args) => <RetailersList {...args} />;
|
|
9
|
+
export const RetailersListDefault = Template.bind({});
|
|
10
|
+
RetailersListDefault.args = {
|
|
11
|
+
retailers: [
|
|
12
|
+
{
|
|
13
|
+
id: 58,
|
|
14
|
+
name: "The Home Depot Golden",
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
id: 59,
|
|
18
|
+
name: "The Home Depot Platinum",
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
id: 60,
|
|
22
|
+
name: "The Home Depot Resizing",
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
id: 61,
|
|
26
|
+
name: "Home Depot TAB",
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
id: 68,
|
|
30
|
+
name: "The Home Depot Dropship",
|
|
31
|
+
},
|
|
32
|
+
],
|
|
33
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { Container } from "./styles";
|
|
2
|
+
import { RetailerOption } from "../RetailerOption";
|
|
3
|
+
import { useState, useEffect } from "react";
|
|
4
|
+
import axios from "axios";
|
|
5
|
+
|
|
6
|
+
export const RetailersList = ({ retailers, article }) => {
|
|
7
|
+
const [services, setServices] = useState({});
|
|
8
|
+
|
|
9
|
+
useEffect(() => {
|
|
10
|
+
if (article) setServices(article.statusByRetailer);
|
|
11
|
+
}, [article]);
|
|
12
|
+
|
|
13
|
+
return (
|
|
14
|
+
<Container>
|
|
15
|
+
{retailers.map((retailer, i) => (
|
|
16
|
+
<RetailerOption key={i} retailer={retailer} services={services} />
|
|
17
|
+
))}
|
|
18
|
+
</Container>
|
|
19
|
+
);
|
|
20
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import styled from "styled-components";
|
|
2
|
+
|
|
3
|
+
export const Container = styled.div`
|
|
4
|
+
width: 370px;
|
|
5
|
+
max-height: 200px;
|
|
6
|
+
overflow: auto;
|
|
7
|
+
position: absolute;
|
|
8
|
+
z-index: 500;
|
|
9
|
+
right: 0%;
|
|
10
|
+
top: 100%;
|
|
11
|
+
border: 1px solid #f0f0f0;
|
|
12
|
+
padding: 10px;
|
|
13
|
+
padding-right: 5px;
|
|
14
|
+
background-color: white;
|
|
15
|
+
|
|
16
|
+
> * + * {
|
|
17
|
+
margin-top: 5px;
|
|
18
|
+
}
|
|
19
|
+
`;
|
|
@@ -0,0 +1,66 @@
|
|
|
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
|
+
datasheet: 54,
|
|
12
|
+
description: 54,
|
|
13
|
+
images: 55,
|
|
14
|
+
auditor: 37,
|
|
15
|
+
auditors: [
|
|
16
|
+
{
|
|
17
|
+
name: "José",
|
|
18
|
+
last_name: "Castañeda",
|
|
19
|
+
id_user: 37,
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
name: "Eduardo ",
|
|
23
|
+
last_name: " Reyes",
|
|
24
|
+
id_user: 195,
|
|
25
|
+
},
|
|
26
|
+
],
|
|
27
|
+
textSpecialists: [
|
|
28
|
+
{
|
|
29
|
+
name: "Especialista",
|
|
30
|
+
last_name: "Textos",
|
|
31
|
+
id_user: 36,
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
name: "ESPECIALISTA TXTS PRUEBA",
|
|
35
|
+
last_name: "",
|
|
36
|
+
id_user: 54,
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
name: "Gerson",
|
|
40
|
+
last_name: "Martínez",
|
|
41
|
+
id_user: 57,
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
name: "Angel",
|
|
45
|
+
last_name: "Perea",
|
|
46
|
+
id_user: 232,
|
|
47
|
+
},
|
|
48
|
+
],
|
|
49
|
+
imagesSpecialists: [
|
|
50
|
+
{
|
|
51
|
+
name: "Especialista",
|
|
52
|
+
last_name: "Imágenes",
|
|
53
|
+
id_user: 35,
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
name: "ESPECIALISTA ED PRUEBA",
|
|
57
|
+
last_name: "",
|
|
58
|
+
id_user: 55,
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
name: "Uriel",
|
|
62
|
+
last_name: "Herrera",
|
|
63
|
+
id_user: 196,
|
|
64
|
+
},
|
|
65
|
+
],
|
|
66
|
+
};
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import { Container } from "./styles";
|
|
2
|
+
import { Avatar } from "../Avatar";
|
|
3
|
+
import { getProfilePicture } from "../../../global-files/data";
|
|
4
|
+
import { UserOption } from "../UserOption";
|
|
5
|
+
import { useState } from "react";
|
|
6
|
+
import { useCloseModal } from "../../../global-files/customHooks";
|
|
7
|
+
import { useEffect } from "react";
|
|
8
|
+
|
|
9
|
+
export const UserCatalog = ({
|
|
10
|
+
datasheet,
|
|
11
|
+
description,
|
|
12
|
+
images,
|
|
13
|
+
auditor,
|
|
14
|
+
auditors = [],
|
|
15
|
+
textSpecialists = [],
|
|
16
|
+
imagesSpecialists = [],
|
|
17
|
+
id = "list-modal",
|
|
18
|
+
}) => {
|
|
19
|
+
const [showList, setShowList] = useCloseModal(id);
|
|
20
|
+
|
|
21
|
+
return (
|
|
22
|
+
<Container onClick={() => setShowList(true)} id={id}>
|
|
23
|
+
{datasheet && (
|
|
24
|
+
<Avatar
|
|
25
|
+
image={getProfilePicture(datasheet, 26, 26)}
|
|
26
|
+
altText={"datasheet specialist"}
|
|
27
|
+
imageType={"medium-image"}
|
|
28
|
+
/>
|
|
29
|
+
)}
|
|
30
|
+
{description && (
|
|
31
|
+
<Avatar
|
|
32
|
+
image={getProfilePicture(description, 26, 26)}
|
|
33
|
+
altText={"description specialist"}
|
|
34
|
+
imageType={"medium-image"}
|
|
35
|
+
/>
|
|
36
|
+
)}
|
|
37
|
+
{images && (
|
|
38
|
+
<Avatar
|
|
39
|
+
image={getProfilePicture(images, 26, 26)}
|
|
40
|
+
altText={"images specialist"}
|
|
41
|
+
imageType={"medium-image"}
|
|
42
|
+
/>
|
|
43
|
+
)}
|
|
44
|
+
{auditor && (
|
|
45
|
+
<Avatar
|
|
46
|
+
image={getProfilePicture(auditor, 26, 26)}
|
|
47
|
+
altText={"auditor"}
|
|
48
|
+
imageType={"medium-image"}
|
|
49
|
+
/>
|
|
50
|
+
)}
|
|
51
|
+
{showList && (
|
|
52
|
+
<div className="users-assigned-list">
|
|
53
|
+
<UserOption
|
|
54
|
+
userId={datasheet}
|
|
55
|
+
usersArray={textSpecialists}
|
|
56
|
+
id={id + "-" + datasheet}
|
|
57
|
+
/>
|
|
58
|
+
<UserOption
|
|
59
|
+
userId={description}
|
|
60
|
+
usersArray={textSpecialists}
|
|
61
|
+
id={id + "-" + description}
|
|
62
|
+
/>
|
|
63
|
+
<UserOption
|
|
64
|
+
userId={images}
|
|
65
|
+
usersArray={imagesSpecialists}
|
|
66
|
+
id={id + "-" + images}
|
|
67
|
+
/>
|
|
68
|
+
<UserOption
|
|
69
|
+
userId={auditor}
|
|
70
|
+
usersArray={auditors}
|
|
71
|
+
id={id + "-" + auditor}
|
|
72
|
+
/>
|
|
73
|
+
</div>
|
|
74
|
+
)}
|
|
75
|
+
</Container>
|
|
76
|
+
);
|
|
77
|
+
};
|
|
@@ -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,49 @@
|
|
|
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 = ({ userId, index, usersArray, id }) => {
|
|
11
|
+
const [userAssigned, setUserAssigned] = useState({});
|
|
12
|
+
const [showSelector, setShowSelector] = useCloseModal(id);
|
|
13
|
+
const icons = servicesCodeIcon;
|
|
14
|
+
|
|
15
|
+
useEffect(() => {
|
|
16
|
+
if (usersArray) {
|
|
17
|
+
usersArray.forEach((user) => {
|
|
18
|
+
if (user.id_user === userId) {
|
|
19
|
+
setUserAssigned(user);
|
|
20
|
+
}
|
|
21
|
+
});
|
|
22
|
+
}
|
|
23
|
+
}, [userId, usersArray]);
|
|
24
|
+
|
|
25
|
+
return (
|
|
26
|
+
<Container onClick={() => setShowSelector(true)}>
|
|
27
|
+
<div className="image-and-name">
|
|
28
|
+
<Avatar
|
|
29
|
+
image={getProfilePicture(userAssigned?.id_user, 26, 26)}
|
|
30
|
+
altText={"datasheet specialist"}
|
|
31
|
+
imageType={"medium-image"}
|
|
32
|
+
/>
|
|
33
|
+
<p>
|
|
34
|
+
{userAssigned?.name} {userAssigned?.last_name}
|
|
35
|
+
</p>
|
|
36
|
+
</div>
|
|
37
|
+
<div className="icon-container">{icons[index]}</div>
|
|
38
|
+
{showSelector && (
|
|
39
|
+
<UserSelector
|
|
40
|
+
id={id}
|
|
41
|
+
searchLabel="Buscar Usuario"
|
|
42
|
+
index={index}
|
|
43
|
+
usersArray={usersArray}
|
|
44
|
+
position="absolute"
|
|
45
|
+
/>
|
|
46
|
+
)}
|
|
47
|
+
</Container>
|
|
48
|
+
);
|
|
49
|
+
};
|
|
@@ -0,0 +1,54 @@
|
|
|
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
|
+
width: 217px;
|
|
18
|
+
|
|
19
|
+
.image-and-name {
|
|
20
|
+
display: flex;
|
|
21
|
+
align-items: center;
|
|
22
|
+
|
|
23
|
+
div + p {
|
|
24
|
+
margin-left: 10px;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.icon-container {
|
|
29
|
+
position: relative;
|
|
30
|
+
span {
|
|
31
|
+
color: #808080;
|
|
32
|
+
cursor: pointer;
|
|
33
|
+
|
|
34
|
+
& + span {
|
|
35
|
+
display: none;
|
|
36
|
+
position: absolute;
|
|
37
|
+
right: 120%;
|
|
38
|
+
top: 50%;
|
|
39
|
+
transform: translateY(-50%);
|
|
40
|
+
white-space: nowrap;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
&:hover {
|
|
44
|
+
& + span {
|
|
45
|
+
display: block;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
& + * {
|
|
52
|
+
margin-top: 5px;
|
|
53
|
+
}
|
|
54
|
+
`;
|
|
@@ -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,70 @@
|
|
|
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
|
+
index,
|
|
12
|
+
usersArray,
|
|
13
|
+
onClick,
|
|
14
|
+
position,
|
|
15
|
+
}) => {
|
|
16
|
+
const [text, setText] = useState([]);
|
|
17
|
+
const [userFiltered, setUsersFiltered] = useState([]);
|
|
18
|
+
|
|
19
|
+
useEffect(() => {
|
|
20
|
+
if (usersArray) setUsersFiltered(usersArray);
|
|
21
|
+
}, [usersArray]);
|
|
22
|
+
|
|
23
|
+
const onChangeText = (e) => {
|
|
24
|
+
setText(e.target.value);
|
|
25
|
+
if (usersArray)
|
|
26
|
+
setUsersFiltered(
|
|
27
|
+
usersArray.filter((user) =>
|
|
28
|
+
(user.name + " " + user.last_name)
|
|
29
|
+
.toLowerCase()
|
|
30
|
+
.includes(e.target.value.toLowerCase())
|
|
31
|
+
)
|
|
32
|
+
);
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
return (
|
|
36
|
+
<Container position={position}>
|
|
37
|
+
<div className="search-cotainer">
|
|
38
|
+
<Icon icon={faSearch} />
|
|
39
|
+
<input
|
|
40
|
+
type="text"
|
|
41
|
+
className="search"
|
|
42
|
+
placeholder={searchLabel}
|
|
43
|
+
value={text}
|
|
44
|
+
onChange={onChangeText}
|
|
45
|
+
autoFocus
|
|
46
|
+
/>
|
|
47
|
+
</div>
|
|
48
|
+
<div className="selector-container">
|
|
49
|
+
{userFiltered.length ? (
|
|
50
|
+
userFiltered.map((user) => (
|
|
51
|
+
<div key={user.id_user} className="user-item" onClick={onClick}>
|
|
52
|
+
<Avatar
|
|
53
|
+
image={getProfilePicture(user.id_user, 26, 26)}
|
|
54
|
+
altText={"profile image"}
|
|
55
|
+
imageType={"medium-image"}
|
|
56
|
+
/>
|
|
57
|
+
<p>
|
|
58
|
+
{user.name} {user.last_name}
|
|
59
|
+
</p>
|
|
60
|
+
</div>
|
|
61
|
+
))
|
|
62
|
+
) : (
|
|
63
|
+
<div>
|
|
64
|
+
<p>Sin usuarios para asignar</p>
|
|
65
|
+
</div>
|
|
66
|
+
)}
|
|
67
|
+
</div>
|
|
68
|
+
</Container>
|
|
69
|
+
);
|
|
70
|
+
};
|
|
@@ -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
|
+
`;
|
|
@@ -27,7 +27,7 @@ export const CarouselImagesLogin = ({
|
|
|
27
27
|
img2.src = images[i];
|
|
28
28
|
const circulo_actual = Array.from(circulos).find((el) => el.id === i);
|
|
29
29
|
Array.from(circulos).forEach((cir) => cir.classList.remove("resaltado"));
|
|
30
|
-
circulo_actual
|
|
30
|
+
circulo_actual?.classList.add("resaltado");
|
|
31
31
|
img1.classList.add("right");
|
|
32
32
|
img2.classList.add("active");
|
|
33
33
|
i++;
|