mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-14 21:27:20 +00:00
139 lines
3.8 KiB
TypeScript
139 lines
3.8 KiB
TypeScript
import { BlockSuiteError, ErrorCode } from '@blocksuite/global/exceptions';
|
|
import { sha } from '@blocksuite/global/utils';
|
|
import {
|
|
type AssetsManager,
|
|
BaseAdapter,
|
|
type BlockSnapshot,
|
|
type DocSnapshot,
|
|
type ExtensionType,
|
|
type FromBlockSnapshotPayload,
|
|
type FromBlockSnapshotResult,
|
|
type FromDocSnapshotPayload,
|
|
type FromDocSnapshotResult,
|
|
type FromSliceSnapshotPayload,
|
|
type FromSliceSnapshotResult,
|
|
nanoid,
|
|
type SliceSnapshot,
|
|
type ToBlockSnapshotPayload,
|
|
type ToDocSnapshotPayload,
|
|
type Transformer,
|
|
} from '@blocksuite/store';
|
|
|
|
import { AdapterFactoryIdentifier } from './types/adapter';
|
|
|
|
export type Attachment = File[];
|
|
|
|
type AttachmentToSliceSnapshotPayload = {
|
|
file: Attachment;
|
|
assets?: AssetsManager;
|
|
workspaceId: string;
|
|
pageId: string;
|
|
};
|
|
|
|
export class AttachmentAdapter extends BaseAdapter<Attachment> {
|
|
override fromBlockSnapshot(
|
|
_payload: FromBlockSnapshotPayload
|
|
): Promise<FromBlockSnapshotResult<Attachment>> {
|
|
throw new BlockSuiteError(
|
|
ErrorCode.TransformerNotImplementedError,
|
|
'AttachmentAdapter.fromBlockSnapshot is not implemented.'
|
|
);
|
|
}
|
|
|
|
override fromDocSnapshot(
|
|
_payload: FromDocSnapshotPayload
|
|
): Promise<FromDocSnapshotResult<Attachment>> {
|
|
throw new BlockSuiteError(
|
|
ErrorCode.TransformerNotImplementedError,
|
|
'AttachmentAdapter.fromDocSnapshot is not implemented.'
|
|
);
|
|
}
|
|
|
|
override fromSliceSnapshot(
|
|
payload: FromSliceSnapshotPayload
|
|
): Promise<FromSliceSnapshotResult<Attachment>> {
|
|
const attachments: Attachment = [];
|
|
for (const contentSlice of payload.snapshot.content) {
|
|
if (contentSlice.type === 'block') {
|
|
const { flavour, props } = contentSlice;
|
|
if (flavour === 'affine:attachment') {
|
|
const { sourceId } = props;
|
|
const file = payload.assets?.getAssets().get(sourceId as string) as
|
|
| File
|
|
| undefined;
|
|
if (file) {
|
|
attachments.push(file);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return Promise.resolve({ file: attachments, assetsIds: [] });
|
|
}
|
|
|
|
override toBlockSnapshot(
|
|
_payload: ToBlockSnapshotPayload<Attachment>
|
|
): Promise<BlockSnapshot> {
|
|
throw new BlockSuiteError(
|
|
ErrorCode.TransformerNotImplementedError,
|
|
'AttachmentAdapter.toBlockSnapshot is not implemented.'
|
|
);
|
|
}
|
|
|
|
override toDocSnapshot(
|
|
_payload: ToDocSnapshotPayload<Attachment>
|
|
): Promise<DocSnapshot> {
|
|
throw new BlockSuiteError(
|
|
ErrorCode.TransformerNotImplementedError,
|
|
'AttachmentAdapter.toDocSnapshot is not implemented.'
|
|
);
|
|
}
|
|
|
|
override async toSliceSnapshot(
|
|
payload: AttachmentToSliceSnapshotPayload
|
|
): Promise<SliceSnapshot | null> {
|
|
const content: SliceSnapshot['content'] = [];
|
|
for (const item of payload.file) {
|
|
const blobId = await sha(await item.arrayBuffer());
|
|
payload.assets?.getAssets().set(blobId, item);
|
|
await payload.assets?.writeToBlob(blobId);
|
|
content.push({
|
|
type: 'block',
|
|
flavour: 'affine:attachment',
|
|
id: nanoid(),
|
|
props: {
|
|
name: item.name,
|
|
size: item.size,
|
|
type: item.type,
|
|
embed: false,
|
|
style: 'horizontalThin',
|
|
index: 'a0',
|
|
xywh: '[0,0,0,0]',
|
|
rotate: 0,
|
|
sourceId: blobId,
|
|
},
|
|
children: [],
|
|
});
|
|
}
|
|
if (content.length === 0) {
|
|
return null;
|
|
}
|
|
return {
|
|
type: 'slice',
|
|
content,
|
|
workspaceId: payload.workspaceId,
|
|
pageId: payload.pageId,
|
|
};
|
|
}
|
|
}
|
|
|
|
export const AttachmentAdapterFactoryIdentifier =
|
|
AdapterFactoryIdentifier('Attachment');
|
|
|
|
export const AttachmentAdapterFactoryExtension: ExtensionType = {
|
|
setup: di => {
|
|
di.addImpl(AttachmentAdapterFactoryIdentifier, provider => ({
|
|
get: (job: Transformer) => new AttachmentAdapter(job, provider),
|
|
}));
|
|
},
|
|
};
|