1
0
Fork 0
mirror of synced 2024-07-01 12:30:41 +12:00

save button

This commit is contained in:
Martin McKeaveney 2020-06-18 17:44:42 +01:00
parent 7c4f24c1b4
commit d2fbddadd5
4 changed files with 86 additions and 61 deletions

View file

@ -198,4 +198,14 @@
.no-data {
padding: 20px;
}
.button-inner {
display: flex;
align-items: center;
}
.button-inner i {
margin-right: 5px;
font-size: 20px;
}
</style>

View file

@ -39,7 +39,7 @@
</div>
<div class="info">
<div class="required-field">
<div class="field">
<label>Required</label>
<input type="checkbox" />
</div>
@ -66,12 +66,15 @@
label="Max Value"
bind:value={field.constraints.numericality.lessThanOrEqualTo} />
{:else if field.type === 'link'}
<select class="budibase__input" bind:value={field.modelId}>
<option value={''} />
{#each $backendUiStore.models as model}
<option value={model._id}>{model.name}</option>
{/each}
</select>
<div class="field">
<label>Link</label>
<select class="budibase__input" bind:value={field.modelId}>
<option value={''} />
{#each $backendUiStore.models as model}
<option value={model._id}>{model.name}</option>
{/each}
</select>
</div>
{/if}
</div>
@ -87,10 +90,11 @@
font-size: 12px;
}
.required-field {
.field {
display: grid;
align-items: center;
grid-template-columns: 40% 1fr;
margin-top: 8px;
}
.field-box header {
@ -98,4 +102,8 @@
font-weight: 500;
margin-bottom: 16px;
}
.field-box span {
font-weight: bold;
}
</style>

View file

@ -19,9 +19,13 @@
},
]
let edited = false
$: selectedTab = $backendUiStore.tabs.SETUP_PANEL
$: edited =
$backendUiStore.selectedField ||
$backendUiStore.draftModel &&
$backendUiStore.draftModel.name !== $backendUiStore.selectedModel.name
async function deleteModel() {
@ -31,18 +35,16 @@
if (field) {
delete model.schema[field]
backendUiStore.actions.models.save({ model, instanceId });
notifier.danger(`Field ${field} deleted.`);
return;
backendUiStore.actions.models.save({ model, instanceId })
notifier.danger(`Field ${field} deleted.`)
return
}
const DELETE_MODEL_URL = `/api/${instanceId}/models/${model._id}/${model._rev}`
const response = await api.delete(DELETE_MODEL_URL)
backendUiStore.update(state => {
state.selectedView = null
state.models = state.models.filter(
({ _id }) => _id !== model._id
)
state.models = state.models.filter(({ _id }) => _id !== model._id)
notifier.danger(`${model.name} deleted successfully.`)
return state
})
@ -78,7 +80,9 @@
</div>
{/if}
<footer>
<Button attention wide on:click={saveModel}>Save</Button>
<Button disabled={!edited} attention={edited} wide on:click={saveModel}>
Save
</Button>
</footer>
{:else if selectedTab === 'DELETE'}
<div class="titled-input">
@ -96,6 +100,8 @@
footer {
width: 100%;
position: fixed;
bottom: 20px;
}
.items-root {
@ -110,6 +116,7 @@
.titled-input {
padding: 12px;
background: var(--light-grey);
margin-bottom: 5px;
}
.titled-input header {

View file

@ -30,52 +30,52 @@ export const FIELDS = {
presence: false,
},
},
OPTIONS: {
name: "Options",
icon: "ri-list-check-2",
type: "options",
constraints: {
type: "string",
presence: false,
},
},
DATETIME: {
name: "Date/Time",
icon: "ri-calendar-event-fill",
type: "datetime",
constraints: {
type: "date",
datetime: {},
presence: false,
},
},
IMAGE: {
name: "File",
icon: "ri-image-line",
type: "file",
constraints: {
type: "string",
presence: false,
},
},
FILE: {
name: "Image",
icon: "ri-file-line",
type: "file",
constraints: {
type: "string",
presence: false,
},
},
DATA_LINK: {
name: "Data Links",
icon: "ri-link",
type: "link",
modelId: null,
constraints: {
type: "array",
}
},
// OPTIONS: {
// name: "Options",
// icon: "ri-list-check-2",
// type: "options",
// constraints: {
// type: "string",
// presence: false,
// },
// },
// DATETIME: {
// name: "Date/Time",
// icon: "ri-calendar-event-fill",
// type: "datetime",
// constraints: {
// type: "date",
// datetime: {},
// presence: false,
// },
// },
// IMAGE: {
// name: "File",
// icon: "ri-image-line",
// type: "file",
// constraints: {
// type: "string",
// presence: false,
// },
// },
// FILE: {
// name: "Image",
// icon: "ri-file-line",
// type: "file",
// constraints: {
// type: "string",
// presence: false,
// },
// },
// DATA_LINK: {
// name: "Data Links",
// icon: "ri-link",
// type: "link",
// modelId: null,
// constraints: {
// type: "array",
// }
// },
}
export const BLOCKS = {