mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-23 19:42:19 +03:00
70 lines
1.8 KiB
TypeScript
70 lines
1.8 KiB
TypeScript
import { toast, Tooltip } from '@affine/component';
|
|
import { BlockCard } from '@affine/component/card/block-card';
|
|
import { WorkspaceCard } from '@affine/component/card/workspace-card';
|
|
import { WorkspaceFlavour } from '@affine/env/workspace';
|
|
import { getOrCreateWorkspace } from '@affine/workspace/manager';
|
|
import {
|
|
EdgelessIcon,
|
|
ExportToHtmlIcon,
|
|
HelpIcon,
|
|
PageIcon,
|
|
} from '@blocksuite/icons';
|
|
|
|
export default {
|
|
title: 'AFFiNE/Card',
|
|
component: WorkspaceCard,
|
|
};
|
|
|
|
const blockSuiteWorkspace = getOrCreateWorkspace(
|
|
'blocksuite-local',
|
|
WorkspaceFlavour.LOCAL
|
|
);
|
|
|
|
blockSuiteWorkspace.meta.setName('Hello World');
|
|
|
|
export const AffineWorkspaceCard = () => {
|
|
return (
|
|
<WorkspaceCard
|
|
meta={{
|
|
id: 'blocksuite-local',
|
|
flavour: WorkspaceFlavour.LOCAL,
|
|
}}
|
|
onClick={() => {}}
|
|
onSettingClick={() => {}}
|
|
currentWorkspaceId={null}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export const AffineBlockCard = () => {
|
|
return (
|
|
<div style={{ display: 'flex', flexDirection: 'column', gap: '4px' }}>
|
|
<BlockCard title={'New Page'} onClick={() => toast('clicked')} />
|
|
<BlockCard
|
|
title={'New Page'}
|
|
desc={'Write with a blank page'}
|
|
right={<PageIcon width={20} height={20} />}
|
|
onClick={() => toast('clicked page')}
|
|
/>
|
|
<BlockCard
|
|
title={'New Edgeless'}
|
|
desc={'Draw with a blank whiteboard'}
|
|
left={<PageIcon width={20} height={20} />}
|
|
right={<EdgelessIcon width={20} height={20} />}
|
|
onClick={() => toast('clicked edgeless')}
|
|
/>
|
|
<BlockCard
|
|
left={<ExportToHtmlIcon width={20} height={20} />}
|
|
title="HTML"
|
|
disabled
|
|
right={
|
|
<Tooltip content={'Learn how to Import pages into AFFiNE.'}>
|
|
<HelpIcon />
|
|
</Tooltip>
|
|
}
|
|
onClick={() => toast('click HTML')}
|
|
/>
|
|
</div>
|
|
);
|
|
};
|