From 0a26e78dcbbf48dad5daae73b210e236d706b22c Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Tue, 14 Nov 2023 10:41:55 -0800 Subject: Composer update (react-query refactor) (#1899) * Move composer state to a context * Rework composer to use RQ --------- Co-authored-by: Eric Bailey --- src/state/shell/composer.tsx | 74 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 src/state/shell/composer.tsx (limited to 'src/state/shell/composer.tsx') diff --git a/src/state/shell/composer.tsx b/src/state/shell/composer.tsx new file mode 100644 index 000000000..a350bd7f3 --- /dev/null +++ b/src/state/shell/composer.tsx @@ -0,0 +1,74 @@ +import React from 'react' +import {AppBskyEmbedRecord} from '@atproto/api' + +export interface ComposerOptsPostRef { + uri: string + cid: string + text: string + author: { + handle: string + displayName?: string + avatar?: string + } +} +export interface ComposerOptsQuote { + uri: string + cid: string + text: string + indexedAt: string + author: { + did: string + handle: string + displayName?: string + avatar?: string + } + embeds?: AppBskyEmbedRecord.ViewRecord['embeds'] +} +export interface ComposerOpts { + replyTo?: ComposerOptsPostRef + onPost?: () => void + quote?: ComposerOptsQuote + mention?: string // handle of user to mention +} + +type StateContext = ComposerOpts | undefined +type ControlsContext = { + openComposer: (opts: ComposerOpts) => void + closeComposer: () => void +} + +const stateContext = React.createContext(undefined) +const controlsContext = React.createContext({ + openComposer(_opts: ComposerOpts) {}, + closeComposer() {}, +}) + +export function Provider({children}: React.PropsWithChildren<{}>) { + const [state, setState] = React.useState() + const api = React.useMemo( + () => ({ + openComposer(opts: ComposerOpts) { + setState(opts) + }, + closeComposer() { + setState(undefined) + }, + }), + [setState], + ) + return ( + + + {children} + + + ) +} + +export function useComposerState() { + return React.useContext(stateContext) +} + +export function useComposerControls() { + return React.useContext(controlsContext) +} -- cgit 1.4.1