-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcheckbox.js
32 lines (25 loc) · 984 Bytes
/
checkbox.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
var EventEmitter = require('events').EventEmitter
var inherits = require('inherits')
module.exports = Checkbox
inherits(Checkbox, EventEmitter)
function Checkbox (root, opts, theme, uuid) {
if (!(this instanceof Checkbox)) return new Checkbox(root, opts, theme, uuid)
opts = opts || {}
var self = this
var container = require('./container')(root, opts.label)
require('./label')(container, opts.label, theme)
var input = container.appendChild(document.createElement('input'))
input.id = 'checkbox-' + opts.label + uuid
input.type = 'checkbox'
input.checked = opts.initial
input.className = 'control-panel-checkbox-' + uuid
var label = container.appendChild(document.createElement('label'))
label.htmlFor = 'checkbox-' + opts.label + uuid
label.className = 'control-panel-checkbox-' + uuid
setTimeout(function () {
self.emit('initialized', input.checked)
})
input.onchange = function (data) {
self.emit('input', data.target.checked)
}
}