1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-04-06 02:37:14 +00:00

fix: document is not defined by checking !$tw.browser

ReferenceError: document is not defined
    at $tw.utils.domMaker ($:/boot/boot.js:181:32)
    at ProsemirrorWidget.render ($:/plugins/tiddlywiki/prosemirror/widget.js:36:29)
This commit is contained in:
linonetwo 2025-03-23 23:01:39 +08:00
parent de0c98978c
commit 2941bf6af3
2 changed files with 16 additions and 3 deletions

View File

@ -0,0 +1,15 @@
/*\
title: $:/plugins/tiddlywiki/prosemirror/widget-loader.js
type: application/javascript
module-type: widget
\*/
if (!$tw.browser) {
return;
}
// separate the widget from the exports here, so we can skip the require of react code if `!$tw.browser`. Those ts code will error if loaded in the nodejs side.
const components = require('$:/plugins/tiddlywiki/prosemirror/widget.js');
const { prosemirror } = components;
exports.prosemirror = prosemirror;
exports['edit-prosemirror'] = prosemirror;

View File

@ -1,9 +1,7 @@
/*\
title: $:/plugins/tiddlywiki/prosemirror/widget.js
type: application/javascript
module-type: widget
Text node widget
module-type: library
\*/