From bea5a4a9eac4c66355ef37d8d924901c2d3fde11 Mon Sep 17 00:00:00 2001 From: mahdi Date: Sun, 12 Jun 2022 11:36:03 +0430 Subject: [PATCH] update src/components/Navbar/SearchResult/index.js and src/components/Navbar/index.js --- src/components/Navbar/SearchResult/index.js | 54 +++++++++++++++------ 1 file changed, 39 insertions(+), 15 deletions(-) diff --git a/src/components/Navbar/SearchResult/index.js b/src/components/Navbar/SearchResult/index.js index 7e1b2cd..b2b168c 100644 --- a/src/components/Navbar/SearchResult/index.js +++ b/src/components/Navbar/SearchResult/index.js @@ -4,18 +4,28 @@ import { Link } from "react-router-dom"; const Pages = [ { - strings : 'خانه - home - Home - Landing - landing', link : '/', name : 'خانه' + strings: "خانه - home - Home - Landing - landing", + link: "/", + name: "خانه", }, { - strings : 'ورود - ثبت نام - لاگین - login - Login', link : '/signup', name : 'ورود یا ثبت نام' + strings: "ورود - ثبت نام - لاگین - login - Login", + link: "/signup", + name: "ورود یا ثبت نام", }, { - strings : 'کتاب - محصول - ویدئو - book - video - books - videos - خرید - ریاضی - علوم - شیمی - زیست - محصولات - ویدئوها - کتاب‌ها', link : '/products', name : 'محصولات' + strings: + "کتاب - محصول - ویدئو - book - video - books - videos - خرید - ریاضی - علوم - شیمی - زیست - محصولات - ویدئوها - کتاب‌ها", + link: "/products", + name: "محصولات", }, { - strings : 'آدرس - شماره تماس - ارتباط با ما - نقشه - تیکت - شکایت - address - map - phone number - contact us', link : '/contact-us', name : 'ارتباط با ما' + strings: + "آدرس - شماره تماس - ارتباط با ما - نقشه - تیکت - شکایت - address - map - phone number - contact us", + link: "/contact-us", + name: "ارتباط با ما", }, -] +]; export const SearchResult = ({ text, books, setText }) => { const [relatedBooks, setRelatedBooks] = useState([]); @@ -31,22 +41,20 @@ export const SearchResult = ({ text, books, setText }) => { let pages = Pages.filter((page) => page.strings.indexOf(text) !== -1); setRelatedPages(pages); setRelatedBooks(list); - } }, [text]); - return ( -
+
e.stopPropagation()} className="absolute -top-1 w-full left-0 px-6 pt-5 bg-white pb-5 shadow-lg rounded-md flex flex-col overflow-y-scroll z-50" - style={{ maxHeight: "calc(100vh / 1.5)", direction : 'ltr' }} + style={{ maxHeight: "calc(100vh / 1.5)", direction: "ltr" }} >
- محصولات + + {window.t("محصولات")}{" "} + { ))} - ) : هیچ محصولی یافت نشد.} + ) : ( + + {window.t("هیچ محصولی یافت نشد.")} + + )}
- صفحات + + {window.t("صفحات")} + { ))} - ) : هیچ صفحه ای موجود نیست} + ) : ( + + {window.t("هیچ صفحه ای موجود نیست")} + + )}
);