Files
pocketbase/ui/src/fields/date/settings.js
T

88 lines
3.6 KiB
JavaScript

// {
// originalCollection: undefined,
// collection: undefined,
// field
// get fieldIndex: int/-1,
// get originalField: undefined
// }
export function settings(props) {
const uniqueId = "f_" + app.utils.randomString();
return app.components.fieldSettings(props, {
content: () =>
t.div(
{ className: "grid sm" },
t.div(
{ className: "col-sm-6" },
t.div(
{ className: "field" },
t.label({ htmlFor: uniqueId + ".min" }, t.span({ className: "txt" }, "Min date (Local)")),
t.input({
type: "datetime-local",
id: uniqueId + ".min",
step: 1,
name: () => `fields.${props.fieldIndex}.min`,
value: () => app.utils.toDatetimeLocalInputValue(props.field.min),
onchange: (e) => {
props.field.min = app.utils.toRFC3339Datetime(e.target.value);
},
}),
),
),
t.div(
{ className: "col-sm-6" },
t.div(
{ className: "field" },
t.label({ htmlFor: uniqueId + ".max" }, t.span({ className: "txt" }, "Max date (Local)")),
t.input({
type: "datetime-local",
id: uniqueId + ".max",
step: 1,
name: () => `fields.${props.fieldIndex}.max`,
value: () => app.utils.toDatetimeLocalInputValue(props.field.max),
onchange: (e) => {
props.field.max = app.utils.toRFC3339Datetime(e.target.value);
},
}),
),
),
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.${props.fieldIndex}.help`,
value: () => props.field.help || "",
oninput: (e) => (props.field.help = e.target.value),
}),
),
),
),
footer: () => [
t.div(
{ className: "field" },
t.input({
className: "sm",
type: "checkbox",
id: uniqueId + ".required",
name: () => `fields.${props.fieldIndex}.required`,
checked: () => !!props.field.required,
onchange: (e) => (props.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."),
}),
),
),
],
});
}