import { useRef, useState } from 'react' import { MultiValue } from 'react-select' import { ActionFunction, json, LoaderFunction, MetaFunction, redirect, } from '@vercel/remix' import { useLoaderData, Form, useFetcher, useNavigation, useSearchParams, } from '@remix-run/react' import { Header } from '~/components/Header/Header' import { CardExample } from '~/components/Cards/CardExample' import { Heading } from '~/components/Text/Heading' import { Copy } from '~/components/Text/Copy' import { Anchor } from '~/components/Text/Anchor' import { Select } from '~/components/Select' import { SANDBOXES } from '~/data/sandboxes' import { fetchSandbox, getTagsAndComponents } from '~/helpers/sandboxes' import { WidgetCarbon } from '../components/Widgets/WidgetCarbon' import { copy, exampleFilters, flex, h2, main, sandboxesList, xlHeading, } from '../styles/routes/examples.css' export const loader: LoaderFunction = async ({ request }) => { try { const url = new URL(request.url) const tagsParam = url.searchParams.get('tags')?.split(',') ?? [] const componentsParam = url.searchParams.get('components')?.split(',') ?? [] const sandboxes = await Promise.all( Object.values(SANDBOXES).map(fetchSandbox) ).then(boxes => boxes.sort((a, b) => a.title.localeCompare(b.title))) const filteredSandboxes = sandboxes.filter(sandbox => { if (tagsParam.length === 0 && componentsParam.length === 0) { return sandbox } const tags = sandbox.tags.filter(tag => tagsParam.includes(tag)) const components = sandbox.tags.filter(tag => componentsParam.includes(tag) ) if (tags.length > 0 || components.length > 0) { return sandbox } }) const [tags, components] = getTagsAndComponents(sandboxes) return json( { sandboxes: filteredSandboxes, tags, components, }, { headers: { 'Cache-Control': 'public, max-age=60, s-max-age=60', }, } ) } catch (err) { console.error(err) return redirect('/500') } } export const action: ActionFunction = async ({ request }) => { const form = await request.formData() const tags = form.get('tags') ?? '' const components = form.get('components') ?? '' if (tags !== '' || components !== '') { return redirect( `/examples?${tags !== '' ? `tags=${tags}` : ''}${ components !== '' ? `&components=${components}` : '' }` ) } return redirect(`/examples`) } export const meta: MetaFunction = () => { return [ { title: 'Examples | React Spring', }, { name: 'description', content: `The home of examples using react-spring to bring naturally fluid animations elevating UI & interactions`, }, { property: 'og:title', content: 'Examples | React Spring' }, { name: 'og:description', contnet: 'The home of examples using react-spring to bring naturally fluid animations elevating UI & interactions', }, { name: 'og:url', content: 'https://www.react-spring.dev/examples', }, { name: 'twitter:url', content: 'https://www.react-spring.dev/examples', }, { name: 'twitter:title', content: 'Examples | React Spring', }, { name: 'twitter:description', content: 'The home of examples using react-spring to bring naturally fluid animations elevating UI & interactions', }, ] } export interface Sandbox { urlTitle: string title: string tags: string[] screenshotUrl: string description: string id: string } export default function Examples() { const { components, sandboxes, tags } = useLoaderData<{ components: { value: string; label: string }[] sandboxes: Sandbox[] tags: { value: string; label: string }[] }>() const [searchParams] = useSearchParams() const defaultTags = searchParams.getAll('tags') const defaultComponents = searchParams.getAll('components') const [selectStates, setSelectState] = useState({ tags: defaultTags.map(tag => ({ value: tag, label: tag })), components: defaultComponents.map(component => ({ value: component, label: component, })), }) const formRef = useRef(null!) const fetcher = useFetcher() const { state } = useNavigation() const handleSelectChange = (name: 'tags' | 'components') => (newValue: MultiValue<{ value: string }>) => { const data = { ...selectStates, [name]: newValue, } setSelectState(data) fetcher.submit( { tags: data.tags.map(val => val.value).join(','), components: data.components.map(val => val.value).join(','), }, { method: 'post', action: '/examples' } ) } return ( <>
Examples {`Got an example you want to see here & share with the community?`}{' '} Check out{' '} this guide .
{`Alternatively, check out examples by `} {selectStates.tags.length > 0 || selectStates.components.length > 0 ? ( {'. Or maybe, you want to see them '} all? ) : null}
    {sandboxes.map(props => (
  • ))}
) }