fantasia-archive/src/pages/DocumentDisplay.vue

576 lines
19 KiB
Vue
Raw Normal View History

2021-01-31 02:43:13 +13:00
<template>
2021-02-21 01:06:21 +13:00
<q-page class="q-pa-xl"
v-if="bluePrintData"
>
2021-01-31 02:43:13 +13:00
<div class="row justify-start q-col-gutter-x-xl">
<div
:class="`col-${field.sizing} q-mb-md`"
v-for="field in bluePrintData.extraFields"
:key="field.id"
>
<Field_Break
class="inputWrapper break"
v-if="field.type === 'break' && fieldLimiter(field.id)"
:inputDataBluePrint="field"
:inputDataValue="retrieveFieldValue(currentData, field.id)"
/>
<Field_Text
class="inputWrapper"
2021-02-28 06:00:57 +13:00
v-if="field.type === 'text' && fieldLimiter(field.id)"
:inputDataBluePrint="field"
:inputDataValue="retrieveFieldValue(currentData, field.id)"
:isNew="currentData.isNew"
:editMode="editMode"
@signal-input="reactToFieldUpdate($event, field)"
/>
<Field_Number
class="inputWrapper"
v-if="field.type === 'number' && fieldLimiter(field.id)"
:inputDataBluePrint="field"
:inputDataValue="retrieveFieldValue(currentData, field.id)"
:isNew="currentData.isNew"
:editMode="editMode"
@signal-input="reactToFieldUpdate($event, field)"
/>
<Field_Switch
class="inputWrapper"
v-if="field.type === 'switch' && fieldLimiter(field.id)"
:inputDataBluePrint="field"
:inputDataValue="retrieveFieldValue(currentData, field.id)"
:isNew="currentData.isNew"
:editMode="editMode"
@signal-input="reactToFieldUpdate($event, field)"
/>
<Field_ColorPicker
class="inputWrapper"
v-if="field.type === 'colorPicker' && fieldLimiter(field.id)"
:inputDataBluePrint="field"
:inputDataValue="retrieveFieldValue(currentData, field.id)"
:isNew="currentData.isNew"
:editMode="editMode"
@signal-input="reactToFieldUpdate($event, field)"
/>
<Field_List
class="inputWrapper"
v-if="field.type === 'list' && fieldLimiter(field.id)"
:inputDataBluePrint="field"
:inputDataValue="retrieveFieldValue(currentData, field.id)"
:isNew="currentData.isNew"
:editMode="editMode"
@signal-input="reactToFieldUpdate($event, field)"
/>
<Field_SingleSelect
class="inputWrapper"
v-if="field.type === 'singleSelect' && fieldLimiter(field.id)"
:inputDataBluePrint="field"
:inputDataValue="retrieveFieldValue(currentData, field.id)"
:isNew="currentData.isNew"
:editMode="editMode"
@signal-input="reactToFieldUpdate($event, field)"
/>
<Field_MultiSelect
class="inputWrapper"
v-if="field.type === 'multiSelect' && fieldLimiter(field.id)"
:inputDataBluePrint="field"
:inputDataValue="retrieveFieldValue(currentData, field.id)"
:isNew="currentData.isNew"
:editMode="editMode"
@signal-input="reactToFieldUpdate($event, field)"
/>
<Field_SingleRelationship
class="inputWrapper"
v-if="(field.type === 'singleToNoneRelationship' || field.type === 'singleToSingleRelationship' || field.type === 'singleToManyRelationship') && fieldLimiter(field.id)"
:inputDataBluePrint="field"
:inputDataValue="retrieveFieldValue(currentData, field.id)"
:isNew="currentData.isNew"
:editMode="editMode"
:current-id="currentData._id"
@signal-input="reactToFieldUpdate($event, field)"
/>
<Field_MultiRelationship
class="inputWrapper"
v-if="(field.type === 'manyToNoneRelationship' || field.type ===
'manyToSingleRelationship' || field.type === 'manyToManyRelationship') && fieldLimiter(field.id)"
:inputDataBluePrint="field"
:inputDataValue="retrieveFieldValue(currentData, field.id)"
:isNew="currentData.isNew"
:editMode="editMode"
:current-id="currentData._id"
@signal-input="reactToFieldUpdate($event, field)"
/>
<Field_Wysiwyg
class="inputWrapper"
v-if="field.type === 'wysiwyg' && fieldLimiter(field.id)"
:inputDataBluePrint="field"
:inputDataValue="(retrieveFieldValue(currentData, field.id)) ? retrieveFieldValue(currentData, field.id) : ''"
:isNew="currentData.isNew"
:editMode="editMode"
:current-id="currentData._id"
@signal-input="reactToFieldUpdate($event, field)"
/>
<Field_Tags
class="inputWrapper"
v-if="field.type === 'tags' && fieldLimiter(field.id)"
:inputDataBluePrint="field"
:inputDataValue="retrieveFieldValue(currentData, field.id)"
:isNew="currentData.isNew"
:editMode="editMode"
@signal-input="reactToFieldUpdate($event, field)"
/>
</div>
2021-02-21 01:06:21 +13:00
2021-01-31 02:43:13 +13:00
</div>
</q-page>
</template>
<script lang="ts">
import { Component, Watch } from "vue-property-decorator"
2021-01-31 02:43:13 +13:00
import BaseClass from "src/BaseClass"
import { I_Blueprint, I_ExtraFields } from "src/interfaces/I_Blueprint"
import { I_OpenedDocument } from "src/interfaces/I_OpenedDocument"
import PouchDB from "pouchdb"
import { extend } from "quasar"
import { saveDocument } from "src/scripts/databaseManager/documentManager"
import Field_Break from "src/components/fields/Field_Break.vue"
import Field_Text from "src/components/fields/Field_Text.vue"
import Field_Number from "src/components/fields/Field_Number.vue"
import Field_Switch from "src/components/fields/Field_Switch.vue"
import Field_ColorPicker from "src/components/fields/Field_ColorPicker.vue"
import Field_List from "src/components/fields/Field_List.vue"
import Field_SingleSelect from "src/components/fields/Field_SingleSelect.vue"
import Field_MultiSelect from "src/components/fields/Field_MultiSelect.vue"
import Field_SingleRelationship from "src/components/fields/Field_SingleRelationship.vue"
import Field_MultiRelationship from "src/components/fields/Field_MultiRelationship.vue"
import Field_Wysiwyg from "src/components/fields/Field_Wysiwyg.vue"
import Field_Tags from "src/components/fields/Field_Tags.vue"
2021-01-31 02:43:13 +13:00
@Component({
components: {
2021-02-09 15:21:48 +13:00
Field_Break,
2021-01-31 02:43:13 +13:00
Field_Text,
Field_Number,
2021-02-21 01:06:21 +13:00
Field_Switch,
Field_ColorPicker,
2021-01-31 02:43:13 +13:00
Field_List,
Field_SingleSelect,
Field_MultiSelect,
Field_SingleRelationship,
Field_MultiRelationship,
Field_Wysiwyg,
Field_Tags
2021-01-31 02:43:13 +13:00
}
})
export default class PageDocumentDisplay extends BaseClass {
/**
* Watches on changes of the route in order to load proper blueprint and object data
*/
@Watch("$route", { immediate: true, deep: true })
onUrlChange () {
this.reloadLocalContent().catch(e => console.log(e))
}
/**
* Watches on changes of the opened documents in order to load proper blueprint and object data
*/
@Watch("SGET_allOpenedDocuments", { deep: true })
async onDocChange () {
await this.sleep(300)
const matchingDoc = this.findRequestedOrActiveDocument()
if (matchingDoc && matchingDoc._id === this.currentData._id && !matchingDoc.hasEdits) {
this.reloadLocalContent().catch(e => console.log(e))
}
}
async reloadLocalContent () {
2021-01-31 02:43:13 +13:00
// Determine the type and retrieve the right blueprint
this.bluePrintData = this.retrieveDocumentBlueprint()
// Check if the objects exists in a database
const CurrentObjectDB = new PouchDB(this.$route.params.type)
let retrievedObject = false as unknown as I_OpenedDocument
try {
retrievedObject = await CurrentObjectDB.get(this.$route.params.id)
}
catch (error) {}
2021-01-31 02:43:13 +13:00
if (!retrievedObject) {
const snapshot: I_OpenedDocument[] = extend(true, [], this.SGET_allOpenedDocuments.docs)
retrievedObject = snapshot.find(s => this.$route.params.id === s._id) as unknown as I_OpenedDocument
if (retrievedObject?.isNew || retrievedObject?.editMode) {
this.editMode = true
}
}
else {
2021-01-31 02:43:13 +13:00
retrievedObject = (this.SGET_openedDocument(retrievedObject._id)) ? this.SGET_openedDocument(retrievedObject._id) : retrievedObject
this.editMode = (this.SGET_openedDocument(retrievedObject._id)?.hasEdits || this.SGET_openedDocument(retrievedObject._id)?.editMode)
}
// Either create a new document or load existing one
this.currentData = (retrievedObject) ? extend(true, [], retrievedObject) : this.createNewDocumentObject()
const objectFields = await this.checkObjectFields()
2021-01-31 02:43:13 +13:00
if (!objectFields) {
return
}
2021-01-31 02:43:13 +13:00
this.currentData.extraFields = objectFields
const dataCopy: I_OpenedDocument = extend(true, {}, this.currentData)
// Attempts to add current document to list
2021-02-28 06:00:57 +13:00
const dataPass = { doc: dataCopy, treeAction: false }
this.SSET_addOpenedDocument(dataPass)
2021-01-31 02:43:13 +13:00
}
async reactToFieldUpdate (inputData: string, field: I_ExtraFields) {
2021-01-31 02:43:13 +13:00
// FIELD - Text
if (field.type === "text") {
this.currentData.hasEdits = true
const indexToUpdate = this.currentData.extraFields.findIndex(s => s.id === field.id)
this.currentData.extraFields[indexToUpdate].value = inputData
2021-01-31 02:43:13 +13:00
const dataCopy: I_OpenedDocument = extend(true, {}, this.currentData)
2021-01-31 02:43:13 +13:00
2021-02-28 06:00:57 +13:00
const dataPass = { doc: dataCopy, treeAction: false }
this.SSET_updateOpenedDocument(dataPass)
2021-01-31 02:43:13 +13:00
}
2021-02-21 01:06:21 +13:00
// FIELD - Number
2021-01-31 02:43:13 +13:00
if (field.type === "number") {
this.currentData.hasEdits = true
const indexToUpdate = this.currentData.extraFields.findIndex(s => s.id === field.id)
this.currentData.extraFields[indexToUpdate].value = inputData
const dataCopy: I_OpenedDocument = extend(true, {}, this.currentData)
2021-02-28 06:00:57 +13:00
const dataPass = { doc: dataCopy, treeAction: false }
this.SSET_updateOpenedDocument(dataPass)
2021-01-31 02:43:13 +13:00
}
2021-02-21 01:06:21 +13:00
// FIELD - Switch
if (field.type === "switch") {
this.currentData.hasEdits = true
const indexToUpdate = this.currentData.extraFields.findIndex(s => s.id === field.id)
this.currentData.extraFields[indexToUpdate].value = inputData
const dataCopy: I_OpenedDocument = extend(true, {}, this.currentData)
2021-02-28 06:00:57 +13:00
const dataPass = { doc: dataCopy, treeAction: false }
this.SSET_updateOpenedDocument(dataPass)
2021-02-21 01:06:21 +13:00
if (field.id === "categorySwitch") {
const localCopy: I_Blueprint = (extend(true, {}, this.bluePrintData))
const blueprintUpdateCopy: I_Blueprint = (extend(true, {}, this.bluePrintData))
blueprintUpdateCopy.extraFields = []
// Reset fields so they re-render
this.SSET_blueprint(blueprintUpdateCopy)
this.retrieveDocumentBlueprint()
this.SSET_blueprint(localCopy)
this.retrieveDocumentBlueprint()
}
}
// FIELD - Color Picker
if (field.type === "colorPicker") {
this.currentData.hasEdits = true
const indexToUpdate = this.currentData.extraFields.findIndex(s => s.id === field.id)
this.currentData.extraFields[indexToUpdate].value = inputData
const dataCopy: I_OpenedDocument = extend(true, {}, this.currentData)
2021-02-28 06:00:57 +13:00
const dataPass = { doc: dataCopy, treeAction: false }
this.SSET_updateOpenedDocument(dataPass)
2021-02-21 01:06:21 +13:00
}
2021-01-31 02:43:13 +13:00
// FIELD - List
if (field.type === "list") {
this.currentData.hasEdits = true
const indexToUpdate = this.currentData.extraFields.findIndex(s => s.id === field.id)
this.currentData.extraFields[indexToUpdate].value = inputData
const dataCopy: I_OpenedDocument = extend(true, {}, this.currentData)
2021-02-28 06:00:57 +13:00
const dataPass = { doc: dataCopy, treeAction: false }
this.SSET_updateOpenedDocument(dataPass)
2021-01-31 02:43:13 +13:00
}
// FIELD - Simple select
if (field.type === "singleSelect") {
this.currentData.hasEdits = true
const indexToUpdate = this.currentData.extraFields.findIndex(s => s.id === field.id)
this.currentData.extraFields[indexToUpdate].value = inputData
const dataCopy: I_OpenedDocument = extend(true, {}, this.currentData)
2021-02-28 06:00:57 +13:00
const dataPass = { doc: dataCopy, treeAction: false }
this.SSET_updateOpenedDocument(dataPass)
2021-01-31 02:43:13 +13:00
}
// FIELD - Multi select
if (field.type === "multiSelect") {
this.currentData.hasEdits = true
const indexToUpdate = this.currentData.extraFields.findIndex(s => s.id === field.id)
this.currentData.extraFields[indexToUpdate].value = inputData
const dataCopy: I_OpenedDocument = extend(true, {}, this.currentData)
2021-02-28 06:00:57 +13:00
const dataPass = { doc: dataCopy, treeAction: false }
this.SSET_updateOpenedDocument(dataPass)
2021-01-31 02:43:13 +13:00
}
// FIELD - Single relationship
if (field.type === "singleToNoneRelationship" || field.type === "singleToManyRelationship" || field.type === "singleToSingleRelationship") {
this.currentData.hasEdits = true
const indexToUpdate = this.currentData.extraFields.findIndex(s => s.id === field.id)
this.currentData.extraFields[indexToUpdate].value = inputData
const dataCopy: I_OpenedDocument = extend(true, {}, this.currentData)
2021-02-28 06:00:57 +13:00
const dataPass = { doc: dataCopy, treeAction: false }
// @ts-ignore
if (inputData.skipSave) {
this.currentData.extraFields[indexToUpdate].value.skipSave = false
await this.triggerSaveDocument()
return
}
2021-02-28 06:00:57 +13:00
this.SSET_updateOpenedDocument(dataPass)
2021-01-31 02:43:13 +13:00
}
// FIELD - Multi relationship
if (field.type === "manyToNoneRelationship" || field.type === "manyToSingleRelationship" || field.type === "manyToManyRelationship") {
this.currentData.hasEdits = true
const indexToUpdate = this.currentData.extraFields.findIndex(s => s.id === field.id)
this.currentData.extraFields[indexToUpdate].value = inputData
const dataCopy: I_OpenedDocument = extend(true, {}, this.currentData)
2021-02-28 06:00:57 +13:00
const dataPass = { doc: dataCopy, treeAction: false }
// @ts-ignore
if (inputData.skipSave) {
this.currentData.extraFields[indexToUpdate].value.skipSave = false
await this.triggerSaveDocument()
return
}
2021-02-28 06:00:57 +13:00
this.SSET_updateOpenedDocument(dataPass)
2021-01-31 02:43:13 +13:00
}
// FIELD - Wysiwyg
if (field.type === "wysiwyg") {
this.currentData.hasEdits = true
const indexToUpdate = this.currentData.extraFields.findIndex(s => s.id === field.id)
this.currentData.extraFields[indexToUpdate].value = inputData
const dataCopy: I_OpenedDocument = extend(true, {}, this.currentData)
2021-02-28 06:00:57 +13:00
const dataPass = { doc: dataCopy, treeAction: false }
this.SSET_updateOpenedDocument(dataPass)
2021-01-31 02:43:13 +13:00
}
// FIELD - Tags
if (field.type === "tags") {
this.currentData.hasEdits = true
const indexToUpdate = this.currentData.extraFields.findIndex(s => s.id === field.id)
this.currentData.extraFields[indexToUpdate].value = inputData
const dataCopy: I_OpenedDocument = extend(true, {}, this.currentData)
const dataPass = { doc: dataCopy, treeAction: false }
this.SSET_updateOpenedDocument(dataPass)
}
2021-01-31 02:43:13 +13:00
}
async triggerSaveDocument () {
const currentDoc = this.currentData
2021-01-31 02:43:13 +13:00
const allDocuments = this.SGET_allOpenedDocuments
2021-01-31 02:43:13 +13:00
const docCopy: I_OpenedDocument[] = extend(true, [], allDocuments.docs)
2021-01-31 02:43:13 +13:00
if (currentDoc) {
// @ts-ignore
const savedDocument: {
documentCopy: I_OpenedDocument,
allOpenedDocuments: I_OpenedDocument[]
} = await saveDocument(currentDoc, docCopy)
2021-02-28 06:00:57 +13:00
// Update the opened document
const dataPass = { doc: savedDocument.documentCopy, treeAction: true }
this.SSET_updateOpenedDocument(dataPass)
2021-01-31 02:43:13 +13:00
// Update all others
for (const doc of savedDocument.allOpenedDocuments) {
// Update the opened document
const dataPass = { doc: doc, treeAction: true }
this.SSET_updateOpenedDocument(dataPass)
}
2021-02-28 06:00:57 +13:00
this.editMode = false
this.currentData.isNew = false
this.currentData.hasEdits = false
this.currentData.editMode = false
2021-01-31 02:43:13 +13:00
}
}
editMode = false
currentData = false as unknown as I_OpenedDocument
/**
* The current object type blueprint data
*/
bluePrintData = false as unknown as I_Blueprint
/**
* Retrieves the current document type blueprint
*/
retrieveDocumentBlueprint () : I_Blueprint {
this.bluePrintData = this.SGET_blueprint(this.$route.params.type)
return this.SGET_blueprint(this.$route.params.type)
}
async checkObjectFields () {
2021-01-31 02:43:13 +13:00
const currentExtraFields = (this.currentData && this.currentData.extraFields) ? this.currentData.extraFields : []
const blueprint = this.retrieveDocumentBlueprint()
if (!blueprint) {
return false
}
2021-01-31 02:43:13 +13:00
for (const field of blueprint.extraFields) {
const exists = currentExtraFields.find(f => {
return f.id === field.id
})
2021-01-31 02:43:13 +13:00
if (!exists) {
if (field.id === "name") {
currentExtraFields.push(
{
id: "name",
value: `New ${this.bluePrintData.nameSingular.toLowerCase()}`
}
)
}
else if (field.id === "parentDoc") {
if (this.$route.query?.parent) {
// Check if the objects exists in a database
const CurrentObjectDB = new PouchDB(this.$route.params.type)
const parentID = this.$route.query.parent as string
let retrievedObject = false as unknown as I_OpenedDocument
try {
retrievedObject = await CurrentObjectDB.get(parentID)
}
catch (error) {}
currentExtraFields.push(
{
id: "parentDoc",
value: {
value: {
_id: retrievedObject._id,
value: retrievedObject._id,
type: this.bluePrintData._id,
disable: false,
url: retrievedObject.url,
label: this.retrieveFieldValue(retrievedObject, "name"),
pairedField: ""
},
addedValues: {
pairedId: "",
value: ""
}
}
}
)
}
else {
currentExtraFields.push({ id: field.id, value: "" })
}
}
else {
2021-01-31 02:43:13 +13:00
currentExtraFields.push({ id: field.id, value: "" })
}
}
}
2021-01-31 02:43:13 +13:00
return currentExtraFields
}
/**
* Creates a new document object
* @return The created object
*/
createNewDocumentObject () : I_OpenedDocument {
this.editMode = true
const uniqueID = this.$route.params.id
return {
_id: uniqueID,
type: this.bluePrintData._id,
icon: this.bluePrintData.icon,
editMode: true,
isNew: true,
hasEdits: false,
url: `/project/display-content/${this.bluePrintData._id}/${uniqueID}`,
extraFields: []
}
}
2021-02-21 01:06:21 +13:00
fieldLimiter (currentFieldID: string) {
const isCategory = this.retrieveFieldValue(this.currentData, "categorySwitch")
const ignoredList = ["breakBasic", "name", "documentColor", "parentDoc", "order", "categorySwitch"]
return (!isCategory || ignoredList.includes(currentFieldID))
}
2021-01-31 02:43:13 +13:00
}
</script>
<style lang="scss" scoped>
.inputWrapper {
min-height: 105px;
display: flex;
flex-direction: column;
2021-02-09 15:21:48 +13:00
justify-content: flex-start;
height: 100%;
&.break {
min-height: inherit;
}
}
</style>
<style lang="scss">
.separatorWrapper {
margin-top: auto;
}
.q-field {
max-width: 100%;
2021-01-31 02:43:13 +13:00
}
</style>