mirror of
https://github.com/mue/mue.git
synced 2026-07-17 14:04:09 +02:00
feat: cross-modal tab navigation
This commit is contained in:
@@ -0,0 +1,75 @@
|
||||
import React, { useState, useEffect } from 'react';
|
||||
import { motion, AnimatePresence } from 'framer-motion';
|
||||
import { Button } from 'components/Elements';
|
||||
import { MdOutlineOpenInNew, MdOutlineArrowForward } from 'react-icons/md';
|
||||
import variables from 'config/variables';
|
||||
|
||||
const CollectionCarousel = ({ collections, collectionFunction }) => {
|
||||
const [currentIndex, setCurrentIndex] = useState(0);
|
||||
const [selectedCollections, setSelectedCollections] = useState([]);
|
||||
|
||||
const getRandomCollections = (collections, count) => {
|
||||
let shuffled = collections.sort(() => 0.5 - Math.random());
|
||||
return shuffled.slice(0, count);
|
||||
};
|
||||
|
||||
useEffect(() => {
|
||||
setSelectedCollections(getRandomCollections(collections, 3));
|
||||
}, [collections]);
|
||||
|
||||
useEffect(() => {
|
||||
const interval = setInterval(() => {
|
||||
setCurrentIndex((prevIndex) => (prevIndex + 1) % selectedCollections.length);
|
||||
}, 5000);
|
||||
return () => clearInterval(interval);
|
||||
}, [selectedCollections]);
|
||||
|
||||
return (
|
||||
<div className="carousel">
|
||||
<AnimatePresence initial={false} custom={currentIndex} mode="wait">
|
||||
{selectedCollections.length > 0 && (
|
||||
<motion.div
|
||||
key={currentIndex}
|
||||
initial={{ x: '50%', opacity: 1 }}
|
||||
animate={{ x: 0, opacity: 1 }}
|
||||
exit={{ x: '-50%', opacity: 1 }}
|
||||
transition={{ duration: 1 }}
|
||||
className="collection"
|
||||
style={
|
||||
selectedCollections[currentIndex]?.news
|
||||
? { backgroundColor: selectedCollections[currentIndex]?.background_colour }
|
||||
: {
|
||||
backgroundImage: `linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7), transparent, rgba(0, 0, 0, 0.7), rgba(0 ,0, 0, 0.9)), url('${selectedCollections[currentIndex]?.img}')`,
|
||||
}
|
||||
}
|
||||
>
|
||||
<div className="content">
|
||||
<span className="title">{selectedCollections[currentIndex]?.display_name}</span>
|
||||
<span className="subtitle">{selectedCollections[currentIndex]?.description}</span>
|
||||
</div>
|
||||
{selectedCollections[currentIndex]?.news === true ? (
|
||||
<a
|
||||
className="btn-collection"
|
||||
href={selectedCollections[currentIndex]?.news_link}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
{variables.getMessage('modals.main.marketplace.learn_more')} <MdOutlineOpenInNew />
|
||||
</a>
|
||||
) : (
|
||||
<Button
|
||||
type="collection"
|
||||
onClick={() => collectionFunction(selectedCollections[currentIndex]?.name)}
|
||||
icon={<MdOutlineArrowForward />}
|
||||
label={variables.getMessage('modals.main.marketplace.explore_collection')}
|
||||
iconPlacement={'right'}
|
||||
/>
|
||||
)}
|
||||
</motion.div>
|
||||
)}
|
||||
</AnimatePresence>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export { CollectionCarousel as default, CollectionCarousel };
|
||||
@@ -0,0 +1 @@
|
||||
export * from './CollectionCarousel';
|
||||
@@ -12,6 +12,8 @@ import { Button } from 'components/Elements';
|
||||
import { install } from 'utils/marketplace';
|
||||
import { sortItems } from '../api';
|
||||
|
||||
import { useTab } from 'components/Elements/MainModal/backend/TabContext';
|
||||
|
||||
function Marketplace() {
|
||||
const [items, setItems] = useState([]);
|
||||
const [done, setDone] = useState(false);
|
||||
@@ -21,7 +23,8 @@ function Marketplace() {
|
||||
const [type, setType] = useState('all');
|
||||
const [busy, setBusy] = useState(false);
|
||||
const [collectionTitle, setCollectionTitle] = useState('');
|
||||
|
||||
const { changeTab } = useTab();
|
||||
|
||||
const controller = new AbortController();
|
||||
|
||||
async function toggle(pageType, data) {
|
||||
@@ -129,7 +132,6 @@ function Marketplace() {
|
||||
setDone(true);
|
||||
}
|
||||
|
||||
|
||||
function returnToMain() {
|
||||
setCollection(false);
|
||||
}
|
||||
@@ -208,6 +210,16 @@ function Marketplace() {
|
||||
|
||||
return (
|
||||
<>
|
||||
<h1
|
||||
onClick={() =>
|
||||
changeTab(
|
||||
'settings',
|
||||
variables.getMessage('modals.main.settings.sections.changelog.title'),
|
||||
)
|
||||
}
|
||||
>
|
||||
See changelog
|
||||
</h1>
|
||||
{collection === true ? (
|
||||
<>
|
||||
<Header
|
||||
@@ -218,16 +230,18 @@ function Marketplace() {
|
||||
/>
|
||||
<div
|
||||
className="collectionPage"
|
||||
style={{
|
||||
// backgroundImage: `linear-gradient(to bottom, transparent, black), url('${collectionImg}')`,
|
||||
}}
|
||||
style={
|
||||
{
|
||||
// backgroundImage: `linear-gradient(to bottom, transparent, black), url('${collectionImg}')`,
|
||||
}
|
||||
}
|
||||
>
|
||||
<div className="nice-tag">
|
||||
{variables.getMessage('modals.main.marketplace.collection')}
|
||||
</div>
|
||||
<div className="content">
|
||||
<span className="mainTitle">{collectionTitle}</span>
|
||||
= </div>
|
||||
<span className="mainTitle">{collectionTitle}</span>={' '}
|
||||
</div>
|
||||
|
||||
<Button
|
||||
type="collection"
|
||||
|
||||
Reference in New Issue
Block a user