2022-07-07 05:19:05 +08:00
|
|
|
<script>
|
2022-07-18 05:16:09 +08:00
|
|
|
import { createEventDispatcher, tick } from "svelte";
|
2023-04-17 17:43:48 +08:00
|
|
|
import { slide } from "svelte/transition";
|
2022-07-07 05:19:05 +08:00
|
|
|
import { Record } from "pocketbase";
|
|
|
|
import CommonHelper from "@/utils/CommonHelper";
|
|
|
|
import ApiClient from "@/utils/ApiClient";
|
2022-10-30 16:28:14 +08:00
|
|
|
import tooltip from "@/actions/tooltip";
|
2022-07-07 05:19:05 +08:00
|
|
|
import { setErrors } from "@/stores/errors";
|
|
|
|
import { confirm } from "@/stores/confirmation";
|
|
|
|
import { addSuccessToast } from "@/stores/toasts";
|
|
|
|
import Field from "@/components/base/Field.svelte";
|
|
|
|
import Toggler from "@/components/base/Toggler.svelte";
|
|
|
|
import OverlayPanel from "@/components/base/OverlayPanel.svelte";
|
2022-10-30 16:28:14 +08:00
|
|
|
import AuthFields from "@/components/records/fields/AuthFields.svelte";
|
2022-07-07 05:19:05 +08:00
|
|
|
import TextField from "@/components/records/fields/TextField.svelte";
|
|
|
|
import NumberField from "@/components/records/fields/NumberField.svelte";
|
|
|
|
import BoolField from "@/components/records/fields/BoolField.svelte";
|
|
|
|
import EmailField from "@/components/records/fields/EmailField.svelte";
|
|
|
|
import UrlField from "@/components/records/fields/UrlField.svelte";
|
|
|
|
import DateField from "@/components/records/fields/DateField.svelte";
|
|
|
|
import SelectField from "@/components/records/fields/SelectField.svelte";
|
|
|
|
import JsonField from "@/components/records/fields/JsonField.svelte";
|
|
|
|
import FileField from "@/components/records/fields/FileField.svelte";
|
|
|
|
import RelationField from "@/components/records/fields/RelationField.svelte";
|
2023-01-17 19:31:48 +08:00
|
|
|
import EditorField from "@/components/records/fields/EditorField.svelte";
|
2022-10-30 16:28:14 +08:00
|
|
|
import ExternalAuthsList from "@/components/records/ExternalAuthsList.svelte";
|
2022-07-07 05:19:05 +08:00
|
|
|
|
|
|
|
const dispatch = createEventDispatcher();
|
|
|
|
const formId = "record_" + CommonHelper.randomString(5);
|
2023-04-17 17:43:48 +08:00
|
|
|
const tabFormKey = "form";
|
|
|
|
const tabProviderKey = "providers";
|
2022-07-07 05:19:05 +08:00
|
|
|
|
|
|
|
export let collection;
|
|
|
|
|
|
|
|
let recordPanel;
|
|
|
|
let original = null;
|
2023-04-17 17:43:48 +08:00
|
|
|
let record = null;
|
|
|
|
let initialDraft = null;
|
2022-07-07 05:19:05 +08:00
|
|
|
let isSaving = false;
|
|
|
|
let confirmClose = false; // prevent close recursion
|
|
|
|
let uploadedFilesMap = {}; // eg.: {"field1":[File1, File2], ...}
|
|
|
|
let deletedFileIndexesMap = {}; // eg.: {"field1":[0, 1], ...}
|
2023-04-17 17:43:48 +08:00
|
|
|
let originalSerializedData = JSON.stringify(null);
|
|
|
|
let serializedData = originalSerializedData;
|
|
|
|
let activeTab = tabFormKey;
|
2023-03-21 23:55:12 +08:00
|
|
|
let isNew = true;
|
2023-04-17 17:43:48 +08:00
|
|
|
let isLoaded = false;
|
2022-07-07 05:19:05 +08:00
|
|
|
|
2023-01-25 02:58:24 +08:00
|
|
|
$: hasEditorField = !!collection?.schema?.find((f) => f.type === "editor");
|
|
|
|
|
2022-07-07 05:19:05 +08:00
|
|
|
$: hasFileChanges =
|
|
|
|
CommonHelper.hasNonEmptyProps(uploadedFilesMap) ||
|
|
|
|
CommonHelper.hasNonEmptyProps(deletedFileIndexesMap);
|
|
|
|
|
2023-04-17 17:43:48 +08:00
|
|
|
$: serializedData = JSON.stringify(record);
|
|
|
|
|
|
|
|
$: hasChanges = hasFileChanges || originalSerializedData != serializedData;
|
2022-07-07 05:19:05 +08:00
|
|
|
|
2023-03-21 23:55:12 +08:00
|
|
|
$: isNew = !original || original.isNew;
|
|
|
|
|
|
|
|
$: canSave = isNew || hasChanges;
|
2022-07-07 05:19:05 +08:00
|
|
|
|
2023-04-17 17:43:48 +08:00
|
|
|
$: if (isLoaded) {
|
|
|
|
updateDraft(serializedData);
|
|
|
|
}
|
|
|
|
|
2022-07-07 05:19:05 +08:00
|
|
|
export function show(model) {
|
|
|
|
load(model);
|
|
|
|
|
|
|
|
confirmClose = true;
|
|
|
|
|
2023-04-17 17:43:48 +08:00
|
|
|
activeTab = tabFormKey;
|
2022-10-30 16:28:14 +08:00
|
|
|
|
2023-04-15 16:23:59 +08:00
|
|
|
return recordPanel?.show();
|
2022-07-07 05:19:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export function hide() {
|
2023-04-15 16:23:59 +08:00
|
|
|
return recordPanel?.hide();
|
2022-07-07 05:19:05 +08:00
|
|
|
}
|
|
|
|
|
2022-07-18 05:16:09 +08:00
|
|
|
async function load(model) {
|
2023-04-17 17:43:48 +08:00
|
|
|
isLoaded = false;
|
2022-07-07 05:19:05 +08:00
|
|
|
setErrors({}); // reset errors
|
2023-03-21 23:55:12 +08:00
|
|
|
original = model || new Record();
|
2023-04-17 17:43:48 +08:00
|
|
|
record = original.$clone();
|
2022-07-07 05:19:05 +08:00
|
|
|
uploadedFilesMap = {};
|
|
|
|
deletedFileIndexesMap = {};
|
2023-04-17 17:43:48 +08:00
|
|
|
|
|
|
|
// wait to populate the fields to get the normalized values
|
|
|
|
await tick();
|
|
|
|
|
|
|
|
initialDraft = getDraft();
|
|
|
|
if (!initialDraft || areRecordsEqual(record, initialDraft)) {
|
|
|
|
initialDraft = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
originalSerializedData = JSON.stringify(record);
|
|
|
|
isLoaded = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function draftKey() {
|
|
|
|
return "record_draft_" + (collection?.id || "") + "_" + (original?.id || "");
|
|
|
|
}
|
|
|
|
|
|
|
|
function getDraft(fallbackRecord) {
|
|
|
|
try {
|
|
|
|
const raw = window.localStorage.getItem(draftKey());
|
|
|
|
if (raw) {
|
|
|
|
return new Record(JSON.parse(raw));
|
|
|
|
}
|
|
|
|
} catch (_) {}
|
|
|
|
|
|
|
|
return fallbackRecord;
|
|
|
|
}
|
|
|
|
|
|
|
|
function updateDraft(newSerializedData) {
|
|
|
|
window.localStorage.setItem(draftKey(), newSerializedData);
|
2022-07-07 05:19:05 +08:00
|
|
|
}
|
|
|
|
|
2023-04-17 17:43:48 +08:00
|
|
|
function restoreDraft() {
|
|
|
|
if (initialDraft) {
|
|
|
|
record = initialDraft;
|
|
|
|
initialDraft = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function areRecordsEqual(recordA, recordB) {
|
|
|
|
const cloneA = recordA?.$clone();
|
|
|
|
const cloneB = recordB?.$clone();
|
|
|
|
|
|
|
|
const fileFields = collection?.schema?.filter((f) => f.type === "file");
|
|
|
|
for (let field of fileFields) {
|
|
|
|
delete cloneA?.[field.name];
|
|
|
|
delete cloneB?.[field.name];
|
|
|
|
}
|
|
|
|
|
|
|
|
// delete password props
|
|
|
|
delete cloneA?.password;
|
|
|
|
delete cloneA?.passwordConfirm;
|
|
|
|
delete cloneB?.password;
|
|
|
|
delete cloneB?.passwordConfirm;
|
|
|
|
|
|
|
|
return JSON.stringify(cloneA) == JSON.stringify(cloneB);
|
|
|
|
}
|
|
|
|
|
|
|
|
function deleteDraft() {
|
|
|
|
initialDraft = null;
|
|
|
|
window.localStorage.removeItem(draftKey());
|
2022-07-07 05:19:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function save() {
|
2022-10-30 16:28:14 +08:00
|
|
|
if (isSaving || !canSave || !collection?.id) {
|
2022-07-07 05:19:05 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
isSaving = true;
|
|
|
|
|
|
|
|
const data = exportFormData();
|
|
|
|
|
|
|
|
let request;
|
2023-03-21 23:55:12 +08:00
|
|
|
if (isNew) {
|
2022-10-30 16:28:14 +08:00
|
|
|
request = ApiClient.collection(collection.id).create(data);
|
2022-07-07 05:19:05 +08:00
|
|
|
} else {
|
2022-10-30 16:28:14 +08:00
|
|
|
request = ApiClient.collection(collection.id).update(record.id, data);
|
2022-07-07 05:19:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
request
|
2022-10-30 16:28:14 +08:00
|
|
|
.then((result) => {
|
2023-03-21 23:55:12 +08:00
|
|
|
addSuccessToast(isNew ? "Successfully created record." : "Successfully updated record.");
|
2022-07-07 05:19:05 +08:00
|
|
|
confirmClose = false;
|
2023-04-17 17:43:48 +08:00
|
|
|
deleteDraft();
|
2022-07-07 05:19:05 +08:00
|
|
|
hide();
|
|
|
|
dispatch("save", result);
|
|
|
|
})
|
|
|
|
.catch((err) => {
|
|
|
|
ApiClient.errorResponseHandler(err);
|
|
|
|
})
|
|
|
|
.finally(() => {
|
|
|
|
isSaving = false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function deleteConfirm() {
|
|
|
|
if (!original?.id) {
|
|
|
|
return; // nothing to delete
|
|
|
|
}
|
|
|
|
|
|
|
|
confirm(`Do you really want to delete the selected record?`, () => {
|
2022-10-30 16:28:14 +08:00
|
|
|
return ApiClient.collection(original.collectionId)
|
|
|
|
.delete(original.id)
|
2022-07-07 05:19:05 +08:00
|
|
|
.then(() => {
|
|
|
|
hide();
|
|
|
|
addSuccessToast("Successfully deleted record.");
|
|
|
|
dispatch("delete", original);
|
|
|
|
})
|
|
|
|
.catch((err) => {
|
|
|
|
ApiClient.errorResponseHandler(err);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function exportFormData() {
|
2023-03-25 04:30:57 +08:00
|
|
|
const data = record?.$export() || {};
|
2022-07-07 05:19:05 +08:00
|
|
|
const formData = new FormData();
|
|
|
|
|
2023-03-21 23:55:12 +08:00
|
|
|
const exportableFields = {
|
|
|
|
id: data.id,
|
|
|
|
};
|
|
|
|
|
2022-07-07 05:19:05 +08:00
|
|
|
for (const field of collection?.schema || []) {
|
2022-10-30 16:28:14 +08:00
|
|
|
exportableFields[field.name] = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (collection?.isAuth) {
|
|
|
|
exportableFields["username"] = true;
|
|
|
|
exportableFields["email"] = true;
|
|
|
|
exportableFields["emailVisibility"] = true;
|
|
|
|
exportableFields["password"] = true;
|
|
|
|
exportableFields["passwordConfirm"] = true;
|
|
|
|
exportableFields["verified"] = true;
|
2022-07-07 05:19:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// export base fields
|
|
|
|
for (const key in data) {
|
|
|
|
// skip non-schema fields
|
2022-10-30 16:28:14 +08:00
|
|
|
if (!exportableFields[key]) {
|
2022-07-07 05:19:05 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// normalize nullable values
|
|
|
|
if (typeof data[key] === "undefined") {
|
|
|
|
data[key] = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
CommonHelper.addValueToFormData(formData, key, data[key]);
|
|
|
|
}
|
|
|
|
|
|
|
|
// add uploaded files (if any)
|
|
|
|
for (const key in uploadedFilesMap) {
|
|
|
|
const files = CommonHelper.toArray(uploadedFilesMap[key]);
|
|
|
|
for (const file of files) {
|
|
|
|
formData.append(key, file);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// unset deleted files (if any)
|
|
|
|
for (const key in deletedFileIndexesMap) {
|
|
|
|
const indexes = CommonHelper.toArray(deletedFileIndexesMap[key]);
|
|
|
|
for (const index of indexes) {
|
|
|
|
formData.append(key + "." + index, "");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return formData;
|
|
|
|
}
|
2022-10-30 16:28:14 +08:00
|
|
|
|
|
|
|
function sendVerificationEmail() {
|
|
|
|
if (!collection?.id || !original?.email) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
confirm(`Do you really want to sent verification email to ${original.email}?`, () => {
|
|
|
|
return ApiClient.collection(collection.id)
|
|
|
|
.requestVerification(original.email)
|
|
|
|
.then(() => {
|
|
|
|
addSuccessToast(`Successfully sent verification email to ${original.email}.`);
|
|
|
|
})
|
|
|
|
.catch((err) => {
|
|
|
|
ApiClient.errorResponseHandler(err);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function sendPasswordResetEmail() {
|
|
|
|
if (!collection?.id || !original?.email) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
confirm(`Do you really want to sent password reset email to ${original.email}?`, () => {
|
|
|
|
return ApiClient.collection(collection.id)
|
|
|
|
.requestPasswordReset(original.email)
|
|
|
|
.then(() => {
|
|
|
|
addSuccessToast(`Successfully sent password reset email to ${original.email}.`);
|
|
|
|
})
|
|
|
|
.catch((err) => {
|
|
|
|
ApiClient.errorResponseHandler(err);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
2023-01-25 04:30:42 +08:00
|
|
|
|
|
|
|
function duplicateConfirm() {
|
|
|
|
if (hasChanges) {
|
|
|
|
confirm("You have unsaved changes. Do you really want to discard them?", () => {
|
|
|
|
duplicate();
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
duplicate();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async function duplicate() {
|
2023-03-25 04:30:57 +08:00
|
|
|
const clone = original?.$clone();
|
2023-01-25 04:30:42 +08:00
|
|
|
|
|
|
|
if (clone) {
|
|
|
|
clone.id = "";
|
|
|
|
clone.created = "";
|
|
|
|
clone.updated = "";
|
|
|
|
|
|
|
|
// reset file fields
|
|
|
|
const fields = collection?.schema || [];
|
|
|
|
for (const field of fields) {
|
|
|
|
if (field.type === "file") {
|
|
|
|
delete clone[field.name];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
show(clone);
|
|
|
|
|
|
|
|
await tick();
|
|
|
|
|
2023-04-17 17:43:48 +08:00
|
|
|
originalSerializedData = "";
|
2023-01-25 04:30:42 +08:00
|
|
|
}
|
2022-07-07 05:19:05 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<OverlayPanel
|
|
|
|
bind:this={recordPanel}
|
2023-01-25 02:58:24 +08:00
|
|
|
class="
|
|
|
|
record-panel
|
|
|
|
{hasEditorField ? 'overlay-panel-xl' : 'overlay-panel-lg'}
|
2023-04-14 20:28:24 +08:00
|
|
|
{collection?.$isAuth && !isNew ? 'colored-header' : ''}
|
2023-01-25 02:58:24 +08:00
|
|
|
"
|
2022-07-07 05:19:05 +08:00
|
|
|
beforeHide={() => {
|
|
|
|
if (hasChanges && confirmClose) {
|
|
|
|
confirm("You have unsaved changes. Do you really want to close the panel?", () => {
|
|
|
|
confirmClose = false;
|
|
|
|
hide();
|
|
|
|
});
|
2023-04-17 17:43:48 +08:00
|
|
|
|
2022-07-07 05:19:05 +08:00
|
|
|
return false;
|
|
|
|
}
|
2023-04-17 17:43:48 +08:00
|
|
|
|
2022-10-30 16:28:14 +08:00
|
|
|
setErrors({});
|
2023-04-17 17:43:48 +08:00
|
|
|
deleteDraft();
|
|
|
|
|
2022-07-07 05:19:05 +08:00
|
|
|
return true;
|
|
|
|
}}
|
|
|
|
on:hide
|
|
|
|
on:show
|
|
|
|
>
|
|
|
|
<svelte:fragment slot="header">
|
|
|
|
<h4>
|
2023-03-21 23:55:12 +08:00
|
|
|
{isNew ? "New" : "Edit"}
|
2022-10-30 16:28:14 +08:00
|
|
|
<strong>{collection?.name}</strong> record
|
2022-07-07 05:19:05 +08:00
|
|
|
</h4>
|
|
|
|
|
2023-03-21 23:55:12 +08:00
|
|
|
{#if !isNew}
|
2022-07-07 05:19:05 +08:00
|
|
|
<div class="flex-fill" />
|
2023-01-29 02:13:15 +08:00
|
|
|
<button type="button" aria-label="More" class="btn btn-sm btn-circle btn-transparent flex-gap-0">
|
|
|
|
<i class="ri-more-line" />
|
|
|
|
<Toggler class="dropdown dropdown-right dropdown-nowrap">
|
2023-03-28 00:43:46 +08:00
|
|
|
{#if collection.$isAuth && !original.verified && original.email}
|
2023-01-25 04:30:42 +08:00
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
class="dropdown-item closable"
|
2023-01-29 02:13:15 +08:00
|
|
|
on:click={() => sendVerificationEmail()}
|
2023-01-25 04:30:42 +08:00
|
|
|
>
|
2023-01-29 02:13:15 +08:00
|
|
|
<i class="ri-mail-check-line" />
|
|
|
|
<span class="txt">Send verification email</span>
|
2023-01-25 04:30:42 +08:00
|
|
|
</button>
|
2023-01-29 02:13:15 +08:00
|
|
|
{/if}
|
2023-03-28 00:43:46 +08:00
|
|
|
{#if collection.$isAuth && original.email}
|
2022-10-30 16:28:14 +08:00
|
|
|
<button
|
|
|
|
type="button"
|
2023-01-29 02:13:15 +08:00
|
|
|
class="dropdown-item closable"
|
|
|
|
on:click={() => sendPasswordResetEmail()}
|
2022-10-30 16:28:14 +08:00
|
|
|
>
|
2023-01-29 02:13:15 +08:00
|
|
|
<i class="ri-mail-lock-line" />
|
|
|
|
<span class="txt">Send password reset email</span>
|
2022-10-30 16:28:14 +08:00
|
|
|
</button>
|
2023-01-29 02:13:15 +08:00
|
|
|
{/if}
|
|
|
|
<button type="button" class="dropdown-item closable" on:click={() => duplicateConfirm()}>
|
|
|
|
<i class="ri-file-copy-line" />
|
|
|
|
<span class="txt">Duplicate</span>
|
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
class="dropdown-item txt-danger closable"
|
|
|
|
on:click|preventDefault|stopPropagation={() => deleteConfirm()}
|
|
|
|
>
|
|
|
|
<i class="ri-delete-bin-7-line" />
|
|
|
|
<span class="txt">Delete</span>
|
|
|
|
</button>
|
|
|
|
</Toggler>
|
2022-07-07 05:19:05 +08:00
|
|
|
</button>
|
|
|
|
{/if}
|
|
|
|
|
2023-03-28 00:43:46 +08:00
|
|
|
{#if collection.$isAuth && !isNew}
|
2022-10-30 16:28:14 +08:00
|
|
|
<div class="tabs-header stretched">
|
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
class="tab-item"
|
2023-04-17 17:43:48 +08:00
|
|
|
class:active={activeTab === tabFormKey}
|
|
|
|
on:click={() => (activeTab = tabFormKey)}
|
2022-10-30 16:28:14 +08:00
|
|
|
>
|
|
|
|
Account
|
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
class="tab-item"
|
2023-04-17 17:43:48 +08:00
|
|
|
class:active={activeTab === tabProviderKey}
|
|
|
|
on:click={() => (activeTab = tabProviderKey)}
|
2022-10-30 16:28:14 +08:00
|
|
|
>
|
|
|
|
Authorized providers
|
|
|
|
</button>
|
|
|
|
</div>
|
2022-07-07 05:19:05 +08:00
|
|
|
{/if}
|
2022-10-30 16:28:14 +08:00
|
|
|
</svelte:fragment>
|
|
|
|
|
|
|
|
<div class="tabs-content">
|
|
|
|
<form
|
|
|
|
id={formId}
|
|
|
|
class="tab-item"
|
2023-04-17 17:43:48 +08:00
|
|
|
class:active={activeTab === tabFormKey}
|
2022-10-30 16:28:14 +08:00
|
|
|
on:submit|preventDefault={save}
|
|
|
|
>
|
2023-04-17 17:43:48 +08:00
|
|
|
{#if !hasChanges && initialDraft}
|
|
|
|
<div class="block" out:slide={{ duration: 150 }}>
|
|
|
|
<div class="alert alert-info m-0">
|
|
|
|
<div class="icon">
|
|
|
|
<i class="ri-information-line" />
|
|
|
|
</div>
|
|
|
|
<div class="content">
|
|
|
|
The record has previous unsaved changes.
|
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
class="btn btn-sm btn-secondary"
|
|
|
|
on:click={() => restoreDraft()}
|
|
|
|
>
|
|
|
|
Restore draft
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
class="close"
|
|
|
|
aria-label="Discard draft"
|
|
|
|
use:tooltip={"Discard draft"}
|
|
|
|
on:click|preventDefault={() => deleteDraft()}
|
|
|
|
>
|
|
|
|
<i class="ri-close-line" />
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div class="clearfix p-b-base" />
|
|
|
|
</div>
|
|
|
|
{/if}
|
|
|
|
|
2023-04-14 20:28:24 +08:00
|
|
|
<Field class="form-field {!isNew ? 'readonly' : ''}" name="id" let:uniqueId>
|
2023-03-21 23:55:12 +08:00
|
|
|
<label for={uniqueId}>
|
|
|
|
<i class={CommonHelper.getFieldTypeIcon("primary")} />
|
|
|
|
<span class="txt">id</span>
|
|
|
|
<span class="flex-fill" />
|
|
|
|
</label>
|
|
|
|
{#if !isNew}
|
2022-10-30 16:28:14 +08:00
|
|
|
<div class="form-field-addon">
|
|
|
|
<i
|
|
|
|
class="ri-calendar-event-line txt-disabled"
|
|
|
|
use:tooltip={{
|
|
|
|
text: `Created: ${record.created}\nUpdated: ${record.updated}`,
|
|
|
|
position: "left",
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
</div>
|
2023-03-21 23:55:12 +08:00
|
|
|
{/if}
|
|
|
|
<input
|
|
|
|
type="text"
|
|
|
|
id={uniqueId}
|
|
|
|
placeholder="Leave empty to auto generate..."
|
|
|
|
minlength="15"
|
|
|
|
readonly={!isNew}
|
2023-04-14 20:28:24 +08:00
|
|
|
bind:value={record.id}
|
2023-03-21 23:55:12 +08:00
|
|
|
/>
|
|
|
|
</Field>
|
2022-07-07 05:19:05 +08:00
|
|
|
|
2022-10-30 16:28:14 +08:00
|
|
|
{#if collection?.isAuth}
|
|
|
|
<AuthFields bind:record {collection} />
|
2022-11-16 21:13:04 +08:00
|
|
|
|
|
|
|
{#if collection?.schema?.length}
|
|
|
|
<hr />
|
|
|
|
{/if}
|
2022-07-07 05:19:05 +08:00
|
|
|
{/if}
|
2022-10-30 16:28:14 +08:00
|
|
|
|
|
|
|
{#each collection?.schema || [] as field (field.name)}
|
|
|
|
{#if field.type === "text"}
|
|
|
|
<TextField {field} bind:value={record[field.name]} />
|
|
|
|
{:else if field.type === "number"}
|
|
|
|
<NumberField {field} bind:value={record[field.name]} />
|
|
|
|
{:else if field.type === "bool"}
|
|
|
|
<BoolField {field} bind:value={record[field.name]} />
|
|
|
|
{:else if field.type === "email"}
|
|
|
|
<EmailField {field} bind:value={record[field.name]} />
|
|
|
|
{:else if field.type === "url"}
|
|
|
|
<UrlField {field} bind:value={record[field.name]} />
|
2023-01-17 19:31:48 +08:00
|
|
|
{:else if field.type === "editor"}
|
|
|
|
<EditorField {field} bind:value={record[field.name]} />
|
2022-10-30 16:28:14 +08:00
|
|
|
{:else if field.type === "date"}
|
|
|
|
<DateField {field} bind:value={record[field.name]} />
|
|
|
|
{:else if field.type === "select"}
|
|
|
|
<SelectField {field} bind:value={record[field.name]} />
|
|
|
|
{:else if field.type === "json"}
|
|
|
|
<JsonField {field} bind:value={record[field.name]} />
|
|
|
|
{:else if field.type === "file"}
|
|
|
|
<FileField
|
|
|
|
{field}
|
|
|
|
{record}
|
|
|
|
bind:value={record[field.name]}
|
|
|
|
bind:uploadedFiles={uploadedFilesMap[field.name]}
|
|
|
|
bind:deletedFileIndexes={deletedFileIndexesMap[field.name]}
|
|
|
|
/>
|
|
|
|
{:else if field.type === "relation"}
|
|
|
|
<RelationField {field} bind:value={record[field.name]} />
|
|
|
|
{/if}
|
|
|
|
{/each}
|
|
|
|
</form>
|
|
|
|
|
2023-03-28 00:43:46 +08:00
|
|
|
{#if collection.$isAuth && !isNew}
|
2023-04-17 17:43:48 +08:00
|
|
|
<div class="tab-item" class:active={activeTab === tabProviderKey}>
|
2022-10-30 16:28:14 +08:00
|
|
|
<ExternalAuthsList {record} />
|
2022-07-07 05:19:05 +08:00
|
|
|
</div>
|
2022-10-30 16:28:14 +08:00
|
|
|
{/if}
|
|
|
|
</div>
|
2022-07-07 05:19:05 +08:00
|
|
|
|
|
|
|
<svelte:fragment slot="footer">
|
2023-01-24 03:57:35 +08:00
|
|
|
<button type="button" class="btn btn-transparent" disabled={isSaving} on:click={() => hide()}>
|
2022-07-07 05:19:05 +08:00
|
|
|
<span class="txt">Cancel</span>
|
|
|
|
</button>
|
2023-02-19 01:33:42 +08:00
|
|
|
|
2022-07-07 05:19:05 +08:00
|
|
|
<button
|
|
|
|
type="submit"
|
|
|
|
form={formId}
|
|
|
|
class="btn btn-expanded"
|
|
|
|
class:btn-loading={isSaving}
|
|
|
|
disabled={!canSave || isSaving}
|
|
|
|
>
|
2023-03-21 23:55:12 +08:00
|
|
|
<span class="txt">{isNew ? "Create" : "Save changes"}</span>
|
2022-07-07 05:19:05 +08:00
|
|
|
</button>
|
|
|
|
</svelte:fragment>
|
|
|
|
</OverlayPanel>
|