This repository has been archived by the owner on Oct 30, 2018. It is now read-only.
forked from jfresco/toggle-parent
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
71 lines (51 loc) · 1.46 KB
/
index.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/**
* Module dependencies.
*/
var o = require('dom')
/**
* Expose `ToggleParent`.
*/
module.exports = ToggleParent
function ToggleParent(btn, opts) {
if (!(this instanceof ToggleParent)) return new ToggleParent(btn, opts)
this.btn = o(btn)
this.options = opts || {}
if (!this.options.parent) this.options.parent = btn.parentNode
if (!this.options.toggleClass) this.options.toggleClass = 'active'
this.parent = o(this.options.parent)
this.show = this.show.bind(this)
this.hide = this.hide.bind(this)
this.toggle = this.toggle.bind(this)
this.init()
}
ToggleParent.prototype.backdrop = null
ToggleParent.prototype.showing = false
ToggleParent.prototype.init = function init(){
this.btn.on('click', this.toggle)
}
ToggleParent.prototype.destroy = function destroy(){
this.btn.off('click', this.toggle)
this.hide()
}
ToggleParent.prototype.show = function show(){
if (this.showing) return
this.backdrop = o('<div class="toggle-parent-backdrop"></div>')
.insertAfter(this.parent)
.on('click', this.hide)
this.parent.addClass(this.options.toggleClass)
this.showing = true
return this
}
ToggleParent.prototype.hide = function hide(){
if (!this.showing) return
this.backdrop
.off('click', this.hide)
.remove()
this.backdrop = null
this.parent.removeClass(this.options.toggleClass)
this.showing = false
return this
}
ToggleParent.prototype.toggle = function toggle(){
return this.showing ? this.hide() : this.show()
}