merge newui branch

This commit is contained in:
Gani Georgiev
2026-04-18 16:29:34 +03:00
parent 58f605e90c
commit 4c44044c0c
804 changed files with 58660 additions and 56663 deletions
+19
View File
@@ -0,0 +1,19 @@
import { input } from "./input";
import { settings } from "./settings";
import { view } from "./view";
window.app = window.app || {};
window.app.fieldTypes = window.app.fieldTypes || {};
window.app.fieldTypes.email = {
icon: "ri-mail-line",
label: "Email",
settings,
input,
view,
filterModifiers: (f) => {
return ["lower"];
},
dummyData: (f, forSubmit = false) => {
return `test_${app.utils.randomString(3, "123567890")}@example.com`;
},
};
+36
View File
@@ -0,0 +1,36 @@
// {
// collection: undefined,
// originalRecord: undefined,
// record: undefined,
// field: undefined,
// }
export function input(props) {
const uniqueId = "email_" + app.utils.randomString();
return t.div(
{ className: "record-field-input field-type-email" },
t.div(
{ className: "field" },
t.label(
{ htmlFor: uniqueId },
t.i({ className: app.fieldTypes.email.icon }),
t.span({ className: "txt" }, () => props.field.name),
),
t.input({
type: "email",
id: uniqueId,
spellcheck: false,
autocomplete: false,
name: () => props.field.name,
required: () => props.field.required,
value: () => props.record[props.field.name] || "",
oninput: (e) => (props.record[props.field.name] = e.target.value),
}),
),
() => {
if (props.field.help) {
return t.div({ className: "field-help" }, props.field.help);
}
},
);
}
+105
View File
@@ -0,0 +1,105 @@
// {
// originalCollection: undefined,
// collection: undefined,
// field
// get fieldIndex: int/-1,
// get originalField: undefined
// }
export function settings(data) {
const uniqueId = "f_" + app.utils.randomString();
return app.components.fieldSettings(data, {
content: () =>
t.div(
{ className: "grid sm" },
t.div(
{ className: "col-sm-6" },
t.div(
{ className: "field" },
t.label(
{ htmlFor: uniqueId + ".exceptDomains" },
t.span({ className: "txt" }, "Except domains"),
t.i({
className: "ri-information-line link-hint",
ariaDescription: app.attrs.tooltip(
`List of domains that are NOT allowed.\nThis field is disabled if "Only domains" is set.`,
),
}),
),
t.input({
type: "text",
id: uniqueId + ".exceptDomains",
disabled: () => !app.utils.isEmpty(data.field.onlyDomains),
name: () => `fields.${data.fieldIndex}.exceptDomains`,
value: () => app.utils.joinNonEmpty(data.field.exceptDomains),
onchange: (
e,
) => (data.field.exceptDomains = app.utils.splitNonEmpty(e.target.value, ",")),
}),
),
t.div({ className: "field-help" }, "Use comma as separator."),
),
t.div(
{ className: "col-sm-6" },
t.div(
{ className: "field" },
t.label(
{ htmlFor: uniqueId + ".onlyDomains" },
t.span({ className: "txt" }, "Only domains"),
t.i({
className: "ri-information-line link-hint",
ariaDescription: app.attrs.tooltip(
`List of domains that are ONLY allowed.\nThis field is disabled if "Except domains" is set.`,
),
}),
),
t.input({
type: "text",
id: uniqueId + ".onlyDomains",
disabled: () => !app.utils.isEmpty(data.field.exceptDomains),
name: () => `fields.${data.fieldIndex}.onlyDomains`,
value: () => app.utils.joinNonEmpty(data.field.onlyDomains),
onchange: (e) => (data.field.onlyDomains = app.utils.splitNonEmpty(e.target.value, ",")),
}),
),
t.div({ className: "field-help" }, "Use comma as separator."),
),
t.div(
{ className: "col-sm-12" },
t.div(
{ className: "field" },
t.label({ htmlFor: uniqueId + ".help" }, "Help text"),
t.input({
type: "text",
id: uniqueId + ".help",
name: () => `fields.${data.fieldIndex}.help`,
value: () => data.field.help || "",
oninput: (e) => (data.field.help = e.target.value),
}),
),
),
),
footer: () => [
t.div(
{ className: "field" },
t.input({
className: "sm",
type: "checkbox",
id: uniqueId + ".required",
name: () => `fields.${data.fieldIndex}.required`,
checked: () => !!data.field.required,
onchange: (e) => (data.field.required = e.target.checked),
}),
t.label(
{ htmlFor: uniqueId + ".required" },
t.span({ className: "txt" }, "Required"),
t.small({ className: "txt-hint" }, "(!='')"),
t.i({
className: "ri-information-line link-hint",
ariaDescription: app.attrs.tooltip("Requires the field value to be nonempty string"),
}),
),
),
],
});
}
+26
View File
@@ -0,0 +1,26 @@
// {
// record: undefined,
// field: undefined,
// short: false,
// }
export function view(props) {
return t.div(
{ className: "record-field-view field-type-email" },
() => {
const value = props.record[props.field.name] || "";
if (!value) {
return t.span({ className: "missing-value" });
}
if (props.short) {
return t.span({
className: "txt txt-ellipsis",
textContent: app.utils.truncate(value),
});
}
return value;
},
);
}