feat(core): add loading to quick search modal (#5785)

close AFF-285

add `useSyncEngineStatus` hooks
add loading style

<img width="977" alt="test1" src="https://github.com/toeverything/AFFiNE/assets/102217452/e8bf6714-e42b-4adf-a279-341ef5f5cfc0">
This commit is contained in:
JimmFly
2024-02-20 13:05:22 +00:00
parent 3792506b09
commit 876b85304e
5 changed files with 90 additions and 43 deletions
@@ -0,0 +1,4 @@
import type { SyncEngineStatus } from '@toeverything/infra';
import { atom } from 'jotai';
export const syncEngineStatusAtom = atom<SyncEngineStatus | null>(null);