-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtag-input.js
325 lines (283 loc) · 12.1 KB
/
tag-input.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
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = undefined;
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
var _react = require("react");
var _react2 = _interopRequireDefault(_react);
var _propTypes = require("prop-types");
var _propTypes2 = _interopRequireDefault(_propTypes);
var _classnames = require("classnames");
var _classnames2 = _interopRequireDefault(_classnames);
var _autocomplete = require("./autocomplete");
var _autocomplete2 = _interopRequireDefault(_autocomplete);
var _textInput = require("./text-input");
var _textInput2 = _interopRequireDefault(_textInput);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
var TagInput = function (_React$Component) {
_inherits(TagInput, _React$Component);
function TagInput(props) {
_classCallCheck(this, TagInput);
var _this = _possibleConstructorReturn(this, (TagInput.__proto__ || Object.getPrototypeOf(TagInput)).call(this, props));
_this.state = {
tagName: !!_this.props.inputValue ? _this.props.inputValue : "",
autocompleteItems: [],
tags: _this.props.tags ? _this.props.tags : []
};
_this.addTag = _this.addTag.bind(_this);
_this.handelTag = _this.handelTag.bind(_this);
_this.handleAutocomplete = _this.handleAutocomplete.bind(_this);
_this.onSelect = _this.onSelect.bind(_this);
_this.onDelete = _this.onDelete.bind(_this);
return _this;
}
_createClass(TagInput, [{
key: "componentDidMount",
value: function componentDidMount() {
if (this.props.dynamicInputWidth) {
this.refs.tagInput.style.display = "flex";
this.refs.tagInput.style.flexWrap = "wrap";
this.refs.tagInput.lastChild.style.flex = "1 1";
}
if (this.props.inputValue) {
var tagName = this.props.inputValue;
this.setState({
tagName: tagName
});
if (!!this.props.autocomplete) this.handleAutocomplete(tagName);
}
}
}, {
key: "componentWillReceiveProps",
value: function componentWillReceiveProps(nextProps) {
if (!!nextProps["tags"]) {
this.setState({
tags: nextProps.tags
});
}
if (!!nextProps["autocomplete"] && nextProps["autocomplete"].items) {
if (nextProps.tags.length === 0 && nextProps.showAutocomplete) {
this.setState({
autocompleteItems: nextProps["autocomplete"].items
});
}
if (nextProps.tags.length > 0 && nextProps.showAutocomplete) {
this.setState({
autocompleteItems: nextProps["autocomplete"].items.filter(function (item) {
return !nextProps.tags.find(function (tag) {
return JSON.stringify(tag) === JSON.stringify(item);
});
})
});
}
if (this.props.showAutocomplete && nextProps.showAutocomplete !== this.props.showAutocomplete) {
this.setState({
autocompleteItems: []
});
}
}
if (this.props.inputValue) {
var tagName = !!nextProps["inputValue"] ? nextProps["inputValue"] : "";
this.setState({
tagName: tagName
});
if (!!this.props.autocomplete) this.handleAutocomplete(tagName);
}
if (!this.props.inputValue && !nextProps.showAutocomplete) {
this.setState({
autocompleteItems: []
});
}
}
}, {
key: "handelTag",
value: function handelTag(e) {
if (this.props.onInputChange) this.props.onInputChange(e);
if (this.props.createTagOnPress) {
var value = e.target.value;
if (this.props.createTagOnPress.indexOf(value.slice(-1)) !== -1) {
this.addTag({ target: { value: value.slice(0, -1) } });
} else {
this.setState({ tagName: e.target.value });
}
} else {
this.setState({ tagName: e.target.value });
}
if (!!this.props.autocomplete) this.handleAutocomplete(e.target.value);
}
}, {
key: "handleAutocomplete",
value: function handleAutocomplete(value) {
var autocomplete = this.props.autocomplete;
if (!!autocomplete.items && autocomplete.items.length > 0 && value.length > 0) {
var searchQuery = value.toLowerCase();
var arr = autocomplete.items.filter(function (el) {
if (!!autocomplete.searchKey) {
if (!el[autocomplete.searchKey]) return false;
var key = ("" + el[autocomplete.searchKey]).toLowerCase();
return key.indexOf(searchQuery) !== -1;
} else if (!!autocomplete.searchPath) {
return autocomplete.searchPath.split(".").reduce(function (obj, key, i, arr) {
if (arr.length - 1 === i) {
var k = ("" + obj[key]).toLowerCase();
return k.indexOf(searchQuery) !== -1;
}
return obj[key];
}, el);
} else {
var _key = ("" + el).toLowerCase();
return _key.indexOf(searchQuery) !== -1;
}
});
this.setState({
autocompleteItems: arr
});
} else {
if (!this.props.showAutocomplete) this.setState({
autocompleteItems: []
});
}
}
}, {
key: "addTag",
value: function addTag(e) {
var tags = e.target.value.length > 0 ? this.state.tags.concat([{ name: e.target.value }]) : this.state.tags;
this.setState({
tagName: "",
tags: tags
});
if (this.props.onAdd) this.props.onAdd({ name: e.target.value });
if (this.props.onChange) this.props.onChange(tags);
}
}, {
key: "onSelect",
value: function onSelect(item) {
var tags = this.state.tags.concat([item]);
this.setState({
autocompleteItems: this.state.autocompleteItems.filter(function (i) {
return JSON.stringify(i) !== JSON.stringify(item);
}),
tagName: "",
tags: tags
});
if (this.props.onAdd) this.props.onAdd(item);
if (this.props.onChange) this.props.onChange(tags);
if (this.props.onSelect) this.props.onSelect(item, tags);
}
}, {
key: "onDelete",
value: function onDelete(tag, actionIndex) {
var tags = this.state.tags.filter(function (tag, tagIndex) {
if (tagIndex !== actionIndex) {
return tag;
}
});
this.setState({
tags: tags
});
if (this.props.onDelete) this.props.onDelete(tag, actionIndex, tags);
if (this.props.onChange) this.props.onChange(tags);
}
}, {
key: "render",
value: function render() {
var _this2 = this;
var autocomplete = _react2.default.createElement(_autocomplete2.default, {
renderItem: this.props.renderAutocompleteItem,
onSelect: this.onSelect,
className: (0, _classnames2.default)("rc-tag-input", this.props.autocomplete && this.props.autocomplete.className),
autocomplete: this.state.autocompleteItems,
label: this.props.autocomplete && this.props.autocomplete.label
});
var autocompleteIsShown = this.props.showAutocomplete !== null ? this.props.showAutocomplete : !!this.props.autocomplete && this.state.autocompleteItems.length > 0;
return _react2.default.createElement(
"div",
{ className: (0, _classnames2.default)("rc-input-wrap", this.props.classNameWrap) },
_react2.default.createElement(
"ul",
{ className: (0, _classnames2.default)("rc-tag-input", this.props.className), ref: "tagInput" },
this.state.tags.map(function (tag, index) {
var props = {};
if (tag.href) {
props["href"] = tag.href;
props["target"] = "_blank";
}
return _react2.default.createElement(
"li",
{ key: "tag-" + index, className: (0, _classnames2.default)("tag", tag.className), style: tag.style },
_react2.default.createElement(
"a",
_extends({ className: "name" }, props),
tag.name ? tag.name : tag
),
_react2.default.createElement("a", { onClick: _this2.onDelete.bind(_this2, tag, index), className: "btn-close" })
);
}),
this.props.children ? _react2.default.createElement(
"li",
null,
this.props.children,
autocompleteIsShown && this.props.autocomplete.isUnderInput && autocomplete
) : _react2.default.createElement(
"li",
{ className: "input-area" },
_react2.default.createElement(_textInput2.default, {
value: this.state.tagName,
placeholder: this.props.placeholder,
onChange: this.handelTag,
clickableKeys: this.props.createTagOnKeys,
onKeyClick: this.addTag,
onFocus: this.props.onFocus,
onBlur: this.props.onBlur,
onPaste: this.props.onPaste
}),
autocompleteIsShown && this.props.autocomplete.isUnderInput && autocomplete
)
),
autocompleteIsShown && !this.props.autocomplete.isUnderInput && autocomplete
);
}
}]);
return TagInput;
}(_react2.default.Component);
exports.default = TagInput;
TagInput.propTypes = {
children: _propTypes2.default.node,
inputValue: _propTypes2.default.string,
placeholder: _propTypes2.default.string,
tags: _propTypes2.default.array,
autocomplete: _propTypes2.default.shape({
label: _propTypes2.default.string,
searchKey: _propTypes2.default.string,
searchPath: _propTypes2.default.string,
items: _propTypes2.default.array,
className: _propTypes2.default.oneOfType([_propTypes2.default.string, _propTypes2.default.array]),
isUnderInput: _propTypes2.default.bool
}),
renderAutocompleteItem: _propTypes2.default.func,
showAutocomplete: _propTypes2.default.any,
disableInput: _propTypes2.default.bool,
createTagOnPress: _propTypes2.default.array,
createTagOnKeys: _propTypes2.default.array,
className: _propTypes2.default.string,
classNameWrap: _propTypes2.default.string,
dynamicInputWidth: _propTypes2.default.bool,
onInputChange: _propTypes2.default.func,
onFocus: _propTypes2.default.func,
onBlur: _propTypes2.default.func,
onPaste: _propTypes2.default.func,
onChange: _propTypes2.default.func,
onDelete: _propTypes2.default.func,
onAdd: _propTypes2.default.func,
onSelect: _propTypes2.default.func
};
TagInput.defaultProps = {
disableInput: false,
showAutocomplete: null,
createTagOnKeys: [13]
};