mue/src/components/modals/main/marketplace/Items.jsx

104 lines
3.6 KiB
JavaScript

import variables from 'modules/variables';
import React, { useState } from 'react';
import { MdAutoFixHigh, MdOutlineArrowForward, MdExpandMore, MdOutlineOpenInNew } from 'react-icons/md';
export default function Items({
type,
items,
collections = [],
toggleFunction,
collectionFunction,
onCollection,
}) {
const getMessage = (text) => variables.language.getMessage(variables.languagecode, text);
const [count, setCount] = useState(8);
const incrementCount = () => {
if (count !== items.length && count <= items.length) {
if (count + 8 > items.length) {
setCount(count + (items.length - count));
} else {
setCount(count + 8);
}
}
};
const collection = collections[Math.floor(Math.random() * collections.length)];
return (
<>
{(type === 'all' && !onCollection) || (type === 'collections' && !onCollection) ? (
<>
<div
className="collection"
style={collection.news ? {backgroundColor: collection.background_colour} : {backgroundImage: `linear-gradient(to left, #000, transparent, #000), url('${collection.img}')`}}
>
<div className="content">
<span className="title">{collection.display_name}</span>
<span className="subtitle">{collection.description}</span>
</div>
{collection.news === true ? (
<a className="nice-button" href={collection.news_link}>
Learn More <MdOutlineOpenInNew />
</a>
) : (
<button className="nice-button" onClick={() => collectionFunction(collection.name)}>
<MdOutlineArrowForward /> {getMessage('modals.main.marketplace.explore_collection')}
</button>
)}
</div>
</>
) : null}
<div className="items">
{items.slice(0, count).map((item) => (
<div className="item" onClick={() => toggleFunction(item)} key={item.name}>
<img
alt="icon"
draggable="false"
src={variables.constants.DDG_IMAGE_PROXY + item.icon_url}
/>
<div className="card-details">
<span className="card-title">{item.display_name || item.name}</span>
<span className="card-subtitle">{item.author}</span>
</div>
</div>
))}
</div>
<div className="showMoreItems">
{count !== items.length && items.length >= 8 ? (
<span className="link" onClick={incrementCount}>
<MdExpandMore /> Show More
</span>
) : null}
{items.length <= 8 ? (
<span className="subtitle">
Showing {items.length} / {items.length}
</span>
) : (
<span className="subtitle">
Showing {count} / {items.length}
</span>
)}
</div>
<div className="loader"></div>
{type === 'all' && !onCollection ? (
<div className="createYourOwn">
<MdAutoFixHigh />
<span className="title">{getMessage('modals.main.marketplace.cant_find')}</span>
<span className="subtitle">
{getMessage('modals.main.marketplace.knowledgebase_one')}{' '}
<a
className="link"
target="_blank"
href={variables.constants.KNOWLEDGEBASE}
rel="noreferrer"
>
{getMessage('modals.main.marketplace.knowledgebase_two')}
</a>{' '}
{getMessage('modals.main.marketplace.knowledgebase_three')}
</span>
</div>
) : null}
</>
);
}