2018-11-19 01:40:25 +00:00
|
|
|
import ColorInput from '../color_input/color_input.vue'
|
|
|
|
import OpacityInput from '../opacity_input/opacity_input.vue'
|
2018-11-19 17:22:46 +00:00
|
|
|
import { getCssShadow } from '../../services/style_setter/style_setter.js'
|
2018-11-19 01:40:25 +00:00
|
|
|
import { hex2rgb } from '../../services/color_convert/color_convert.js'
|
|
|
|
|
|
|
|
export default {
|
2018-11-22 00:55:45 +00:00
|
|
|
// 'Value' and 'Fallback' can be undefined, but if they are
|
|
|
|
// initially vue won't detect it when they become something else
|
|
|
|
// therefore i'm using "ready" which should be passed as true when
|
|
|
|
// data becomes available
|
2018-11-19 01:40:25 +00:00
|
|
|
props: [
|
2018-11-22 00:55:45 +00:00
|
|
|
'value', 'fallback', 'ready'
|
2018-11-19 01:40:25 +00:00
|
|
|
],
|
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
selectedId: 0,
|
2018-11-22 00:55:45 +00:00
|
|
|
cValue: this.value || this.fallback || []
|
2018-11-19 01:40:25 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
components: {
|
|
|
|
ColorInput,
|
|
|
|
OpacityInput
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
add () {
|
|
|
|
this.cValue.push(Object.assign({}, this.selected))
|
|
|
|
this.selectedId = this.cValue.length - 1
|
|
|
|
},
|
|
|
|
del () {
|
|
|
|
this.cValue.splice(this.selectedId, 1)
|
|
|
|
this.selectedId = this.cValue.length === 0 ? undefined : this.selectedId - 1
|
|
|
|
},
|
|
|
|
moveUp () {
|
|
|
|
const movable = this.cValue.splice(this.selectedId, 1)[0]
|
|
|
|
this.cValue.splice(this.selectedId - 1, 0, movable)
|
|
|
|
this.selectedId -= 1
|
|
|
|
},
|
|
|
|
moveDn () {
|
|
|
|
const movable = this.cValue.splice(this.selectedId, 1)[0]
|
|
|
|
this.cValue.splice(this.selectedId + 1, 0, movable)
|
|
|
|
this.selectedId += 1
|
|
|
|
}
|
|
|
|
},
|
2018-11-20 20:25:38 +00:00
|
|
|
beforeUpdate () {
|
|
|
|
this.cValue = this.value || this.fallback
|
|
|
|
},
|
2018-11-19 01:40:25 +00:00
|
|
|
computed: {
|
|
|
|
selected () {
|
2018-11-22 00:55:45 +00:00
|
|
|
if (this.ready && this.cValue.length > 0) {
|
|
|
|
return this.cValue[this.selectedId]
|
|
|
|
} else {
|
|
|
|
return {
|
|
|
|
x: 0,
|
|
|
|
y: 0,
|
|
|
|
blur: 0,
|
|
|
|
spread: 0,
|
|
|
|
inset: false,
|
|
|
|
color: '#000000',
|
|
|
|
alpha: 1
|
|
|
|
}
|
2018-11-19 01:40:25 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
moveUpValid () {
|
2018-11-22 00:55:45 +00:00
|
|
|
return this.ready && this.selectedId > 0
|
2018-11-19 01:40:25 +00:00
|
|
|
},
|
|
|
|
moveDnValid () {
|
2018-11-22 00:55:45 +00:00
|
|
|
return this.ready && this.selectedId < this.cValue.length - 1
|
2018-11-19 01:40:25 +00:00
|
|
|
},
|
|
|
|
present () {
|
2018-11-22 00:55:45 +00:00
|
|
|
return this.ready &&
|
2018-11-20 20:25:38 +00:00
|
|
|
typeof this.cValue[this.selectedId] !== 'undefined' &&
|
2018-11-19 01:40:25 +00:00
|
|
|
!this.usingFallback
|
|
|
|
},
|
|
|
|
usingFallback () {
|
|
|
|
return typeof this.value === 'undefined'
|
|
|
|
},
|
|
|
|
rgb () {
|
|
|
|
return hex2rgb(this.selected.color)
|
|
|
|
},
|
|
|
|
style () {
|
2018-11-22 00:55:45 +00:00
|
|
|
return this.ready ? {
|
2018-11-19 17:22:46 +00:00
|
|
|
boxShadow: getCssShadow(this.cValue)
|
2018-11-20 20:25:38 +00:00
|
|
|
} : {}
|
2018-11-19 01:40:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|