| Current Path : /var/www/surf/TYPO3/vendor/mask/mask/Build/Sources/js/components/ |
| Current File : /var/www/surf/TYPO3/vendor/mask/mask/Build/Sources/js/components/colorpicker.js |
import Vue from 'vue';
import ColorPicker from '@typo3/backend/color-picker.js';
import $ from 'jquery';
export default Vue.component(
'colorpicker',
{
props: {
global: Object,
tcaKey: String,
},
mounted: function () {
ColorPicker.initialize();
$(this.$refs['colorpicker']).minicolors('settings', {
changeDelay: 200,
change: function () {
this.global.activeField.tca[this.tcaKey] = $(this.$refs['colorpicker']).data('minicolorsLastChange')['value'];
}.bind(this)
});
},
methods: {
value: function () { return this.global.activeField.tca[this.tcaKey]; },
},
template: `
<div class="form-control-wrap">
<input
class="form-control t3js-color-picker"
:value="value()"
ref="colorpicker"
/>
<input type="hidden"/>
</div>
`
}
);