import { each, keys, includes } from 'lodash' import { ContainerEditor as SubstanceContainerEditor, Surface, uuid, createAnnotation } from 'substance' class ContainerEditor extends SubstanceContainerEditor { render ($$) { // TODO -- better ways to write this in es6 var el = Surface.prototype.render.call(this, $$) var doc = this.getDocument() var containerId = this.getContainerId() var containerNode = doc.get(containerId) if (!containerNode) { console.warn('No container node found for ', containerId) } el.addClass('sc-container-editor container-node ' + containerId) .attr({ spellCheck: false, 'data-id': containerId }) // if it IS empty, handle in didMount if (!this.isEmpty()) { containerNode.getNodes().forEach(function (node) { el.append(this._renderNode($$, node).ref(node.id)) }.bind(this)) } // open for editing // TODO -- should maybe change to isEditable ? // or maybe deleted? we never pass a disabled prop explicitly if (!this.props.disabled) { el.addClass('sm-enabled') el.setAttribute('contenteditable', true) } // editing locked, selection open (for comments) // if (this.isReadOnlyMode()) { // const documentSession = this.getDocumentSession() // documentSession.on('didUpdate', this.disableToolbar, this) // } // Start if (this.props.trackChanges) { el.addEventListener('keydown', function (e) { const surface = this.context.surfaceManager.getSurface('body') const session = this.context.documentSession const sel = session.getSelection() const path = sel.path const startOffset = sel.startOffset - 1 const endOffset = sel.endOffset + 1 const createAnno = session.createSelection(path, startOffset, endOffset) const newNode = { selection: createAnno, node: { type: 'track-change' } } surface.transaction((tx, args) => { createAnnotation(tx, newNode) }) if (e.keyCode === 8) { console.log('newNode', newNode) let elem = document.querySelectorAll('[data-id=' + newNode.node.id + ']') elem[0].style.backgroundColor = 'transparent' elem[0].style.textDecoration = 'line-through' } }) } // END return el } didMount () { // TODO -- replace with super.didMount() Surface.prototype.didMount.apply(this, arguments) this.container.on('nodes:changed', this.onContainerChange, this) if (this.isEmpty()) this.createText() if (this.isReadOnlyMode()) { const documentSession = this.getDocumentSession() documentSession.on('didUpdate', this.disableToolbar, this) this.addTargetToLinks() } } // create an empty paragraph with an empty node // then select it for cursor focus createText () { var newSel this.transaction(function (tx) { var container = tx.get(this.props.containerId) var textType = tx.getSchema().getDefaultTextType() var node = tx.create({ id: uuid(textType), type: textType, content: '' }) container.show(node.id) newSel = tx.createSelection({ type: 'property', path: [ node.id, 'content' ], startOffset: 0, endOffset: 0 }) }.bind(this)) this.rerender() this.setSelection(newSel) } // only runs if editor is in read-only mode // disables all tools, apart from comments disableToolbar () { const commandStates = this.getCommandStates() each(keys(commandStates), key => { const allowed = ['comment', 'note', 'save', 'undo', 'redo'] if (!includes(allowed, key)) commandStates[key].disabled = true }) } getCommandStates () { const commandManager = this.context.commandManager return commandManager.getCommandStates() } isReadOnlyMode () { return !this.isEditable() && this.isSelectable() } addTargetToLinks () { const allLinks = this.el.findAll('a') each(allLinks, link => link.attr('target', '_blank') ) } } export default ContainerEditor