forked from zombieFox/nightTab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodal.js
More file actions
203 lines (187 loc) · 5.58 KB
/
Copy pathmodal.js
File metadata and controls
203 lines (187 loc) · 5.58 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
var modal = (function() {
var _previousModal = null;
var _maxHeadingLength = 50;
var mod = {};
mod.open = function() {
helper.setObject({
object: state.get.current(),
path: "modal",
newValue: true
});
};
mod.close = function() {
helper.setObject({
object: state.get.current(),
path: "modal",
newValue: false
});
};
var bind = {};
bind.focus = {
loop: function(event) {
var allElements = helper.e(".modal").querySelectorAll("[tabindex]");
var firstElement = allElements[0];
var lastElement = allElements[allElements.length - 1];
if (event.keyCode == 9 && event.shiftKey) {
if (document.activeElement === firstElement) {
lastElement.focus();
event.preventDefault();
}
} else if (event.keyCode == 9) {
if (document.activeElement === lastElement) {
firstElement.focus();
event.preventDefault();
}
};
},
add: function() {
window.addEventListener("keydown", bind.focus.loop, false);
},
remove: function() {
window.removeEventListener("keydown", bind.focus.loop, false);
}
};
var render = {};
render.toggle = function(override) {
if (state.get.current().modal) {
render.open(override);
} else {
render.close();
};
};
render.close = function() {
var allModal = helper.eA(".modal");
if (allModal[0]) {
for (var i = 0; i < allModal.length; i++) {
allModal[i].close();
};
};
_previousModal = null;
};
render.open = function(override) {
var options = {
heading: "Modal",
content: "Body",
successAction: null,
cancelAction: null,
actionText: "OK",
cancelText: "Cancel",
size: "medium"
};
if (override) {
options = helper.applyOptions(options, override);
};
var _makeModal = function() {
var body = helper.e("body");
var modal = helper.node("div");
var modalWrapper = helper.node("div|class:modal-wrapper");
if (options.size == "large") {
modal.setAttribute("class", "modal modal-large");
} else if (options.size == "small") {
modal.setAttribute("class", "modal modal-small");
} else {
modal.setAttribute("class", "modal");
};
modal.close = function() {
if (modal.classList.contains("is-opaque")) {
helper.removeClass(modal, "is-opaque");
helper.addClass(modal, "is-transparent");
} else {
modal.remove();
};
bind.focus.remove();
};
var modalBody = helper.node("div|class:modal-body");
var modalBodySpacer = helper.node("div|class:modal-body-spacer");
var modalControls = helper.node("div|class:modal-controls form-group");
var actionButton = helper.node("button:" + options.actionText + "|class:button button-line button-block modal-button,tabindex:1");
var cancelButton = helper.node("button:" + options.cancelText + "|class:button button-line button-block modal-button,tabindex:1");
modalControls.appendChild(cancelButton);
modalControls.appendChild(actionButton);
if (options.heading != null) {
if (options.heading.length > _maxHeadingLength) {
options.heading = options.heading.substring(0, _maxHeadingLength).replace(/\s+$/, "") + "...";
};
var modalHeading = helper.makeNode({
tag: "h1",
text: options.heading,
attr: [{
key: "class",
value: "modal-heading"
}, {
key: "tabindex",
value: 1
}]
});
modalBodySpacer.appendChild(modalHeading);
};
if (options.content) {
if (typeof options.content == "string") {
var container = helper.node("div|class:container");
var para = helper.makeNode({
tag: "p",
text: options.content
});
container.appendChild(para);
modalBodySpacer.appendChild(container);
} else {
modalBodySpacer.appendChild(options.content);
};
};
modalBody.appendChild(modalBodySpacer);
modalWrapper.appendChild(modalBody);
modalWrapper.appendChild(modalControls);
modal.appendChild(modalWrapper);
modal.addEventListener("transitionend", function(event, elapsed) {
if (event.propertyName === "opacity" && getComputedStyle(this).opacity == 0) {
this.parentElement.removeChild(this);
};
}.bind(modal), false);
actionButton.addEventListener("click", function(event) {
if (options.successAction) {
options.successAction();
};
this.close();
}.bind(modal), false);
cancelButton.addEventListener("click", function(event) {
if (options.cancelAction) {
options.cancelAction();
};
close();
}.bind(modal), false);
_previousModal = modal;
body.appendChild(modal);
getComputedStyle(modal).opacity;
helper.removeClass(modal, "is-transparent");
helper.addClass(modal, "is-opaque");
modalHeading.focus(this);
};
if (_previousModal != null) {
render.close();
};
_makeModal();
};
var open = function(override) {
mod.open();
render.open(override);
bind.focus.add();
};
var close = function() {
mod.close();
render.close();
bind.focus.remove();
};
var init = function() {
mod.close();
render.close();
};
// exposed methods
return {
init: init,
mod: mod,
bind: bind,
render: render,
open: open,
close: close
};
})();