create-gojs-kit
Version:
A CLI for downloading GoJS samples, extensions, and docs
189 lines (166 loc) • 7.91 kB
text/typescript
/*
* Copyright 1998-2025 by Northwoods Software Corporation. All Rights Reserved.
*/
/*
* This is an extension and not part of the main GoJS library.
* The source code for this is at extensionsJSM/TextEditor.ts.
* Note that the API for this class may change with any version, even point releases.
* If you intend to use an extension in production, you should copy the code to your own source directory.
* Extensions can be found in the GoJS kit under the extensions or extensionsJSM folders.
* See the Extensions intro page (https://gojs.net/latest/intro/extensions.html) for more information.
*/
import * as go from 'gojs';
// This is the definitions of the predefined text editor used by TextEditingTool
// when you set or bind TextBlock.editable to true.
// The source code for this is at extensionsJSM/TextEditor.ts.
// You do not need to load this file in order to use in-place text editing.
// HTML + JavaScript text editor menu, made with HTMLInfo
// This is a re-implementation of the default text editor
// This file exposes one instance of HTMLInfo, window.TextEditor
// Typical usage is:
// ```js
// new go.Diagram(...,
// {
// 'textEditingTool.defaultTextEditor': window.TextEditor,
// . . .
// })
// ```
// or:
// ```js
// myDiagram.toolManager.textEditingTool.defaultTextEditor = window.TextEditor;
// ```
// ```js
// new go.Node(. . .)
// .add(
// . . .
// new go.TextBlock({ textEditor: window.TextEditor, . . . })
// . . .
// )
// ```
// If you do use this code, copy it into your project and modify it there.
// See also TextEditor.html
((window: any) => {
const TextEditor: go.HTMLInfo = new go.HTMLInfo();
const textarea = document.createElement('textarea');
textarea.addEventListener('input', e => {
const tool = (TextEditor as any).tool;
if (tool.textBlock === null) return;
const tempText = tool.measureTemporaryTextBlock(textarea.value);
const scale = (textarea as any).textScale;
textarea.style.width = 20 + Math.max(tool.textBlock.measuredBounds.width, tempText.measuredBounds.width) * scale + 'px';
textarea.rows = Math.max(tool.textBlock.lineCount, tempText.lineCount);
}, false);
textarea.addEventListener('keydown', e => {
if (e.isComposing) return;
const tool = (TextEditor as any).tool;
if (tool.textBlock === null) return;
const key = e.key;
if (key === 'Enter') { // Enter
if (tool.textBlock.isMultiline === false) e.preventDefault();
tool.acceptText(go.TextEditingAccept.Enter);
return;
} else if (key === 'Tab') { // Tab
tool.acceptText(go.TextEditingAccept.Tab);
e.preventDefault();
return;
} else if (key === 'Escape') { // Esc
tool.doCancel();
if (tool.diagram !== null) tool.diagram.doFocus();
}
}, false);
// handle focus:
textarea.addEventListener('focus', e => {
const tool = (TextEditor as any).tool;
if (!tool || tool.currentTextEditor === null || tool.state === go.TextEditingState.None) return;
if (tool.state === go.TextEditingState.Active) {
tool.state = go.TextEditingState.Editing;
}
if (typeof textarea.select === 'function' && tool.selectsTextOnActivate) {
textarea.select();
textarea.setSelectionRange(0, 9999);
}
}, false);
// Disallow blur.
// If the textEditingTool blurs and the text is not valid,
// we do not want focus taken off the element just because a user clicked elsewhere.
textarea.addEventListener('blur', e => {
const tool = (TextEditor as any).tool;
if (!tool || tool.currentTextEditor === null || tool.state === go.TextEditingState.None) return;
if (typeof textarea.focus === 'function') textarea.focus();
if (typeof textarea.select === 'function' && tool.selectsTextOnActivate) {
textarea.select();
textarea.setSelectionRange(0, 9999);
}
}, false);
TextEditor.valueFunction = () => textarea.value;
TextEditor.mainElement = textarea; // to reference it more easily
(TextEditor as any).tool = null; // Initialize
// used to be in doActivate
TextEditor.show = (textBlock: go.GraphObject | null, diagram: go.Diagram, tool: go.Tool) => {
if (!(textBlock instanceof go.TextBlock)) return;
if (!diagram || !diagram.div) return;
if (!(tool instanceof go.TextEditingTool)) return;
if ((TextEditor as any).tool !== null) return; // Only one at a time.
(TextEditor as any).tool = tool; // remember the TextEditingTool for use by listeners
// This is called during validation, if validation failed:
if (tool.state === go.TextEditingState.Invalid) {
textarea.style.border = '3px solid red';
textarea.focus();
return;
}
// This part is called during initalization:
const loc = textBlock.getDocumentPoint(go.Spot.Center);
const pos = diagram.position;
const sc = diagram.scale;
let textscale = textBlock.getDocumentScale() * sc;
if (textscale < tool.minimumEditorScale) textscale = tool.minimumEditorScale;
// Add slightly more width/height to stop scrollbars and line wrapping on some browsers
// +6 is firefox minimum, otherwise lines will be wrapped improperly
const textwidth = textBlock.naturalBounds.width * textscale + 6;
const textheight = textBlock.naturalBounds.height * textscale + 2;
const left = (loc.x - pos.x) * sc;
const yCenter = (loc.y - pos.y) * sc; // this is actually the center, used to set style.top
const valign = textBlock.verticalAlignment;
const oneLineHeight = textBlock.lineHeight + textBlock.spacingAbove + textBlock.spacingBelow;
const allLinesHeight = oneLineHeight * textBlock.lineCount * textscale;
const center = (0.5 * textheight) - (0.5 * allLinesHeight);
// add offset to yCenter to get the appropriate position:
const yOffset = ((valign.y * textheight) - (valign.y * allLinesHeight) + valign.offsetY) - center - (allLinesHeight / 2);
textarea.value = textBlock.text;
// the only way you can mix font and fontSize is if the font inherits and the fontSize overrides
// in the future maybe have textarea contained in its own div
diagram.div.style['font'] = textBlock.font;
const paddingsize = 1;
textarea.style['position'] = 'absolute';
textarea.style['zIndex'] = '100';
textarea.style['font'] = 'inherit';
textarea.style['fontSize'] = (textscale * 100) + '%';
textarea.style['lineHeight'] = 'normal';
textarea.style['width'] = textwidth + 'px';
textarea.style['left'] = ((left - (textwidth / 2) | 0) - paddingsize) + 'px';
textarea.style['top'] = (((yCenter + yOffset) | 0) - paddingsize) + 'px';
textarea.style['textAlign'] = textBlock.textAlign;
textarea.style['margin'] = '0';
textarea.style['padding'] = paddingsize + 'px';
textarea.style['border'] = '0';
textarea.style['outline'] = 'none';
textarea.style['whiteSpace'] = 'pre-wrap';
textarea.style['overflow'] = 'hidden'; // for proper IE wrap
textarea.rows = textBlock.lineCount;
(textarea as any).textScale = textscale; // attach a value to the textarea, for convenience
textarea.className = 'goTXarea';
// Show:
diagram.div.appendChild(textarea);
// After adding, focus:
textarea.focus();
if (tool.selectsTextOnActivate) {
textarea.select();
textarea.setSelectionRange(0, 9999);
}
};
TextEditor.hide = (diagram: go.Diagram, tool: go.Tool) => {
(TextEditor as any).tool = null; // forget reference to TextEditingTool
if (diagram.div) diagram.div.removeChild(textarea);
};
window.TextEditor = TextEditor;
})(window);