1
0
Fork 0
mirror of synced 2024-09-12 07:27:20 +12:00
budibase/packages/standard-components/src/DataForm.svelte

246 lines
5.2 KiB
Svelte
Raw Normal View History

<script>
2020-05-07 21:53:34 +12:00
import { onMount } from "svelte"
import { fade } from "svelte/transition"
export let _bb
2020-05-08 09:15:09 +12:00
export let model
export let title
export let buttonText
const TYPE_MAP = {
string: "text",
boolean: "checkbox",
2020-06-30 06:55:27 +12:00
number: "number",
}
2020-05-08 09:15:09 +12:00
let newModel = {
2020-06-04 03:10:03 +12:00
modelId: model,
2020-05-08 09:15:09 +12:00
}
let store = _bb.store
2020-06-04 03:10:03 +12:00
let schema = {}
let modelDef = {}
let saved = false
let saving = false
let inputElements = {}
2020-05-08 09:15:09 +12:00
2020-06-04 03:10:03 +12:00
$: if (model && model.length !== 0) {
fetchModel()
}
$: fields = Object.keys(schema)
async function fetchModel() {
2020-06-19 03:59:31 +12:00
const FETCH_MODEL_URL = `/api/models/${model}`
2020-06-04 03:10:03 +12:00
const response = await _bb.api.get(FETCH_MODEL_URL)
modelDef = await response.json()
schema = modelDef.schema
}
2020-05-08 09:15:09 +12:00
async function save() {
// prevent double clicking firing multiple requests
if (saving) return
saving = true
2020-06-19 03:59:31 +12:00
const SAVE_RECORD_URL = `/api/${model}/records`
2020-05-18 22:01:09 +12:00
const response = await _bb.api.post(SAVE_RECORD_URL, newModel)
const json = await response.json()
2020-05-08 09:15:09 +12:00
if (response.status === 200) {
store.update(state => {
state[model] = state[model] ? [...state[model], json] : [json]
return state
})
resetForm()
saved = true
setTimeout(() => {
saved = false
}, 1000)
}
saving = false
}
const resetForm = () => {
for (let el of Object.values(inputElements)) {
el.value = ""
if (el.checked) {
el.checked = false
}
}
newModel = {
modelId: model
}
2020-05-08 09:15:09 +12:00
}
const handleInput = field => event => {
let value
if (event.target.type === "checkbox") {
value = event.target.checked
newModel[field] = value
return
}
if (event.target.type === "number") {
value = parseInt(event.target.value)
newModel[field] = value
return
}
value = event.target.value
newModel[field] = value
}
</script>
2020-06-04 09:49:55 +12:00
<form class="form" on:submit|preventDefault>
{#if title}
<h1>{title}</h1>
{/if}
<hr />
2020-06-04 09:49:55 +12:00
<div class="form-content">
2020-05-08 09:15:09 +12:00
{#each fields as field}
2020-06-04 09:49:55 +12:00
<div class="form-item">
2020-05-08 09:15:09 +12:00
<label class="form-label" for="form-stacked-text">{field}</label>
2020-06-30 06:55:27 +12:00
{#if schema[field].type === 'string' && schema[field].constraints.inclusion}
<select on:blur={handleInput(field)} bind:this={inputElements[field]}>
{#each schema[field].constraints.inclusion as opt}
2020-06-30 06:55:27 +12:00
<option>{opt}</option>
{/each}
</select>
{:else}
<input
bind:this={inputElements[field]}
class="input"
type={TYPE_MAP[schema[field].type]}
on:change={handleInput(field)} />
{/if}
2020-05-08 09:15:09 +12:00
</div>
2020-06-04 09:49:55 +12:00
<hr />
2020-05-08 09:15:09 +12:00
{/each}
2020-06-04 09:49:55 +12:00
<div class="button-block">
<button on:click={save} class:saved>
{#if saved}
<div in:fade>
<span class:saved style="margin-right: 5px">🎉</span>Success<span class:saved style="margin-left: 5px">🎉</span>
</div>
{:else}
<div>
{buttonText || "Submit Form"}
</div>
{/if}
</button>
2020-06-04 09:49:55 +12:00
</div>
</div>
</form>
<style>
2020-06-04 09:49:55 +12:00
.form {
display: flex;
flex-direction: column;
2020-06-04 09:49:55 +12:00
align-items: center;
}
.form-content {
margin-bottom: 20px;
}
.input {
width: 600px;
height: 40px;
border-radius: 5px;
border: 1px solid #e6e6e6;
padding: 6px 12px 6px 12px;
font-size: 16px;
}
.form-item {
display: flex;
flex-direction: column;
2020-06-04 09:49:55 +12:00
margin-bottom: 16px;
}
2020-05-08 09:15:09 +12:00
.form-label {
font-weight: bold;
margin-bottom: 12px;
2020-06-04 09:49:55 +12:00
}
hr {
border: 1px solid var(--grey-1);
2020-06-04 09:49:55 +12:00
margin: 20px 0px;
}
hr:nth-last-child(2) {
border: 1px solid #fff;
margin: 20px 0px;
}
.button-block {
display: flex;
justify-content: flex-end;
}
button {
font-size: 16px;
padding: 0.4em;
box-sizing: border-box;
border-radius: 4px;
color: white;
background-color: #393c44;
outline: none;
width: 300px;
height: 40px;
cursor: pointer;
transition: all 0.2s ease 0s;
overflow: hidden;
outline: none;
user-select: none;
white-space: nowrap;
text-align: center;
}
button.saved {
background-color: green;
}
2020-06-30 06:55:27 +12:00
button:hover {
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
2020-06-30 06:55:27 +12:00
input[type="checkbox"] {
width: 32px;
height: 32px;
padding: 0;
margin: 0;
vertical-align: bottom;
position: relative;
top: -1px;
*overflow: hidden;
}
2020-06-30 06:55:27 +12:00
select::-ms-expand {
display: none;
}
select {
display: inline-block;
cursor: pointer;
align-items: baseline;
box-sizing: border-box;
padding: 1em 1em;
border: 1px solid #eaeaea;
border-radius: 5px;
font: inherit;
line-height: inherit;
-webkit-appearance: none;
-moz-appearance: none;
-ms-appearance: none;
appearance: none;
background-repeat: no-repeat;
background-image: linear-gradient(45deg, transparent 50%, currentColor 50%),
linear-gradient(135deg, currentColor 50%, transparent 50%);
background-position: right 17px top 1.5em, right 10px top 1.5em;
background-size: 7px 7px, 7px 7px;
}
</style>