搜索...
一个 React Hook,用于获取文档的选择状态。
请查看 API。
点击下方链接跳转 GitHub 查看源代码。
const { text, rects, ranges, selectionRef } = useTextSelection()
export interface UseTextSelectionReturns { /** * 一个 React Ref 对象,持有当前的 Selection 对象。 */ selectionRef: MutableRefObject<Selection | null> /** * 所选的文本。 */ text: string /** * 每个选定范围的 DOMRect 对象。 */ rects: DOMRect[] /** * 每个选定范围的 Range 对象。 */ ranges: Range[] }