-
Notifications
You must be signed in to change notification settings - Fork 0
/
inlineedit.js
119 lines (103 loc) · 2.53 KB
/
inlineedit.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
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
'use strict';
var m = require('mithril');
var util = require('./util');
var extend = util.extend;
var setFocus = util.setFocus;
var noop = util.noop;
var addClass = util.addClass;
function inlineEdit(value, options) {
options = extend({
onSave: noop,
onChange: noop,
onCancel: noop,
onStartEdit: noop,
onNothingDone: noop
}, options);
// catch m.prop
if (typeof value === 'function') {
options.onChange = value;
value = value();
}
var scope = {
isEditing: false,
value: value,
previousValue: value
};
scope.startEdit = function() {
scope.previousValue = scope.value;
scope.isEditing = true;
options.onStartEdit(scope.value);
};
scope.save = function() {
scope.isEditing = false;
if (scope.previousValue === scope.value) {
options.onNothingDone(scope.value);
return;
}
scope.previousValue = scope.value;
options.onSave(scope.value);
};
scope.cancel = function() {
m.startComputation();
scope.value = scope.previousValue;
scope.isEditing = false;
options.onCancel(scope.value);
m.endComputation();
};
scope.setValue = function(event) {
scope.value = event.target.value;
options.onChange(scope.value);
};
function onKeyPress(event) {
if (event.keyCode === 27) { // esc
scope.cancel();
return false;
}
if (event.keyCode === 13) { // enter
scope.save();
return false;
}
}
var view = function(els) {
if (scope.isEditing) {
els = extend({
input: m('input'),
save: m('button', 'save'),
cancel: m('button', 'cancel')
}, els);
els.input.attrs.oninput = scope.setValue;
els.input.attrs.value = scope.value;
els.input.attrs.config = setFocus;
els.input.attrs.onkeyup = onKeyPress;
els.save.attrs.onclick = scope.save;
els.cancel.attrs.onclick = scope.cancel;
return [
m('.inlineEdit.overlay', {
onclick: scope.save
}),
m('.inlineEdit', [
els.input,
els.save,
els.cancel
])
];
}
els.show = els.show || m('div');
els.edit = els.edit || m('button', 'edit');
els.show.attrs.onclick = els.edit.attrs.onclick = scope.startEdit;
els.show.children = [
scope.value,
els.edit
];
addClass(els.show, 'inlineEdit show');
return [
els.show,
];
};
view.__defineSetter__('value', function(value) {
scope.value = value;
});
view.onunload = noop;
return view;
}
module.exports = inlineEdit;