record Form template
This commit is contained in:
parent
b2c045c0ca
commit
e24bdec1f9
|
@ -4,6 +4,10 @@
|
||||||
"indexDatatable": {
|
"indexDatatable": {
|
||||||
"description": "Datatable based on an Index",
|
"description": "Datatable based on an Index",
|
||||||
"component": "Datatable"
|
"component": "Datatable"
|
||||||
|
},
|
||||||
|
"recordForm": {
|
||||||
|
"description": "Form for saving a record",
|
||||||
|
"component": "Form"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Body1": {
|
"Body1": {
|
||||||
|
@ -77,7 +81,9 @@
|
||||||
"Datatable": {
|
"Datatable": {
|
||||||
"name": "Datatable",
|
"name": "Datatable",
|
||||||
"description": "A Material Design component to represent tabular data.",
|
"description": "A Material Design component to represent tabular data.",
|
||||||
"props": {},
|
"props": {
|
||||||
|
"onLoad":"event"
|
||||||
|
},
|
||||||
"tags": []
|
"tags": []
|
||||||
},
|
},
|
||||||
"DatatableHead": {
|
"DatatableHead": {
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
import ClassBuilder from "../ClassBuilder.js"
|
import ClassBuilder from "../ClassBuilder.js"
|
||||||
|
|
||||||
export let _bb
|
export let _bb
|
||||||
|
export let onLoad
|
||||||
|
|
||||||
const cb = new ClassBuilder("data-table")
|
const cb = new ClassBuilder("data-table")
|
||||||
setContext("BBMD:data-table:cb", cb)
|
setContext("BBMD:data-table:cb", cb)
|
||||||
|
@ -23,6 +24,7 @@
|
||||||
instance = new MDCDataTable(datatable)
|
instance = new MDCDataTable(datatable)
|
||||||
initialied = true
|
initialied = true
|
||||||
}
|
}
|
||||||
|
_bb.call(onLoad)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,122 @@
|
||||||
|
export default ({ records }) =>
|
||||||
|
records.map(r => ({
|
||||||
|
name: `Form for Record: ${r.nodeKey()}`,
|
||||||
|
props: outerContainer(r),
|
||||||
|
}))
|
||||||
|
|
||||||
|
const outerContainer = record => ({
|
||||||
|
_component: "@budibase/standard-components/container",
|
||||||
|
_code: "",
|
||||||
|
onLoad: [],
|
||||||
|
type: "div",
|
||||||
|
_children: [
|
||||||
|
heading(record),
|
||||||
|
...record.fields.map(f => field(record, f)),
|
||||||
|
buttons(record),
|
||||||
|
],
|
||||||
|
})
|
||||||
|
|
||||||
|
const heading = record => ({
|
||||||
|
_component: "@budibase/materialdesign-components/H3",
|
||||||
|
text: capitalize(record.name),
|
||||||
|
})
|
||||||
|
|
||||||
|
const field = (record, f) => {
|
||||||
|
if (f.type === "bool") return checkbox(record, f)
|
||||||
|
return textField(record, f)
|
||||||
|
}
|
||||||
|
|
||||||
|
const textField = (record, f) => ({
|
||||||
|
_component: "@budibase/materialdesign-components/Textfield",
|
||||||
|
label: f.label,
|
||||||
|
variant: "filled",
|
||||||
|
disabled: false,
|
||||||
|
fullwidth: false,
|
||||||
|
colour: "primary",
|
||||||
|
maxLength: f.typeOptions && f.typeOptions.maxLength ? f.typeOptions : 0,
|
||||||
|
placeholder: f.label,
|
||||||
|
value: fieldValueBinding(record, f),
|
||||||
|
})
|
||||||
|
|
||||||
|
const checkbox = (record, f) => ({
|
||||||
|
_component: "@budibase/materialdesign-components/Checkbox",
|
||||||
|
label: f.label,
|
||||||
|
checked: fieldValueBinding(record, f),
|
||||||
|
})
|
||||||
|
|
||||||
|
const fieldValueBinding = (record, f) => `store.${record.name}.${f.name}`
|
||||||
|
|
||||||
|
const capitalize = s => s.charAt(0).toUpperCase() + s.slice(1)
|
||||||
|
|
||||||
|
const buttons = record => ({
|
||||||
|
_component: "@budibase/standard-components/container",
|
||||||
|
borderWidth: "1px 0px 0px 0px",
|
||||||
|
borderColor: "lightgray",
|
||||||
|
borderStyle: "solid",
|
||||||
|
_styles: {
|
||||||
|
position: {
|
||||||
|
column: ["", ""],
|
||||||
|
row: ["", ""],
|
||||||
|
margin: ["","","",""],
|
||||||
|
padding: ["30px","","",""],
|
||||||
|
height: [""],
|
||||||
|
width: [""],
|
||||||
|
zindex: [""]
|
||||||
|
},
|
||||||
|
layout: {
|
||||||
|
templaterows: [""],
|
||||||
|
templatecolumns: [""]
|
||||||
|
},
|
||||||
|
},
|
||||||
|
_children: [
|
||||||
|
{
|
||||||
|
_component: "@budibase/materialdesign-components/Button",
|
||||||
|
onClick: [
|
||||||
|
{
|
||||||
|
"##eventHandlerType": "Save Record",
|
||||||
|
parameters: {
|
||||||
|
statePath: `${record.name}`,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"##eventHandlerType": "Navigate To",
|
||||||
|
parameters: {
|
||||||
|
url: `/${record.name}s`,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
variant: "raised",
|
||||||
|
colour: "primary",
|
||||||
|
size: "medium",
|
||||||
|
text: `Save ${capitalize(record.name)}`,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
_component: "@budibase/materialdesign-components/Button",
|
||||||
|
_styles: {
|
||||||
|
position: {
|
||||||
|
row: ["", ""],
|
||||||
|
column: ["", ""],
|
||||||
|
padding: ["", "", "", ""],
|
||||||
|
margin: ["", "", "", "10px"],
|
||||||
|
width: [""],
|
||||||
|
height: [""],
|
||||||
|
zindex: [""],
|
||||||
|
},
|
||||||
|
layout: {
|
||||||
|
templatecolumns: [""],
|
||||||
|
templaterows: [""],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
onClick: [
|
||||||
|
{
|
||||||
|
"##eventHandlerType": "Navigate To",
|
||||||
|
parameters: {
|
||||||
|
url: `/${record.name}s`,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
colour: "secondary",
|
||||||
|
text: "Cancel",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
})
|
|
@ -15,4 +15,5 @@ export {
|
||||||
DatatableRow,
|
DatatableRow,
|
||||||
} from "./Datatable"
|
} from "./Datatable"
|
||||||
export { default as indexDatatable } from "./Templates/indexDatatable"
|
export { default as indexDatatable } from "./Templates/indexDatatable"
|
||||||
|
export { default as recordForm } from "./Templates/recordForm"
|
||||||
export { List } from "./List"
|
export { List } from "./List"
|
||||||
|
|
Loading…
Reference in New Issue