12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- import beautifier from '@utils/json-beautifier'
- export default {
- data() {
- return {
- historySteps: {
- index: 0,
- maxStep: 20,
- steps: [],
- storage: false
- }
- }
- },
- watch: {
- historySteps: {
- handler(val) {
- if (val.storage) localStorage.setItem("avue-form-history", beautifier(val))
- else localStorage.removeItem("avue-form-history")
- },
- deep: true
- }
- },
- methods: {
- initHistory(data) {
- if (data.storage) {
- const history = localStorage.getItem("avue-form-history")
- if (history) {
- this.historySteps = eval("(" + history + ")")
- const { index, steps } = this.historySteps
- return this.deepClone(steps[index])
- }
- }
- this.historySteps = {
- ...this.historySteps,
- ...data
- }
- const { index, steps } = this.historySteps
- return this.deepClone(steps[index])
- },
- handleHistoryChange(data) {
- if (this.historySteps.index == this.historySteps.maxStep - 1) this.historySteps.steps.shift()
- else this.historySteps.index++
- this.historySteps.steps[this.historySteps.index] = this.deepClone(data)
- if (this.historySteps.index < this.historySteps.steps.length - 1) {
- this.historySteps.steps = this.historySteps.steps.slice(0, this.historySteps.index + 1)
- }
- },
- handleUndo() {
- if (this.historySteps.index != 0) this.historySteps.index--
- return this.deepClone(this.historySteps.steps[this.historySteps.index])
- },
- handleRedo() {
- if (this.historySteps.index != (this.historySteps.steps.length - 1)) this.historySteps.index++
- return this.deepClone(this.historySteps.steps[this.historySteps.index])
- }
- }
- }
|