refactor(components): add co-author field to the story form

This commit is contained in:
☙◦ The Tablet ❀ GamerGirlandCo ◦❧ 2023-10-11 16:27:32 -04:00
parent ba13c4a52f
commit 188b55724c
Signed by: tablet
GPG Key ID: 924A5F6AF051E87C

View File

@ -1,7 +1,6 @@
<script setup lang="ts">
import draggable from "vuedraggable";
import { v4 } from "uuid";
import { autoSave } from "~/lib/client/utils";
import lmove from "lodash-move";
import {
Field,
@ -16,6 +15,9 @@
FormStory,
defaultChapter,
} from "~/lib/client/types/form/story";
import { autoSave } from "~/lib/client/utils";
import findUser from "~/components/findUser.vue";
import singleChapter from "./singleChapter.vue";
import icon from "~/components/icon.vue";
@ -24,6 +26,7 @@
data: FormStory;
canDraft?: boolean;
endpoint: string;
endpointMethod: "put" | "post";
}>();
let drag = false;
let acData = ref(props.data);
@ -67,6 +70,9 @@
<a-input v-bind="field" :value="value" />
</a-form-item>
</Field>
<a-form-item label="Co-author (optional)">
<find-user :initial-option="null" fieldName="coAuthor" :multi="false" />
</a-form-item>
<Field
:unchecked-value="false"
:value="true"