copy and paste fields
This commit is contained in:
@@ -527,7 +527,15 @@ export default {
|
|||||||
this.save()
|
this.save()
|
||||||
},
|
},
|
||||||
onPaste (e) {
|
onPaste (e) {
|
||||||
e.target.innerText = (e.clipboardData || window.clipboardData).getData('text/plain')
|
const text = (e.clipboardData || window.clipboardData).getData('text/plain')
|
||||||
|
|
||||||
|
const selection = window.getSelection()
|
||||||
|
|
||||||
|
if (selection.rangeCount) {
|
||||||
|
selection.deleteFromDocument()
|
||||||
|
selection.getRangeAt(0).insertNode(document.createTextNode(text))
|
||||||
|
selection.collapseToEnd()
|
||||||
|
}
|
||||||
},
|
},
|
||||||
onResizeCell (e) {
|
onResizeCell (e) {
|
||||||
if (e.target.id === 'mask') {
|
if (e.target.id === 'mask') {
|
||||||
|
|||||||
@@ -513,6 +513,7 @@ export default {
|
|||||||
selectedSubmitter: null,
|
selectedSubmitter: null,
|
||||||
showDrawField: false,
|
showDrawField: false,
|
||||||
drawField: null,
|
drawField: null,
|
||||||
|
copiedArea: null,
|
||||||
drawFieldType: null,
|
drawFieldType: null,
|
||||||
drawOption: null,
|
drawOption: null,
|
||||||
dragField: null
|
dragField: null
|
||||||
@@ -747,6 +748,14 @@ export default {
|
|||||||
event.preventDefault()
|
event.preventDefault()
|
||||||
|
|
||||||
this.undo()
|
this.undo()
|
||||||
|
} else if ((event.ctrlKey || event.metaKey) && event.key === 'c' && document.activeElement === document.body) {
|
||||||
|
event.preventDefault()
|
||||||
|
|
||||||
|
this.copiedArea = this.selectedAreaRef?.value
|
||||||
|
} else if ((event.ctrlKey || event.metaKey) && event.key === 'v' && this.copiedArea && document.activeElement === document.body) {
|
||||||
|
event.preventDefault()
|
||||||
|
|
||||||
|
this.pasteField()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
removeArea (area) {
|
removeArea (area) {
|
||||||
@@ -760,6 +769,39 @@ export default {
|
|||||||
|
|
||||||
this.save()
|
this.save()
|
||||||
},
|
},
|
||||||
|
pasteField () {
|
||||||
|
const field = this.template.fields.find((f) => f.areas?.includes(this.copiedArea))
|
||||||
|
const currentArea = this.selectedAreaRef?.value || this.copiedArea
|
||||||
|
|
||||||
|
if (field && currentArea) {
|
||||||
|
const area = {
|
||||||
|
...JSON.parse(JSON.stringify(this.copiedArea)),
|
||||||
|
attachment_uuid: currentArea.attachment_uuid,
|
||||||
|
page: currentArea.page,
|
||||||
|
x: currentArea.x,
|
||||||
|
y: currentArea.y + currentArea.h * 1.3
|
||||||
|
}
|
||||||
|
|
||||||
|
if (['radio', 'multiple'].includes(field.type)) {
|
||||||
|
this.copiedArea.option_uuid ||= field.options[0].uuid
|
||||||
|
area.option_uuid = v4()
|
||||||
|
|
||||||
|
field.options.push({ uuid: area.option_uuid })
|
||||||
|
|
||||||
|
field.areas.push(area)
|
||||||
|
} else {
|
||||||
|
this.template.fields.push({
|
||||||
|
...JSON.parse(JSON.stringify(field)),
|
||||||
|
uuid: v4(),
|
||||||
|
areas: [area]
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
this.selectedAreaRef.value = area
|
||||||
|
|
||||||
|
this.save()
|
||||||
|
}
|
||||||
|
},
|
||||||
pushUndo () {
|
pushUndo () {
|
||||||
const stringData = JSON.stringify(this.template)
|
const stringData = JSON.stringify(this.template)
|
||||||
|
|
||||||
@@ -990,6 +1032,8 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.save()
|
this.save()
|
||||||
|
|
||||||
|
document.activeElement?.blur()
|
||||||
},
|
},
|
||||||
updateFromUpload (data) {
|
updateFromUpload (data) {
|
||||||
this.template.schema.push(...data.schema)
|
this.template.schema.push(...data.schema)
|
||||||
|
|||||||
@@ -99,7 +99,15 @@ export default {
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
onPaste (e) {
|
onPaste (e) {
|
||||||
e.target.innerText = (e.clipboardData || window.clipboardData).getData('text/plain')
|
const text = (e.clipboardData || window.clipboardData).getData('text/plain')
|
||||||
|
|
||||||
|
const selection = window.getSelection()
|
||||||
|
|
||||||
|
if (selection.rangeCount) {
|
||||||
|
selection.deleteFromDocument()
|
||||||
|
selection.getRangeAt(0).insertNode(document.createTextNode(text))
|
||||||
|
selection.collapseToEnd()
|
||||||
|
}
|
||||||
},
|
},
|
||||||
selectContent () {
|
selectContent () {
|
||||||
const el = this.$refs.contenteditable
|
const el = this.$refs.contenteditable
|
||||||
|
|||||||
Reference in New Issue
Block a user