diff --git a/client/src/components/profile-my/profile-my.component.jsx b/client/src/components/profile-my/profile-my.component.jsx
index 552f7bc4c..1d4c8633e 100644
--- a/client/src/components/profile-my/profile-my.component.jsx
+++ b/client/src/components/profile-my/profile-my.component.jsx
@@ -1,4 +1,4 @@
-import { Button, Form, Input, notification } from "antd";
+import { Button, Card, Col, Form, Input, notification } from "antd";
import { LockOutlined } from "@ant-design/icons";
import React from "react";
import { useTranslation } from "react-i18next";
@@ -48,81 +48,99 @@ export default connect(
};
return (
-
-
-
+
+
+
-
+
+
+ }
+ type="password"
+ placeholder={t("general.labels.password")}
+ />
+
+ ({
+ validator(rule, value) {
+ if (!value || getFieldValue("password") === value) {
+ return Promise.resolve();
+ }
+ return Promise.reject(
+ t("general.labels.passwordsdonotmatch")
+ );
+ },
+ }),
+ ]}
+ >
+ }
+ type="password"
+ placeholder={t("general.labels.password")}
+ />
+
+
+
+
+
+ >
);
});
diff --git a/client/src/components/profile-shops/profile-shops.component.jsx b/client/src/components/profile-shops/profile-shops.component.jsx
index 99acbd032..81764482c 100644
--- a/client/src/components/profile-shops/profile-shops.component.jsx
+++ b/client/src/components/profile-shops/profile-shops.component.jsx
@@ -1,13 +1,13 @@
-import React from "react";
+import React, { useState } from "react";
import { useTranslation } from "react-i18next";
-import { Table, Button, Typography } from "antd";
+import { Table, Button, Typography, Space, Input, Card, Col } from "antd";
export default function ProfileShopsComponent({
loading,
data,
updateActiveShop,
}) {
const { t } = useTranslation();
-
+ const [search, setSearch] = useState("");
const columns = [
{
title: t("associations.fields.shopname"),
@@ -39,18 +39,39 @@ export default function ProfileShopsComponent({
),
},
];
+ console.log("🚀 ~ file: profile-shops.component.jsx:45 ~ data", data);
+ const filteredData =
+ search === ""
+ ? data
+ : data.filter((d) =>
+ d.bodyshop.shopname.toLowerCase().includes(search.toLowerCase())
+ );
return (
- (
-
- {t("profile.labels.activeshop")}
-
- )}
- loading={loading}
- columns={columns}
- rowKey="id"
- dataSource={data}
- />
+
+
+ {t("profile.labels.activeshop")}
+
+ }
+ extra={
+ setSearch(e.target.value)}
+ allowClear
+ placeholder={t("general.labels.search")}
+ />
+ }
+ >
+
+
+
);
}
diff --git a/client/src/pages/profile/profile.page.jsx b/client/src/pages/profile/profile.page.jsx
index d4525eebb..3d897eda8 100644
--- a/client/src/pages/profile/profile.page.jsx
+++ b/client/src/pages/profile/profile.page.jsx
@@ -1,3 +1,4 @@
+import { Row } from "antd";
import React from "react";
import ProfileMyComponent from "../../components/profile-my/profile-my.component";
import ProfileShopsContainer from "../../components/profile-shops/profile-shops.container";
@@ -5,8 +6,10 @@ import ProfileShopsContainer from "../../components/profile-shops/profile-shops.
export default function ProfilePage() {
return (
);
}
diff --git a/client/src/translations/en_us/common.json b/client/src/translations/en_us/common.json
index e78667a7c..d346c7ae4 100644
--- a/client/src/translations/en_us/common.json
+++ b/client/src/translations/en_us/common.json
@@ -2747,7 +2747,9 @@
"photourl": "Avatar URL"
},
"labels": {
- "actions": "Actions"
+ "actions": "Actions",
+ "changepassword": "Change Password",
+ "profileinfo": "Profile Info"
},
"successess": {
"passwordchanged": "Password changed successfully. "
diff --git a/client/src/translations/es/common.json b/client/src/translations/es/common.json
index 9936f3948..7033be5b6 100644
--- a/client/src/translations/es/common.json
+++ b/client/src/translations/es/common.json
@@ -2747,7 +2747,9 @@
"photourl": "URL de avatar"
},
"labels": {
- "actions": ""
+ "actions": "",
+ "changepassword": "",
+ "profileinfo": ""
},
"successess": {
"passwordchanged": ""
diff --git a/client/src/translations/fr/common.json b/client/src/translations/fr/common.json
index 5283b56f6..bc5c28286 100644
--- a/client/src/translations/fr/common.json
+++ b/client/src/translations/fr/common.json
@@ -2747,7 +2747,9 @@
"photourl": "URL de l'avatar"
},
"labels": {
- "actions": ""
+ "actions": "",
+ "changepassword": "",
+ "profileinfo": ""
},
"successess": {
"passwordchanged": ""