mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-23 04:42:24 +03:00
chore: clean api
This commit is contained in:
parent
f8485d895b
commit
3582d7c013
@ -119,24 +119,6 @@ export const useRecastView = () => {
|
||||
[recastViews, setViews]
|
||||
);
|
||||
|
||||
/**
|
||||
* @deprecated Use updateView instead
|
||||
*/
|
||||
const changeScene = useCallback(
|
||||
async (
|
||||
id: RecastViewId,
|
||||
newScene: RecastScene.Page | RecastScene.Kanban
|
||||
) => {
|
||||
const curView = getView(id);
|
||||
if (curView.type === newScene) {
|
||||
return;
|
||||
}
|
||||
curView.type = newScene;
|
||||
await setViews(recastViews);
|
||||
},
|
||||
[getView, recastViews, setViews]
|
||||
);
|
||||
|
||||
/**
|
||||
* Get kanban ability
|
||||
*/
|
||||
@ -159,11 +141,11 @@ export const useRecastView = () => {
|
||||
recastViews,
|
||||
setCurrentView,
|
||||
addView,
|
||||
updateView,
|
||||
// updateView,
|
||||
renameView,
|
||||
removeView,
|
||||
// TODO reorder API
|
||||
|
||||
withKanbanView,
|
||||
// TODO reorder API
|
||||
};
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user