You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
541 B
JavaScript
34 lines
541 B
JavaScript
2 months ago
|
import { BaseNodeEditor } from '../BaseNodeEditor.js';
|
||
|
import { createElementFromJSON } from '../NodeEditorUtils.js';
|
||
|
|
||
|
export class StringEditor extends BaseNodeEditor {
|
||
|
|
||
|
constructor() {
|
||
|
|
||
|
const { element, inputNode } = createElementFromJSON( {
|
||
|
inputType: 'string',
|
||
|
inputConnection: false
|
||
|
} );
|
||
|
|
||
|
super( 'String', inputNode, 350 );
|
||
|
|
||
|
element.addEventListener( 'changeInput', () => this.invalidate() );
|
||
|
|
||
|
this.add( element );
|
||
|
|
||
|
}
|
||
|
|
||
|
get stringNode() {
|
||
|
|
||
|
return this.value;
|
||
|
|
||
|
}
|
||
|
|
||
|
getURL() {
|
||
|
|
||
|
return this.stringNode.value;
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|