devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
88 lines (87 loc) • 3.08 kB
JavaScript
/**
* DevExtreme (ui/collection/item.js)
* Version: 18.1.3
* Build date: Tue May 15 2018
*
* Copyright (c) 2012 - 2018 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
"use strict";
var $ = require("../../core/renderer"),
Class = require("../../core/class"),
each = require("../../core/utils/iterator").each,
publicComponentUtils = require("../../core/utils/public_component");
var INVISIBLE_STATE_CLASS = "dx-state-invisible",
DISABLED_STATE_CLASS = "dx-state-disabled",
ITEM_CONTENT_PLACEHOLDER_CLASS = "dx-item-content-placeholder";
var forcibleWatcher = function(watchMethod, fn, callback) {
var filteredCallback = function() {
var oldValue;
return function(value) {
if (oldValue !== value) {
callback(value, oldValue);
oldValue = value
}
}
}();
return {
dispose: watchMethod(fn, filteredCallback),
force: function() {
filteredCallback(fn())
}
}
};
var CollectionItem = Class.inherit({
ctor: function($element, options, rawData) {
this._$element = $element;
this._options = options;
this._rawData = rawData;
publicComponentUtils.attachInstanceToElement($element, this, this._dispose);
this._render()
},
_render: function() {
var $placeholder = $("<div>").addClass(ITEM_CONTENT_PLACEHOLDER_CLASS);
this._$element.append($placeholder);
this._watchers = [];
this._renderWatchers()
},
_renderWatchers: function() {
this._startWatcher("disabled", this._renderDisabled.bind(this));
this._startWatcher("visible", this._renderVisible.bind(this))
},
_startWatcher: function(field, render) {
var rawData = this._rawData,
exprGetter = this._options.fieldGetter(field);
var watcher = forcibleWatcher(this._options.watchMethod(), function() {
return exprGetter(rawData)
}, function(value, oldValue) {
this._dirty = true;
render(value, oldValue)
}.bind(this));
this._watchers.push(watcher)
},
setDataField: function() {
this._dirty = false;
each(this._watchers, function(_, watcher) {
watcher.force()
});
if (this._dirty) {
return true
}
},
_renderDisabled: function(value, oldValue) {
this._$element.toggleClass(DISABLED_STATE_CLASS, !!value)
},
_renderVisible: function(value, oldValue) {
this._$element.toggleClass(INVISIBLE_STATE_CLASS, void 0 !== value && !value)
},
_dispose: function() {
each(this._watchers, function(_, watcher) {
watcher.dispose()
})
}
});
CollectionItem.getInstance = function($element) {
return publicComponentUtils.getInstanceByElement($element, this)
};
module.exports = CollectionItem;