mirror of
https://github.com/cinnyapp/cinny.git
synced 2025-11-11 17:50:29 +03:00
57 lines
1.6 KiB
TypeScript
57 lines
1.6 KiB
TypeScript
import { atom } from 'jotai';
|
|
import { atomFamily } from 'jotai/utils';
|
|
import { Descendant } from 'slate';
|
|
import { EncryptedAttachmentInfo } from 'browser-encrypt-attachment';
|
|
import { IEventRelation } from 'matrix-js-sdk';
|
|
import { createUploadAtomFamily } from '../upload';
|
|
import { TUploadContent } from '../../utils/matrix';
|
|
import { createListAtom } from '../list';
|
|
|
|
export type TUploadMetadata = {
|
|
markedAsSpoiler: boolean;
|
|
};
|
|
|
|
export type TUploadItem = {
|
|
file: TUploadContent;
|
|
originalFile: TUploadContent;
|
|
metadata: TUploadMetadata;
|
|
encInfo: EncryptedAttachmentInfo | undefined;
|
|
};
|
|
|
|
export type TUploadListAtom = ReturnType<typeof createListAtom<TUploadItem>>;
|
|
|
|
export const roomIdToUploadItemsAtomFamily = atomFamily<string, TUploadListAtom>(
|
|
createListAtom
|
|
);
|
|
|
|
export const roomUploadAtomFamily = createUploadAtomFamily();
|
|
|
|
export type RoomIdToMsgAction =
|
|
| {
|
|
type: 'PUT';
|
|
roomId: string;
|
|
msg: Descendant[];
|
|
}
|
|
| {
|
|
type: 'DELETE';
|
|
roomId: string;
|
|
};
|
|
|
|
const createMsgDraftAtom = () => atom<Descendant[]>([]);
|
|
export type TMsgDraftAtom = ReturnType<typeof createMsgDraftAtom>;
|
|
export const roomIdToMsgDraftAtomFamily = atomFamily<string, TMsgDraftAtom>(() =>
|
|
createMsgDraftAtom()
|
|
);
|
|
|
|
export type IReplyDraft = {
|
|
userId: string;
|
|
eventId: string;
|
|
body: string;
|
|
formattedBody?: string | undefined;
|
|
relation?: IEventRelation | undefined;
|
|
};
|
|
const createReplyDraftAtom = () => atom<IReplyDraft | undefined>(undefined);
|
|
export type TReplyDraftAtom = ReturnType<typeof createReplyDraftAtom>;
|
|
export const roomIdToReplyDraftAtomFamily = atomFamily<string, TReplyDraftAtom>(() =>
|
|
createReplyDraftAtom()
|
|
);
|