You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

779 lines
18 KiB

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: <ButtonDesign />,
code: null,
},
},
{
name: "2D Design",
author: "Andalib",
props: [],
content: {
name: "2D Design",
component: <Design2D />,
code: null,
},
},
{
name: "AddToCartCard",
author: "Keshavarzi/Andalib",
props: [],
content: {
name: "AddToCartCard",
component: <AddToCart />,
code: null,
},
},
{
name: "Advertisements",
author: "Andalib",
props: [],
content: {
name: "Advertisements",
component: <Advertisements />,
code: null,
},
},
{
name: "Alert",
author: "Andalib",
props: [],
content: {
name: "Alert",
component: <Alert />,
code: null,
},
},
{
name: "Toast",
author: "Andalib",
props: [],
content: {
name: "Toast",
component: <Toast />,
code: null,
},
},
{
name: "Banners",
author: "Keshavarzi",
props: [],
content: {
name: "Banners Container",
component: <Banners />,
code: null,
},
},
{
name: "Blog",
author: "Andalib",
props: [],
content: {
name: "Blog Designs",
component: <Blog />,
code: null,
},
},
{
name: "Card",
author: "Andalib",
props: [],
content: {
name: "Card Designs",
component: <CardDesgin />,
code: null,
},
},
{
name: "Chart Design",
author: "Ashrafi-Andalib",
props: [],
content: {
name: "Chart Design",
component: <ChartDesign />,
code: null,
},
},
{
name: "Checkbox",
author: "Ashrafi",
props: [],
content: {
name: "Checkbox",
component: <Checkbox />,
code: null,
},
},
{
name: "Progress Bar",
author: "Ashrafi-Andalib",
props: [],
content: {
name: "Progress Bar",
component: <ProgressBar />,
code: null,
},
},
{
name: "Comment Design",
author: "Ashrafi",
props: [],
content: {
name: "Progress Bar",
component: <CommentDesign />,
code: null,
},
},
{
name: "Counter Design",
author: "Andalib",
props: [],
content: {
name: "Counter Design",
component: <CounterDesign />,
code: null,
},
},
{
name: "Course List",
author: "Andalib",
props: [],
content: {
name: "Course List",
component: <CourseList />,
code: null,
},
},
{
name: "Product Filter",
author: "Ashrafi",
props: [],
content: {
name: "Product Filter",
component: <ProductFilter />,
code: null,
},
},
{
name: "Features",
author: "Andalib",
props: [],
content: {
name: "Features",
component: <Features />,
code: null,
},
},
{
name: "Feedback",
author: "Andalib",
props: [],
content: {
name: "Feedback",
component: <Feedback />,
code: null,
},
},
{
name: "Footer Design",
author: "Andalib",
props: [],
content: {
name: "Footer Design",
component: <FooterDesign />,
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: <Input />,
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 (
<div
className={_.join(
["input flex flex-col relative my-2", langDetector(lang, "fa", "en")],
" "
)}
>
<label
className={_.join(
[
"absolute top-1/2 transform -translate-y-1/2 text-gray-500 bg-white px-2 text-xs transition-all duration-300",
langDetector(lang, "right-2", "left-2"),
inputStatusHandler(
value,
focusToggle,
status,
"input__labelFocus",
"input__labelSuccess",
"input__labelDanger"
),
],
" "
)}
onClick={() => setFocusToggle(true)}
>
{label}
</label>
<input
type="text"
inputMode={inputMode}
className={_.join(
[
"flex-1 border rounded-md outline-none p-2",
inputStatusHandler(
value,
focusToggle,
status,
"input__inputActive",
"input__inputSuccess",
"input__inputDanger"
),
"transition",
],
" "
)}
onChange={(e) => onChange(e.target.value)}
value={value}
onFocus={() => setFocusToggle(true)}
onBlur={() => !value ? setFocusToggle(false) : setFocusToggle(true)}
maxLength={maxLength}
/>
{!status && value && (
<img
src={danger}
alt={langDetector(lang, "اشتباه", "wrong")}
className={_.join(
[
"w-4 h-4 absolute top-1/2 transform -translate-y-1/2",
langDetector(lang, "left-2", "right-2"),
],
" "
)}
/>
)}
{status && value && (
<img
src={tick}
alt={langDetector(lang, "درست", "right")}
className={_.join(
[
"w-4 h-4 absolute top-1/2 transform -translate-y-1/2",
langDetector(lang, "left-2", "right-2"),
],
" "
)}
/>
)}
{value && !status && (
<span
className={_.join(
[
"input__message text-xs absolute -bottom-5",
langDetector(lang, "right-2", "left-2"),
inputStatusHandler(
value,
focusToggle,
status,
"",
"input__messageSuccess",
"input__messageDanger"
),
"transition",
],
" "
)}
>
{message}
</span>
)}
{value && (
<span
className={_.join(
[
"input__length absolute -bottom-5 text-xs",
langDetector(lang, "left-2", "right-2"),
inputStatusHandler(
value,
focusToggle,
status,
"",
"input__lengthSuccess",
"input__lengthDanger"
),
"transition",
],
" "
)}
>
{value.length + "/" + maxLength}
</span>
)}
</div>
);
}
Input.defaultProps = {
lang : 'fa',
inputMode : 'string',
label : '',
status : '',
maxLength : '',
message : '',
}`,
},
},
{
name: "Navbar",
author: "Andalib",
props: [],
content: {
name: "Navbar",
component: <Navbar />,
code: null,
},
},
{
name: "Search Design",
author: "Andalib/Ashrafi",
props: [],
content: {
name: "Search Design",
component: <SearchDesign />,
code: null,
},
},
{
name: "Switch Design",
author: "Andalib/Ashrafi",
props: [],
content: {
name: "Switch Design",
component: <SwitchDesign />,
code: null,
},
},
{
name: "Sidebar",
author: "Andalib",
props: [],
content: {
name: "Sidebar",
component: <Sidebar />,
code: null,
},
},
{
name: "Single Product",
author: "Andalib",
props: [],
content: {
name: "Single Product",
component: <SingleProduct />,
code: null,
},
},
{
name: "Rating",
author: "Andalib/Ashrafi",
props: [],
content: {
name: "Rating",
component: <Rating />,
code: null,
},
},
{
name: "Tooltip",
author: "Andalib",
props: [],
content: {
name: "Tooltip",
component: <Tooltip />,
code: null,
},
},
{
name: "Product Suggestion Card",
author: "Andalib",
props: [],
content: {
name: "Product Suggestion Card",
component: <ProductSuggestionCard />,
code: null,
},
},
{
name: "Product Description Table",
author: "Keshavarzi",
props: [],
content: {
name: "Product Description Table",
component: <ProductDescriptionTable />,
code: null,
},
},
{
name: "QandA",
author: "Ashrafi",
props: [],
content: {
name: "QandA",
component: <QuestionAnswer />,
code: null,
},
},
{
name: "Radio Button",
author: "Ashrafi",
props: [],
content: {
name: "Radio Button",
component: <RadioButton />,
code: null,
},
},
{
name: "Datepicker",
author: "Andalib/Keshavarzi",
props: [],
content: {
name: "Datepicker",
component: <Datepicker />,
code: null,
},
},
{
name: "Search With Suggestion",
author: "Ashrafi",
props: [],
content: {
name: "Search With Suggestion",
component: <SearchWithSuggestion />,
code: null,
},
},
{
name: "Product Categories",
author: "Ashrafi",
props: [],
content: {
name: "Product Categories",
component: <ProductCategories />,
code: null,
},
},
{
name: "Select Box",
author: "Ashrafi",
props: [],
content: {
name: "Select Box",
component: <SelectBox />,
code: null,
},
},
{
name: "Range Slider",
author: "Ashrafi",
props: [],
content: {
name: "Range Slider",
component: <RangeSlider />,
code: null,
},
},
{
name: "Stepper",
author: "Ashrafi",
props: [],
content: {
name: "Stepper",
component: <Stepper />,
code: null,
},
},
{
name: "Upload File",
author: "Andalib",
props: [],
content: {
name: "Upload File",
component: <UploadFile />,
code: null,
},
},
{
name: "Animated Input",
author: "MrGorji",
props: [],
content: {
name: "Animated Input",
component: <AnimatedInput />,
code: null,
},
},
{
name: "Box Next To Each Other",
author: "Andalib",
props: [],
content: {
name: "Box Next To Each Other",
component: <BoxNextToEachOther />,
code: null,
},
},
{
name: "Contact Us",
author: "Andalib",
props: [],
content: {
name: "Contact Us",
component: <ContactUs />,
code: null,
},
},
{
name: "Current Date Time",
author: "Andalib",
props: [],
content: {
name: "Current Date Time",
component: <CurrentDateTime />,
code: null,
},
},
{
name: "DivideX",
author: "Andalib",
props: [],
content: {
name: "DivideX",
component: <DivideX />,
code: null,
},
},
{
name: "File Manager",
author: "Andalib",
props: [],
content: {
name: "File Manager",
component: <FileManager />,
code: null,
},
},
{
name: "Form Fields",
author: "Andalib",
props: [],
content: {
name: "Form Fields",
component: <FormFields />,
code: null,
},
},
{
name: "Tabels",
author: "Andalib",
props: [],
content: {
name: "Tabels",
component: <Tabels />,
code: null,
},
},
{
name: "LeafletMap",
author: "Andalib",
props: [],
content: {
name: "LeafletMap",
component: <LeafletMap />,
code: null,
},
},
{
name: "Product Gallery",
author: "Andalib",
props: [],
content: {
name: "Product Gallery",
component: <ProductGallery />,
code: null,
},
},
{
name: "Product Sales Amount",
author: "Andalib",
props: [],
content: {
name: "Product Sales Amount",
component: <ProductSalesAmount />,
code: null,
},
},
{
name: "Avatar",
author: "Andalib",
props: [],
content: {
name: "Avatar",
component: <Avatar />,
code: null,
},
},
{
name: "Time Line",
author: "Andalib",
props: [],
content: {
name: "Time Line",
component: <Timeline />,
code: null,
},
},
// mini components
{
name: "Mini Components",
author: "Andalib",
props: [],
content: {
name: "Mini Components used in Main Components",
component: <MiniComponents />,
code: null,
},
},
];
export default components;