@zjlab-fe/data-hub-ui 0.33.0 → 0.33.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -233,6 +233,28 @@ const NotionEditor = forwardRef(({ initContent, editable = false, className = ''
|
|
|
233
233
|
editor.isEditable = editable;
|
|
234
234
|
}
|
|
235
235
|
}, [editor, editable]);
|
|
236
|
+
useEffect(() => {
|
|
237
|
+
const onHashChange = () => {
|
|
238
|
+
if (editor) {
|
|
239
|
+
if (window.location.hash) {
|
|
240
|
+
const id = window.location.hash.split('#')[1];
|
|
241
|
+
if (id) {
|
|
242
|
+
setTimeout(() => {
|
|
243
|
+
var _a;
|
|
244
|
+
// 将 hash 中指定 id 对应的 block 滚动到可视范围内
|
|
245
|
+
const target = (_a = containerRef.current) === null || _a === void 0 ? void 0 : _a.querySelector(`.data-hub-ui-blocknote-editor [data-id="${CSS.escape(id)}"]`);
|
|
246
|
+
target === null || target === void 0 ? void 0 : target.scrollIntoView({ behavior: 'smooth', block: 'start' });
|
|
247
|
+
}, 500);
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
};
|
|
252
|
+
onHashChange();
|
|
253
|
+
window.addEventListener('hashchange', onHashChange);
|
|
254
|
+
return () => {
|
|
255
|
+
window.removeEventListener('hashchange', onHashChange);
|
|
256
|
+
};
|
|
257
|
+
}, [editor]);
|
|
236
258
|
const handleChange = useCallback(() => {
|
|
237
259
|
if (editor) {
|
|
238
260
|
const blocks = editor.document;
|