openreplay/frontend/app/components/Session_/Inspector/AttrView.tsx
Andrey Babushkin fd5c0c9747
Add lokalisation (#3092)
* applied eslint

* add locales and lint the project

* removed error boundary

* updated locales

* fix min files

* fix locales
2025-03-06 17:43:15 +01:00

81 lines
2.4 KiB
TypeScript

/* eslint-disable i18next/no-literal-string */
import React, { useState, useCallback } from 'react';
import cn from 'classnames';
import InlineInput from './InlineInput';
import stl from './inspector.module.css';
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 ? (
<InlineInput
value={`${attr.name}="${attr.value}"`}
commit={commit}
className={cn('ml-2', stl.attributeInput)}
/>
) : (
<span className="ml-2" onDoubleClick={() => setEditing(true)}>
<span className={stl.attributeName}>{attr.name}</span>
{attr.value && (
<>
= &quot;<span className={stl.attributeValue}>{attr.value}</span>&quot;
</>
)}
</span>
);
}