Files
pointvec/desktop/sources/scripts/picker.js

93 lines
2.1 KiB
JavaScript
Raw Normal View History

2018-10-04 11:27:40 +12:00
'use strict'
2018-08-28 16:34:17 +12:00
2019-11-10 10:48:31 -05:00
function Picker (client) {
2018-10-04 11:27:40 +12:00
this.memory = ''
this.el = document.createElement('div')
this.el.id = 'picker'
2019-01-12 16:22:38 +12:00
this.isActive = false
2018-10-04 11:27:40 +12:00
this.input = document.createElement('input')
this.input.id = 'picker_input'
2018-03-07 13:50:41 +13:00
2018-09-12 15:27:01 +12:00
this.el.appendChild(this.input)
2018-10-04 11:27:40 +12:00
this.start = function () {
2019-01-12 16:22:38 +12:00
if (this.isActive) { return }
2018-09-17 13:48:39 +12:00
2019-01-12 16:22:38 +12:00
this.isActive = true
2018-09-17 13:48:39 +12:00
2019-11-10 10:48:31 -05:00
this.input.setAttribute('placeholder', `${client.tool.style().color.replace('#', '').trim()}`)
2018-10-04 11:27:40 +12:00
this.input.setAttribute('maxlength', 6)
2018-05-07 11:15:23 +12:00
2019-11-03 13:36:58 -05:00
this.input.addEventListener('keydown', this.onKeyDown, false)
this.input.addEventListener('keyup', this.onKeyUp, false)
2019-11-10 10:48:31 -05:00
client.interface.el.className = 'picker'
2018-09-12 15:27:01 +12:00
this.input.focus()
2018-10-04 11:27:40 +12:00
this.input.value = ''
2018-08-18 08:04:54 +12:00
2019-11-10 10:48:31 -05:00
try { client.controller.set('picker') } catch (err) { }
2018-03-07 13:50:41 +13:00
}
2018-10-04 11:27:40 +12:00
this.update = function () {
2019-01-12 16:22:38 +12:00
if (!this.isActive) { return }
2019-11-03 13:36:58 -05:00
if (!isColor(this.input.value)) { return }
2018-09-12 15:27:01 +12:00
2018-10-04 11:27:40 +12:00
const hex = `#${this.input.value}`
2018-03-21 20:10:09 +13:00
2018-10-04 11:27:40 +12:00
document.getElementById('option_color').children[0].style.fill = hex
document.getElementById('option_color').children[0].style.stroke = hex
2018-09-17 13:48:39 +12:00
}
2018-05-07 11:05:25 +12:00
2018-10-04 11:27:40 +12:00
this.stop = function () {
2019-01-12 16:22:38 +12:00
if (!this.isActive) { return }
2018-08-18 08:04:54 +12:00
2019-01-12 16:22:38 +12:00
this.isActive = false
2018-10-04 11:27:40 +12:00
2019-11-10 10:48:31 -05:00
client.interface.el.className = ''
2018-09-12 15:27:01 +12:00
this.input.blur()
2018-10-04 11:27:40 +12:00
this.input.value = ''
2018-07-26 20:40:06 +12:00
2019-11-10 10:48:31 -05:00
try { client.controller.set() } catch (err) { console.log('No controller') }
2018-05-07 11:05:25 +12:00
2019-11-10 10:48:31 -05:00
setTimeout(() => { client.interface.update(true); client.renderer.update() }, 250)
2018-03-07 13:50:41 +13:00
}
2018-10-04 11:27:40 +12:00
this.validate = function () {
2019-11-03 13:36:58 -05:00
if (!isColor(this.input.value)) { return }
2018-03-07 13:50:41 +13:00
2018-10-04 11:27:40 +12:00
const hex = `#${this.input.value}`
2018-09-12 15:27:01 +12:00
2019-11-10 10:48:31 -05:00
client.tool.style().color = hex
client.tool.style().fill = client.tool.style().fill !== 'none' ? hex : 'none'
2018-09-17 13:48:39 +12:00
2018-10-04 11:27:40 +12:00
this.stop()
2018-03-07 13:50:41 +13:00
}
2019-11-03 13:36:58 -05:00
function isColor (val) {
if (val.length !== 3 && val.length !== 6) {
return false
2018-09-14 15:03:12 +12:00
}
2019-11-03 13:36:58 -05:00
const re = /[0-9A-Fa-f]/g
return re.test(val)
}
this.onKeyDown = (e) => {
2019-11-03 20:44:31 -05:00
e.stopPropagation()
2019-04-22 08:36:12 +09:00
if (e.key === 'Enter') {
2018-10-04 11:27:40 +12:00
this.validate()
e.preventDefault()
return
2018-03-07 13:50:41 +13:00
}
2019-04-22 08:36:12 +09:00
if (e.key === 'Escape') {
2018-10-04 11:27:40 +12:00
this.stop()
e.preventDefault()
2018-08-29 09:41:41 +12:00
}
2018-03-21 20:10:09 +13:00
}
2019-11-03 13:36:58 -05:00
this.onKeyUp = (e) => {
e.stopPropagation()
this.update()
2018-09-14 15:03:12 +12:00
}
2018-10-04 11:27:40 +12:00
}