move widget registry to codemirror package

+ add transpiler as dependency to codemirror
This commit is contained in:
Felix Roos 2024-03-15 10:00:07 +01:00
parent 8742d50bad
commit 4a95bf67da
7 changed files with 23 additions and 18 deletions

View file

@ -46,6 +46,7 @@
"@replit/codemirror-vscode-keymap": "^6.0.2",
"@strudel/core": "workspace:*",
"@strudel/draw": "workspace:*",
"@strudel/transpiler": "workspace:*",
"@uiw/codemirror-themes": "^4.21.21",
"@uiw/codemirror-themes-all": "^4.21.21",
"nanostores": "^0.9.5"

View file

@ -1,5 +1,7 @@
import { StateEffect, StateField } from '@codemirror/state';
import { Decoration, EditorView, WidgetType } from '@codemirror/view';
import { registerWidgetType } from '@strudel/transpiler';
import { Pattern } from '@strudel/core';
const getWidgetID = (from) => `widget_${from}`;
@ -79,3 +81,15 @@ export class BlockWidget extends WidgetType {
}
export const widgetPlugin = [widgetField];
// widget implementer API to create a new widget type
export function registerWidget(type, fn) {
registerWidgetType(type);
if (fn) {
Pattern.prototype[type] = function (id, options = { fold: 1 }) {
// fn is expected to create a dom element and call setWidget(id, el);
// fn should also return the pattern
return fn(id, options, this);
};
}
}