Text search
A simple example of how to use the API to search for text in shapes and display results in the HelperButtons
part of the user interface.
import { TLComponents, TLUiOverrides, Tldraw, atom, track } from 'tldraw'
import 'tldraw/tldraw.css'
import { TextSearchPanel } from './TextSearchPanel'
import './text-search.css'
export const showSearch = atom('showSearch', false)
const components: TLComponents = {
HelperButtons: TextSearchPanel,
}
const overrides: TLUiOverrides = {
actions(_editor, actions) {
return {
...actions,
'text-search': {
id: 'text-search',
label: 'Search',
kbd: '$f',
onSelect() {
if (!showSearch.get()) {
showSearch.set(true)
}
},
},
}
},
}
const TextSearchExample = track(() => {
return (
<div className="tldraw__editor">
<Tldraw persistenceKey="text-search-example" overrides={overrides} components={components} />
</div>
)
})
export default TextSearchExample
Is this page helpful?
Prev
SublibrariesNext
Before create/update shape