This repository has been archived by the owner on Apr 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.js
136 lines (113 loc) · 2.25 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
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
/**
* dependencies
*/
var classes = require('classes')
, events = require('events')
, raf = require('raf')
/**
* Export `Placeholder`
*/
module.exports = Placeholder;
/**
* Initialize a new `Placeholder`.
*
* @param {Element} el
* @param {String} str
*/
function Placeholder(el, str){
if (!(this instanceof Placeholder)) return new Placeholder(el, str);
this.classes = classes(el);
this.events = events(el, this);
this.el = el;
this.str = str;
this.bind();
this.place();
}
/**
* Place the placeholder.
*
* @return {Placeholder}
*/
Placeholder.prototype.place = function(){
if (this.contents()) return;
this.classes.add('editable-placeholder');
this.el.textContent = this.str;
return this;
};
/**
* Unplace placeholder.
*
* @return {Placeholder}
*/
Placeholder.prototype.unplace = function(){
this.classes.remove('editable-placeholder');
this.el.textContent = '';
return this;
};
/**
* Check if the placeholder is placed.
*
* @return {Placeholder}
*/
Placeholder.prototype.placed = function(){
return this.classes.has('editable-placeholder')
&& this.str == this.contents();
};
/**
* Bind internal events.
*
* @return {Placeholder}
*/
Placeholder.prototype.bind = function(){
this.events.bind('keyup', 'onkeydown');
this.events.bind('paste', 'onkeydown');
this.events.bind('mousedown');
this.events.bind('keydown');
return this;
};
/**
* Unbind internal events.
*
* @return {Placeholder}
*/
Placeholder.prototype.unbind = function(){
this.events.unbind();
return this;
};
/**
* Get inner contents.
*
* @return {String}
*/
Placeholder.prototype.contents = function(){
return this.el.textContent;
};
/**
* on-mousedown
*/
Placeholder.prototype.onmousedown = function(e){
if (!this.placed()) return;
var sel = window.getSelection();
var range = document.createRange();
range.setStart(this.el, 0);
range.collapse(true);
sel.removeAllRanges();
sel.addRange(range);
e.preventDefault();
this.el.focus();
};
/**
* on-keyup
*/
Placeholder.prototype.onkeydown = function(e){
var self = this;
var id;
// unplace
if (this.placed()) this.unplace();
// placeholder
id = raf(function(){
raf.cancel(id);
if ('' != self.contents()) return;
self.place();
});
};