| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- import { NotificationService } from '@vendure/admin-ui/core';
- import { Card, useInjector, usePageMetadata } from '@vendure/admin-ui/react';
- import React, { useState, useEffect } from 'react';
- export function Greeter(props: { name: string }) {
- const notificationService = useInjector(NotificationService);
- const { setTitle, setBreadcrumb } = usePageMetadata();
- const [titleValue, setTitleValue] = useState('');
- const [breadcrumbValue, setBreadcrumbValue] = useState('Greeter');
- useEffect(() => {
- setTitle('My Page');
- setBreadcrumb([
- { link: ['./parent'], label: 'Parent Page' },
- { link: ['./'], label: 'This Page' },
- ]);
- }, []);
- function handleClick() {
- notificationService.success('You clicked me!');
- }
- return (
- <div className="page-block">
- <Card title={`Hello ${props.name}`}>
- <button className="button primary" onClick={handleClick}>
- Click me
- </button>
- <div className="form-grid">
- <div>
- <input value={titleValue} onInput={e => setTitleValue((e.target as any).value)} />
- <button className="button secondary" onClick={() => setTitle(titleValue)}>
- Set title
- </button>
- </div>
- <div>
- <input
- value={breadcrumbValue}
- onInput={e => setBreadcrumbValue((e.target as any).value)}
- />
- <button className="button secondary" onClick={() => setBreadcrumb(breadcrumbValue)}>
- Set breadcrumb
- </button>
- </div>
- </div>
- </Card>
- <Card title={'Buttons'}>
- <div className="flex center" style={{ gap: '12px' }}>
- <button className="button primary">Primary</button>
- <button className="button secondary">Secondary</button>
- <button className="button success">Success</button>
- <button className="button warning">Warning</button>
- <button className="button danger">Danger</button>
- <button className="button-ghost">Ghost</button>
- <button className="button-small">Small</button>
- </div>
- </Card>
- <Card title={'Testing the card'}>Yolo</Card>
- </div>
- );
- }
|