import ButtonDesign from "../components/ButtonDesign"; import Design2D from "../components/Design2D"; import AddToCart from "../components/AddToCart"; import Advertisements from "../components/Advertisements"; import Alert from "../components/Alert"; import Toast from "../components/Toast"; import Banners from "../components/Banners"; import Blog from "../components/Blog"; import CardDesgin from "../components/CardDesgin"; import ChartDesign from "../components/ChartDesign"; import ProgressBar from "../components/ProgressBar"; import Checkbox from "../components/Checkbox"; import CommentDesign from "../components/CommentDesign"; import CounterDesign from "../components/CounterDesign"; import CourseList from "../components/CourseList"; import ProductFilter from "../components/ProductFilter"; import Features from "../components/Features"; import Feedback from "../components/Feedback"; import FooterDesign from "../components/FooterDesign"; import Input from "../components/Input"; import Navbar from "../components/Navbar"; import SearchDesign from "../components/SearchDesign"; import SwitchDesign from "../components/SwitchDesign"; import Sidebar from "../components/Sidebar"; import SingleProduct from "../components/SingleProduct"; import Rating from "../components/Rating"; import Tooltip from "../components/Tooltip"; import ProductSuggestionCard from "../components/ProductSuggestionCard"; import ProductDescriptionTable from "../components/ProductDescriptionTable"; import QuestionAnswer from "../components/QuestionAnswer"; import RadioButton from "../components/RadioButton"; import Datepicker from "../components/Datepicker"; import SearchWithSuggestion from "../components/SearchWithSuggestion"; import SelectBox from "../components/SelectBox"; import ProductCategories from "../components/ProductCategories"; import RangeSlider from "../components/RangeSlider"; import Stepper from "../components/Stepper"; import UploadFile from "../components/UploadFile"; import AnimatedInput from "../components/AnimatedInput/Input"; import BoxNextToEachOther from "../components/BoxNextToEachOther"; import ContactUs from "../components/ContactUs"; import CurrentDateTime from "../components/CurrentDateTime"; import DivideX from "../components/DivideX"; import FileManager from "../components/FileManager"; import FormFields from "../components/FormFields"; import Tabels from "../components/Tabels"; import LeafletMap from "../components/LeafletMap"; import ProductGallery from "../components/ProductGallery"; import ProductSalesAmount from "../components/ProductSalesAmount"; import Avatar from "../components/Avatar"; import Timeline from "../components/Timeline"; // mini components import MiniComponents from "../components/MiniComponents"; const components = [ { name: "Button Design", author: "Andalib", props: [], content: { name: "Button Design", component: , code: null, }, }, { name: "2D Design", author: "Andalib", props: [], content: { name: "2D Design", component: , code: null, }, }, { name: "AddToCartCard", author: "Keshavarzi/Andalib", props: [], content: { name: "AddToCartCard", component: , code: null, }, }, { name: "Advertisements", author: "Andalib", props: [], content: { name: "Advertisements", component: , code: null, }, }, { name: "Alert", author: "Andalib", props: [], content: { name: "Alert", component: , code: null, }, }, { name: "Toast", author: "Andalib", props: [], content: { name: "Toast", component: , code: null, }, }, { name: "Banners", author: "Keshavarzi", props: [], content: { name: "Banners Container", component: , code: null, }, }, { name: "Blog", author: "Andalib", props: [], content: { name: "Blog Designs", component: , code: null, }, }, { name: "Card", author: "Andalib", props: [], content: { name: "Card Designs", component: , code: null, }, }, { name: "Chart Design", author: "Ashrafi-Andalib", props: [], content: { name: "Chart Design", component: , code: null, }, }, { name: "Checkbox", author: "Ashrafi", props: [], content: { name: "Checkbox", component: , code: null, }, }, { name: "Progress Bar", author: "Ashrafi-Andalib", props: [], content: { name: "Progress Bar", component: , code: null, }, }, { name: "Comment Design", author: "Ashrafi", props: [], content: { name: "Progress Bar", component: , code: null, }, }, { name: "Counter Design", author: "Andalib", props: [], content: { name: "Counter Design", component: , code: null, }, }, { name: "Course List", author: "Andalib", props: [], content: { name: "Course List", component: , code: null, }, }, { name: "Product Filter", author: "Ashrafi", props: [], content: { name: "Product Filter", component: , code: null, }, }, { name: "Features", author: "Andalib", props: [], content: { name: "Features", component: , code: null, }, }, { name: "Feedback", author: "Andalib", props: [], content: { name: "Feedback", component: , code: null, }, }, { name: "Footer Design", author: "Andalib", props: [], content: { name: "Footer Design", component: , code: null, }, }, { name: "Input", author: "Ashrafi", props: [ { name: "maxLength", type: "string", required: "false", description: "بیشترین تعداد کاراکتری که میتوان استفاده کرد.", defaultValue: "", }, { name: "lang", type: "string", required: "false", description: "زبان سایت", defaultValue: "fa", }, { name: "inputMode", type: "string", required: "false", description: "با تعیین این مقدار نوع کیبرد مشخص میشود.", defaultValue: "text", }, { name: "label", type: "string", required: "false", description: "", defaultValue: "label", }, ], content: { name: "Input", component: , code: `import React, { useState } from "react"; import _ from "lodash"; import "./index.scss"; import tick from "./tick.png"; import danger from "./danger.png"; const langDetector = (lang, option1, option2) => { return lang === "fa" ? option1 : option2; }; const inputStatusHandler = (value, focus, status, primary, success, danger) => { if (!focus) { return ""; } else { if (!value) { return primary; } else { if (status) { return success; } else { return danger; } } } }; export default function Input(props) { const [value, setValue] = useState(""); const [focusToggle, setFocusToggle] = useState(false); const { lang, theme, inputMode, label, status, maxLength, message } = props; const onChange = (val) => { setValue(val); }; return (
onChange(e.target.value)} value={value} onFocus={() => setFocusToggle(true)} onBlur={() => !value ? setFocusToggle(false) : setFocusToggle(true)} maxLength={maxLength} /> {!status && value && ( {langDetector(lang, )} {status && value && ( {langDetector(lang, )} {value && !status && ( {message} )} {value && ( {value.length + "/" + maxLength} )}
); } Input.defaultProps = { lang : 'fa', inputMode : 'string', label : '', status : '', maxLength : '', message : '', }`, }, }, { name: "Navbar", author: "Andalib", props: [], content: { name: "Navbar", component: , code: null, }, }, { name: "Search Design", author: "Andalib/Ashrafi", props: [], content: { name: "Search Design", component: , code: null, }, }, { name: "Switch Design", author: "Andalib/Ashrafi", props: [], content: { name: "Switch Design", component: , code: null, }, }, { name: "Sidebar", author: "Andalib", props: [], content: { name: "Sidebar", component: , code: null, }, }, { name: "Single Product", author: "Andalib", props: [], content: { name: "Single Product", component: , code: null, }, }, { name: "Rating", author: "Andalib/Ashrafi", props: [], content: { name: "Rating", component: , code: null, }, }, { name: "Tooltip", author: "Andalib", props: [], content: { name: "Tooltip", component: , code: null, }, }, { name: "Product Suggestion Card", author: "Andalib", props: [], content: { name: "Product Suggestion Card", component: , code: null, }, }, { name: "Product Description Table", author: "Keshavarzi", props: [], content: { name: "Product Description Table", component: , code: null, }, }, { name: "QandA", author: "Ashrafi", props: [], content: { name: "QandA", component: , code: null, }, }, { name: "Radio Button", author: "Ashrafi", props: [], content: { name: "Radio Button", component: , code: null, }, }, { name: "Datepicker", author: "Andalib/Keshavarzi", props: [], content: { name: "Datepicker", component: , code: null, }, }, { name: "Search With Suggestion", author: "Ashrafi", props: [], content: { name: "Search With Suggestion", component: , code: null, }, }, { name: "Product Categories", author: "Ashrafi", props: [], content: { name: "Product Categories", component: , code: null, }, }, { name: "Select Box", author: "Ashrafi", props: [], content: { name: "Select Box", component: , code: null, }, }, { name: "Range Slider", author: "Ashrafi", props: [], content: { name: "Range Slider", component: , code: null, }, }, { name: "Stepper", author: "Ashrafi", props: [], content: { name: "Stepper", component: , code: null, }, }, { name: "Upload File", author: "Andalib", props: [], content: { name: "Upload File", component: , code: null, }, }, { name: "Animated Input", author: "MrGorji", props: [], content: { name: "Animated Input", component: , code: null, }, }, { name: "Box Next To Each Other", author: "Andalib", props: [], content: { name: "Box Next To Each Other", component: , code: null, }, }, { name: "Contact Us", author: "Andalib", props: [], content: { name: "Contact Us", component: , code: null, }, }, { name: "Current Date Time", author: "Andalib", props: [], content: { name: "Current Date Time", component: , code: null, }, }, { name: "DivideX", author: "Andalib", props: [], content: { name: "DivideX", component: , code: null, }, }, { name: "File Manager", author: "Andalib", props: [], content: { name: "File Manager", component: , code: null, }, }, { name: "Form Fields", author: "Andalib", props: [], content: { name: "Form Fields", component: , code: null, }, }, { name: "Tabels", author: "Andalib", props: [], content: { name: "Tabels", component: , code: null, }, }, { name: "LeafletMap", author: "Andalib", props: [], content: { name: "LeafletMap", component: , code: null, }, }, { name: "Product Gallery", author: "Andalib", props: [], content: { name: "Product Gallery", component: , code: null, }, }, { name: "Product Sales Amount", author: "Andalib", props: [], content: { name: "Product Sales Amount", component: , code: null, }, }, { name: "Avatar", author: "Andalib", props: [], content: { name: "Avatar", component: , code: null, }, }, { name: "Time Line", author: "Andalib", props: [], content: { name: "Time Line", component: , code: null, }, }, // mini components { name: "Mini Components", author: "Andalib", props: [], content: { name: "Mini Components used in Main Components", component: , code: null, }, }, ]; export default components;