From 08ec766353a1069507b9acf3ed530e5e3355c2ca Mon Sep 17 00:00:00 2001 From: xiaodong zuo Date: Tue, 6 Sep 2022 14:20:07 +0800 Subject: [PATCH] feat: disable search feature --- .../editor-plugins/src/search/Search.tsx | 19 +++++++------------ .../layout/src/header/LayoutHeader.tsx | 1 + 2 files changed, 8 insertions(+), 12 deletions(-) diff --git a/libs/components/editor-plugins/src/search/Search.tsx b/libs/components/editor-plugins/src/search/Search.tsx index 23a3f46c2c..6092862416 100644 --- a/libs/components/editor-plugins/src/search/Search.tsx +++ b/libs/components/editor-plugins/src/search/Search.tsx @@ -5,12 +5,7 @@ import { styled, TransitionsModal, } from '@toeverything/components/ui'; -import { - BlockEditor, - HookType, - PluginHooks, - Virgo, -} from '@toeverything/framework/virgo'; +import { BlockEditor, PluginHooks, Virgo } from '@toeverything/framework/virgo'; import { throttle } from '@toeverything/utils'; import { useCallback, useEffect, useState } from 'react'; import { useNavigate, useParams } from 'react-router'; @@ -76,13 +71,13 @@ export const Search = (props: SearchProps) => { setSearch(''); }, []); - useEffect(() => { - const sub = props.hooks.get(HookType.ON_SEARCH).subscribe(handleSearch); + // useEffect(() => { + // const sub = props.hooks.get(HookType.ON_SEARCH).subscribe(handleSearch); - return () => { - sub.unsubscribe(); - }; - }, [props, handleSearch]); + // return () => { + // sub.unsubscribe(); + // }; + // }, [props, handleSearch]); return ( { size="large" hoverColor={'transparent'} onClick={handleSearch} + disabled={true} >