feat(core): save user habits in right sidebar (#6262)

Closes #6237
This commit is contained in:
EYHN
2024-03-22 07:32:59 +00:00
parent 85ee22329c
commit 75355867c7
3 changed files with 34 additions and 9 deletions

View File

@@ -16,6 +16,8 @@ import type { Doc as BlockSuiteDoc } from '@blocksuite/store';
import {
Doc,
globalBlockSuiteSchema,
GlobalState,
LiveData,
PageManager,
PageRecordList,
ServiceProviderContext,
@@ -65,7 +67,23 @@ import { PageNotFound } from '../../404';
import * as styles from './detail-page.css';
import { DetailPageHeader } from './detail-page-header';
const RIGHT_SIDEBAR_TABS_ACTIVE_KEY = 'app:settings:rightsidebar:tabs:active';
const DetailPageImpl = memo(function DetailPageImpl() {
const globalState = useService(GlobalState);
const activeTabName = useLiveData(
LiveData.from(
globalState.watch<SidebarTabName>(RIGHT_SIDEBAR_TABS_ACTIVE_KEY),
'journal'
)
);
const setActiveTabName = useCallback(
(name: string) => {
globalState.set(RIGHT_SIDEBAR_TABS_ACTIVE_KEY, name);
},
[globalState]
);
const page = useService(Doc);
const pageRecordList = useService(PageRecordList);
const currentPageId = page.id;
@@ -84,10 +102,6 @@ const DetailPageImpl = memo(function DetailPageImpl() {
}
}, [editor, isActiveView, setActiveBlockSuiteEditor]);
const [activeTabName, setActiveTabName] = useState<SidebarTabName | null>(
null
);
const pageMeta = useBlockSuiteDocMeta(docCollection).find(
meta => meta.id === page.id
);