-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathtext.js
42 lines (34 loc) · 1.02 KB
/
text.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
var EventEmitter = require('events').EventEmitter
var inherits = require('inherits')
var css = require('dom-css')
module.exports = Text
inherits(Text, EventEmitter)
function Text (root, opts, theme, uuid) {
if (!(this instanceof Text)) return new Text(root, opts, theme, uuid)
var self = this
var container = require('./container')(root, opts.label)
require('./label')(container, opts.label, theme)
var input = container.appendChild(document.createElement('input'))
input.type = 'text'
input.className = 'control-panel-text-' + uuid
if (opts.initial) input.value = opts.initial
input.onfocus = function () {
css(input, {outline: 'none'})
}
css(input, {
position: 'absolute',
paddingLeft: '6px',
height: '20px',
width: '59.5%',
border: 'none',
background: theme.background2,
color: theme.text2,
fontFamily: 'inherit'
})
setTimeout(function () {
self.emit('initialized', input.value)
})
input.oninput = function (data) {
self.emit('input', data.target.value)
}
}