@print-one/grapesjs
Version:
Free and Open Source Web Builder Framework
45 lines (37 loc) • 1.15 kB
text/typescript
import { forEach } from 'underscore';
import { toLowerCase } from '../../utils/mixins';
import ComponentText from './ComponentText';
const type = 'link';
export default class ComponentLink extends ComponentText {
get defaults() {
return {
// @ts-ignore
...super.defaults,
type,
tagName: 'a',
traits: ['title', 'href', 'target'],
};
}
static isComponent(el: HTMLElement, opts: any = {}) {
let result: any;
if (toLowerCase(el.tagName) === 'a') {
const textTags = opts.textTags || [];
result = { type, editable: false };
// The link is editable only if, at least, one of its
// children is a text node (not empty one)
const children = el.childNodes;
const len = children.length;
if (!len) delete result.editable;
forEach(children, child => {
const { tagName } = child as HTMLElement;
if (
(child.nodeType == 3 && (child as any).textContent.trim() !== '') ||
(tagName && textTags.indexOf(toLowerCase(tagName)) >= 0)
) {
delete result.editable;
}
});
}
return result;
}
}