style documents preview

This commit is contained in:
Alex Turchyn
2023-05-31 00:50:43 +03:00
parent faf6f69e3e
commit 98fc9d964a
11 changed files with 404 additions and 83 deletions
+153 -56
View File
@@ -1,68 +1,101 @@
<template>
<div
class="flex"
style="max-height: calc(100vh - 24px)"
style="max-width: 1600px"
class="mx-auto px-4"
>
<div
class="overflow-auto w-full"
style="max-width: 280px"
>
Show documents preview (not pages but documents)
Allow to edit name
Allow to reorder
{{ flow.schema }}
<Upload
:flow-id="flow.id"
@success="updateFromUpload"
/>
<button
class="bg-green-300"
@click="save"
>
Save changes
</button>
<a
:href="`/flows/${flow.id}/submissions`"
>
Add Recepients
</a>
</div>
<div class="w-full overflow-auto">
<Document
v-for="document in sortedDocuments"
:key="document.uuid"
:areas-index="fieldAreasIndex[document.uuid]"
:document="document"
:is-draw="!!drawField"
:is-drag="!!dragFieldType"
@draw="onDraw"
@drop-field="onDropfield"
<div class="flex justify-between py-1.5 items-center">
<Contenteditable
:model-value="flow.name"
class="text-3xl focus:text-clip"
@update:model-value="updateName"
/>
<div class="space-x-3 flex items-center">
<a
:href="`/flows/${flow.id}/submissions`"
class="btn btn-primary"
>
<IconUsersPlus
width="20"
class="mr-2 inline"
/>
Recipients
</a>
<a
:href="`/`"
class="base-button"
v-bind="isSaving ? { disabled: true } : {}"
@click.prevent="onSaveClick"
><IconDeviceFloppy
width="20"
class="mr-2"
/>Save</a>
</div>
</div>
<div
class="w-full relative"
:class="drawField ? 'overflow-hidden' : 'overflow-auto'"
style="max-width: 280px"
class="flex"
style="max-height: calc(100vh - 60px)"
>
<div
v-if="drawField"
class="sticky inset-0 bg-white h-full"
ref="previews"
class="overflow-auto w-52 flex-none pr-4 mt-0.5 pt-0.5"
>
Draw {{ drawField.name }} field on the page
<button @click="drawField = false">
Cancel
</button>
</div>
<div>
FIelds
<Fields
ref="fields"
v-model:fields="flow.fields"
@set-draw="drawField = $event"
@set-drag="dragFieldType = $event"
@drag-end="dragFieldType = null"
<DocumentPreview
v-for="(item, index) in flow.schema"
:key="index"
:with-arrows="flow.schema.length > 1"
:item="item"
:document="sortedDocuments[index]"
@scroll-to="scrollIntoDocument(item)"
@remove="onDocumentRemove"
@up="moveDocument(item, -1)"
@down="moveDocument(item, 1)"
@change="save"
/>
<div class="sticky bottom-0 bg-base-100 py-2">
<Upload
:flow-id="flow.id"
@success="updateFromUpload"
/>
</div>
</div>
<div class="w-full overflow-y-auto overflow-x-hidden mt-0.5 pt-0.5">
<div class="px-3">
<Document
v-for="document in sortedDocuments"
:key="document.uuid"
:ref="setDocumentRefs"
:areas-index="fieldAreasIndex[document.uuid]"
:document="document"
:is-draw="!!drawField"
:is-drag="!!dragFieldType"
@draw="onDraw"
@drop-field="onDropfield"
/>
</div>
</div>
<div
class="relative w-72 flex-none"
:class="drawField ? 'overflow-hidden' : 'overflow-auto'"
>
<div
v-if="drawField"
class="sticky inset-0 bg-white h-full"
>
Draw {{ drawField.name }} field on the page
<button @click="drawField = false">
Cancel
</button>
</div>
<div>
FIelds
<Fields
ref="fields"
v-model:fields="flow.fields"
@set-draw="drawField = $event"
@set-drag="dragFieldType = $event"
@drag-end="dragFieldType = null"
/>
</div>
</div>
</div>
</div>
@@ -72,13 +105,20 @@
import Upload from './upload'
import Fields from './fields'
import Document from './document'
import Contenteditable from './contenteditable'
import DocumentPreview from './preview'
import { IconUsersPlus, IconDeviceFloppy } from '@tabler/icons-vue'
export default {
name: 'FlowBuilder',
components: {
Upload,
Document,
Fields
Fields,
DocumentPreview,
Contenteditable,
IconUsersPlus,
IconDeviceFloppy
},
props: {
flow: {
@@ -88,6 +128,8 @@ export default {
},
data () {
return {
documentRefs: [],
isSaving: false,
drawField: null,
dragFieldType: null
}
@@ -120,7 +162,20 @@ export default {
unmounted () {
document.removeEventListener('keyup', this.disableDrawOnEsc)
},
beforeUpdate () {
this.documentRefs = []
},
methods: {
setDocumentRefs (el) {
if (el) {
this.documentRefs.push(el)
}
},
scrollIntoDocument (item) {
const ref = this.documentRefs.find((e) => e.document.uuid === item.attachment_uuid)
ref.$el.scrollIntoView({ behavior: 'smooth', block: 'start' })
},
disableDrawOnEsc (e) {
if (e.code === 'Escape') {
this.drawField = null
@@ -139,8 +194,50 @@ export default {
this.flow.schema.push(...schema)
this.flow.documents.push(...documents)
this.$nextTick(() => {
this.$refs.previews.scrollTop = this.$refs.previews.scrollHeight
this.scrollIntoDocument(schema[0])
})
this.save()
},
updateName (value) {
this.flow.name = value
this.save()
},
onDocumentRemove (item) {
if (window.confirm('Are you sure?')) {
this.flow.schema.splice(this.flow.schema.indexOf(item), 1)
}
this.save()
},
moveDocument (item, direction) {
const currentIndex = this.flow.schema.indexOf(item)
this.flow.schema.splice(currentIndex, 1)
if (currentIndex + direction > this.flow.schema.length) {
this.flow.schema.unshift(item)
} else if (currentIndex + direction < 0) {
this.flow.schema.push(item)
} else {
this.flow.schema.splice(currentIndex + direction, 0, item)
}
this.save()
},
onSaveClick () {
this.isSaving = true
this.save().then(() => {
window.Turbo.visit('/')
}).finally(() => {
this.isSaving = false
})
},
save () {
return fetch(`/api/flows/${this.flow.id}`, {
method: 'PUT',