mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
a27a325af7
Started building table cell form/actions
18 lines
550 B
TypeScript
18 lines
550 B
TypeScript
import {EditorFormDefinition} from "../../framework/forms";
|
|
import {EditorUiContext} from "../../framework/core";
|
|
import {setEditorContentFromHtml} from "../../../actions";
|
|
|
|
export const source: EditorFormDefinition = {
|
|
submitText: 'Save',
|
|
async action(formData, context: EditorUiContext) {
|
|
setEditorContentFromHtml(context.editor, formData.get('source')?.toString() || '');
|
|
return true;
|
|
},
|
|
fields: [
|
|
{
|
|
label: 'Source',
|
|
name: 'source',
|
|
type: 'textarea',
|
|
},
|
|
],
|
|
}; |