forked from chrishutchinson/cardkit
-
Notifications
You must be signed in to change notification settings - Fork 2
/
cardkit.js
340 lines (271 loc) · 10.9 KB
/
cardkit.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
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory(require("deep-extend"));
else if(typeof define === 'function' && define.amd)
define("CardKit", ["deep-extend"], factory);
else if(typeof exports === 'object')
exports["CardKit"] = factory(require("deep-extend"));
else
root["CardKit"] = factory(root["deep-extend"]);
})(this, function(__WEBPACK_EXTERNAL_MODULE_1__) {
return /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId])
/******/ return installedModules[moduleId].exports;
/******/ // Create a new module (and put it into the cache)
/******/ var module = installedModules[moduleId] = {
/******/ exports: {},
/******/ id: moduleId,
/******/ loaded: false
/******/ };
/******/ // Execute the module function
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
/******/ // Flag the module as loaded
/******/ module.loaded = true;
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = modules;
/******/ // expose the module cache
/******/ __webpack_require__.c = installedModules;
/******/ // __webpack_public_path__
/******/ __webpack_require__.p = "";
/******/ // Load entry module and return exports
/******/ return __webpack_require__(0);
/******/ })
/************************************************************************/
/******/ ([
/* 0 */
/***/ function(module, exports, __webpack_require__) {
'use strict';
var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
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; }; }();
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
var deepExtend = __webpack_require__(1);
/**
* @name CardKit
* @class Core CardKit class used for managing a single card instance
*/
var CardKit = function () {
/**
* Constructor takes in the configuration and stores it for later user
*
* @param {object} configuration - The configuration object to initialise the CardKit image with.
* @param {object} options - The additional options for use
*/
function CardKit(configuration) {
var options = arguments.length <= 1 || arguments[1] === undefined ? false : arguments[1];
_classCallCheck(this, CardKit);
if (!configuration) {
throw new Error('A configuration object was not provided');
}
if (!this._isValidConfiguration(configuration)) {
throw new Error('Invalid configuration object provided');
}
// Store the configuration
this.configuration = configuration;
// Configure the options
this._configureOptions(options);
// Setup an empty array of renderers
this.renderers = [];
}
/**
* Configures the supplied options on this instance of CardKit
*
* @param {object} options - The options to configure
*/
_createClass(CardKit, [{
key: '_configureOptions',
value: function _configureOptions(options) {
if (options) {
if (options.templates) {
if (!this._isValidTemplatesConfiguration(options.templates)) {
throw new Error('Invalid templates configuration object provided');
}
this.templates = options.templates;
} else {
this.templates = null;
}
if (options.themes) {
if (!this._isValidThemesConfiguration(options.themes)) {
throw new Error('Invalid themes configuration object provided');
}
this.themes = options.themes;
} else {
this.themes = null;
}
if (options.layouts) {
if (!this._isValidLayoutsConfiguration(options.layouts)) {
throw new Error('Invalid layouts configuration object provided');
}
this.layouts = options.layouts;
} else {
this.layouts = null;
}
}
}
/**
* Validates the provided configuration object
*
* @param {object} configuration - The configuration object to validate
*
* @return {boolean} Is the configuration object valid
*/
}, {
key: '_isValidConfiguration',
value: function _isValidConfiguration(configuration) {
return (typeof configuration === 'undefined' ? 'undefined' : _typeof(configuration)) === 'object' && // Should be an object
typeof configuration.card !== 'undefined' && // Should have a card property
_typeof(configuration.card) === 'object' && // Card property should be an object
typeof configuration.card.height !== 'undefined' && // Should have a height
typeof configuration.card.width !== 'undefined'; // Should have a width
}
/**
* Validates the provided templates configuration object
*
* @param {object} configuration - The templates configuration object to validate
*
* @return {boolean} Is the templates configuration object valid
*/
}, {
key: '_isValidTemplatesConfiguration',
value: function _isValidTemplatesConfiguration(templates) {
return (typeof templates === 'undefined' ? 'undefined' : _typeof(templates)) === 'object'; // Should be an object
}
/**
* Validates the provided themes configuration object
*
* @param {object} configuration - The themes configuration object to validate
*
* @return {boolean} Is the themes configuration object valid
*/
}, {
key: '_isValidThemesConfiguration',
value: function _isValidThemesConfiguration(themes) {
return (typeof themes === 'undefined' ? 'undefined' : _typeof(themes)) === 'object'; // Should be an object
}
/**
* Validates the provided layouts configuration object
*
* @param {object} configuration - The layouts configuration object to validate
*
* @return {boolean} Is the layouts configuration object valid
*/
}, {
key: '_isValidLayoutsConfiguration',
value: function _isValidLayoutsConfiguration(layouts) {
return (typeof layouts === 'undefined' ? 'undefined' : _typeof(layouts)) === 'object'; // Should be an object
}
/**
* Validates the supplied renderer
*
* @param {object} renderer - The renderer to validate
*
* @return {boolean} If the renderer is valid
*/
}, {
key: '_isValidRenderer',
value: function _isValidRenderer(renderer) {
return renderer.cardkit === this;
}
/**
* Compute the configuration
*
* @param {object} options - Any options (e.g. a specific theme and / or layout) to use when computing the configuration
*
* @return {object} The computed configuration
*/
}, {
key: 'computeConfiguration',
value: function computeConfiguration() {
var options = arguments.length <= 0 || arguments[0] === undefined ? null : arguments[0];
// Get the base configuration
var configuration = Object.assign({}, this.configuration);
// If we got options supplied
if (options) {
if (options.template && typeof this.templates[options.template] !== 'undefined') {
// Get the template based on the name and merge it onto the base configuration
configuration = deepExtend(configuration, this.templates[options.template]);
}
if (options.theme && typeof this.themes[options.theme] !== 'undefined') {
// Get the theme based on the name and merge it onto the base configuration
configuration = deepExtend(configuration, this.themes[options.theme]);
}
if (options.layout && typeof this.layouts[options.layout] !== 'undefined') {
// Get the layout based on the name and merge it onto the base configuration
configuration = deepExtend(configuration, this.layouts[options.layout]);
}
}
// Return the computed configuration
return configuration;
}
/**
* Updates the configuration, and optionally rerenders the image (if previously rendered)
*
* @param {object} configuration - The configuration object to update to
* @param {object} options - Any options to supply (templates, themes, layouts)
* @param {boolean} rerender - Whether or not to attempt to rerender the image
*/
}, {
key: 'updateConfiguration',
value: function updateConfiguration(configuration) {
var options = arguments.length <= 1 || arguments[1] === undefined ? { layouts: null, templates: null, themes: null } : arguments[1];
var rerender = arguments.length <= 2 || arguments[2] === undefined ? true : arguments[2];
this.configuration = configuration;
this._configureOptions(options);
if (rerender) {
var renderers = this.getRenderers();
renderers.forEach(function (renderer) {
switch (renderer.constructor.name) {
case 'CardKitDOM':
renderer.rerender();
break;
}
});
}
}
/**
* Get the renderers
*
* @return {array} The configured renderers
*/
}, {
key: 'getRenderers',
value: function getRenderers() {
return this.renderers;
}
/**
* Add a renderer
*
* @param {object} renderer - A renderer to add
*/
}, {
key: 'addRenderer',
value: function addRenderer(renderer) {
if (!this._isValidRenderer(renderer)) {
throw new Error('Invalid renderer object provided');
}
this.renderers.push(renderer);
}
}]);
return CardKit;
}();
// Export it
module.exports = CardKit;
// Add it to the window object if we have one
if (typeof window !== 'undefined') {
window.CardKit = CardKit;
}
/***/ },
/* 1 */
/***/ function(module, exports) {
module.exports = __WEBPACK_EXTERNAL_MODULE_1__;
/***/ }
/******/ ])
});
;