import React, { useState, useCallback } from 'react';
import InlineInput from './InlineInput';
import stl from './inspector.module.css';
import cn from 'classnames';
interface Props {
attr: Attr;
forceUpdateElement: () => void;
}
const attrRE = /([A-Za-z][\w-]*)(?:=(?:"([^"]*)"|'([^']*)'|`([^`]*)`))?/g
// Full trim: /^['"`\d\s\uFEFF\xA0]+|['"`\s\uFEFF\xA0]+$/g
function parseAttributes(s: string) : { [key: string]: string } {
const attrs = {}
let m;
while (m = attrRE.exec(s)) {
if (typeof m[1] !== 'string') { continue; }
attrs[m[1]] = m[2] || m[3] || "";
}
return attrs;
}
export default function AttrView({ attr, forceUpdateElement }: Props) {
const [ editing, setEditing ] = useState(false);
const commit = useCallback((text: string) => {
setEditing(false);
const attrs = parseAttributes(text);
let curNamePresent = false;
Object.entries(attrs).forEach(([name, value]) => {
curNamePresent = curNamePresent || name === attr.name;
attr.ownerElement?.setAttribute(name, value);
})
if (!curNamePresent) {
attr.ownerElement?.removeAttribute(attr.name);
}
// if (text.trim() === "") {
// attr.ownerElement.removeAttribute(attr.name);
// forceUpdateElement();
// return;
// }
// const parts = text.split("=");
// if (parts.length != 2) { return; }
// const trimRE = /^['"`\d\s\uFEFF\xA0]+|['"`\s\uFEFF\xA0]+$/g
// const name = parts[0].replace(trimRE, '');
// if (!/^[A-Za-z0-9:-]+$/.test(name)) { return; }
// let value = parts[1];
// if (value[0] === value[ value.length - 1 ] && "\'\"".includes(value[0])) {
// value = value.slice(1, value.length - 1);
// }
// if (value.includes('"')) { return; }
// if (name !== attr.name) {
// attr.ownerElement.removeAttribute(name);
// }
// attr.ownerElement.setAttribute(name, value);
forceUpdateElement();
}, []);
return editing
?
: setEditing(true) }>
{attr.name}
{ attr.value &&
<>
{'='}
{'"'}{attr.value}{'"'}
>
}
;
}