Add item shop demo

environments/review-items-9u2qry/deployments/4363
Alex Gleason 2024-01-13 11:12:45 -06:00
rodzic 1e9b209f06
commit e070bb51f3
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 7211D1F99744FBB7
4 zmienionych plików z 80 dodań i 0 usunięć

Wyświetl plik

@ -138,6 +138,12 @@ const SidebarNavigation = () => {
{renderMessagesLink()}
<SidebarNavigationLink
to='/items'
icon={require('@tabler/icons/moneybag.svg')}
text='Items'
/>
{features.groups && (
<SidebarNavigationLink
to={groupsPath}

Wyświetl plik

@ -0,0 +1,71 @@
import { type Event } from 'nostr-tools';
import React from 'react';
import { Button, Column, Text } from 'soapbox/components/ui';
import { type Account } from 'soapbox/schemas';
interface SoapboxItem {
id: string;
name: string;
description: string;
image: string;
price: number;
account: Account;
}
const account = {
id: '1',
acct: 'ditto.ngrok.app',
} as unknown as Account;
const items = [
{ id: '1', name: 'Angry Toast', image: 'http://localhost:8080/angry-toast.png', account, price: 3000 },
{ id: '2', name: 'Avocado', image: 'http://localhost:8080/avocado.png', account, price: 3000 },
{ id: '3', name: 'Candy Apple', image: 'http://localhost:8080/candy-apple.png', account, price: 3000 },
{ id: '4', name: 'Computer', image: 'http://localhost:8080/computer.png', account, price: 3000 },
{ id: '5', name: 'Cookie', image: 'http://localhost:8080/cookie.png', account, price: 3000 },
{ id: '6', name: 'Diamond Cupcake', image: 'http://localhost:8080/diamond-cupcake.png', account, price: 3000 },
{ id: '7', name: 'Disco Ball', image: 'http://localhost:8080/disco-ball.png', account, price: 3000 },
{ id: '8', name: 'Doom Shield', image: 'http://localhost:8080/doom-shield.png', account, price: 3000 },
{ id: '9', name: 'Doubloon', image: 'http://localhost:8080/doubloon.png', account, price: 3000 },
{ id: '10', name: 'Gamer Girl Bathwater', image: 'http://localhost:8080/gamer-girl-bathwater.png', account, price: 3000 },
{ id: '11', name: 'Gamething', image: 'http://localhost:8080/gamething.png', account, price: 3000 },
{ id: '12', name: 'Gold Fiddle', image: 'http://localhost:8080/gold-fiddle.png', account, price: 3000 },
{ id: '13', name: 'Holy Bible', image: 'http://localhost:8080/holy-bible.png', account, price: 3000 },
{ id: '14', name: 'Mushroom', image: 'http://localhost:8080/mushroom.png', account, price: 3000 },
{ id: '15', name: 'Owl Clock', image: 'http://localhost:8080/owl-clock.png', account, price: 3000 },
{ id: '16', name: 'Piggy Bank', image: 'http://localhost:8080/piggy-bank.png', account, price: 3000 },
{ id: '17', name: 'Royal Crown', image: 'http://localhost:8080/royal-crown.png', account, price: 3000 },
{ id: '18', name: 'Tinfoil Hat', image: 'http://localhost:8080/tinfoil-hat.png', account, price: 3000 },
{ id: '19', name: 'Vegan Burger', image: 'http://localhost:8080/vegan-burger.png', account, price: 3000 },
{ id: '20', name: 'Voodoo Doll', image: 'http://localhost:8080/voodoo-doll.png', account, price: 3000 },
] as unknown as SoapboxItem[];
interface IItems {
badges: Event[];
}
const Items: React.FC<IItems> = () => {
return (
<Column label='Item Shop'>
<div className='grid grid-cols-4 gap-6'>
{items.map((item) => <Item {...item} />)}
</div>
</Column>
);
};
const Item: React.FC<SoapboxItem> = ({ id, name, image, account, price }) => {
return (
<div key={id} className='flex flex-col gap-3 text-center'>
<img className='aspect-1 rounded-lg object-contain' src={image} alt={name} />
<div>
<Text weight='bold'>{name}</Text>
<Text size='xs' theme='muted'>@{account.acct}</Text>
</div>
<Button size='sm' className='mt-auto' icon={require('@tabler/icons/bolt.svg')}>Buy</Button>
</div>
);
};
export default Items;

Wyświetl plik

@ -136,6 +136,7 @@ import {
RegisterInvite,
ExternalLogin,
LandingTimeline,
Items,
} from './util/async-components';
import GlobalHotkeys from './util/global-hotkeys';
import { WrappedRoute } from './util/react-router-helpers';
@ -246,6 +247,7 @@ const SwitchingColumnsArea: React.FC<ISwitchingColumnsArea> = ({ children }) =>
{features.bookmarks && <WrappedRoute path='/bookmarks' page={DefaultPage} component={Bookmarks} content={children} />}
<WrappedRoute path='/notifications' page={DefaultPage} component={Notifications} content={children} />
<WrappedRoute path='/items' page={DefaultPage} component={Items} content={children} />
<WrappedRoute path='/search' page={SearchPage} component={Search} content={children} publicRoute />
{features.suggestions && <WrappedRoute path='/suggestions' publicRoute page={DefaultPage} component={FollowRecommendations} content={children} />}

Wyświetl plik

@ -161,3 +161,4 @@ export const EditAnnouncementModal = lazy(() => import('soapbox/features/ui/comp
export const FollowedTags = lazy(() => import('soapbox/features/followed-tags'));
export const AccountNotePanel = lazy(() => import('soapbox/features/ui/components/panels/account-note-panel'));
export const ComposeEditor = lazy(() => import('soapbox/features/compose/editor'));
export const Items = lazy(() => import('soapbox/features/items'));