mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-04 14:02:17 +08:00
80c5e35a29
Selector new functionality x-script tag support for templates
76 lines
1.3 KiB
JavaScript
76 lines
1.3 KiB
JavaScript
|
|
(function () {
|
|
|
|
'use strict';
|
|
|
|
var
|
|
_ = require('_'),
|
|
ko = require('ko'),
|
|
|
|
Utils = require('Common/Utils')
|
|
;
|
|
|
|
/**
|
|
* @constructor
|
|
*/
|
|
function AbstractComponent()
|
|
{
|
|
this.disposable = [];
|
|
}
|
|
|
|
/**
|
|
* @type {Array}
|
|
*/
|
|
AbstractComponent.prototype.disposable = [];
|
|
|
|
AbstractComponent.prototype.dispose = function ()
|
|
{
|
|
_.each(this.disposable, function (fFuncToDispose) {
|
|
if (fFuncToDispose && fFuncToDispose.dispose)
|
|
{
|
|
fFuncToDispose.dispose();
|
|
}
|
|
});
|
|
};
|
|
|
|
/**
|
|
* @param {*} ClassObject
|
|
* @param {string} sTemplateID
|
|
* @return {Object}
|
|
*/
|
|
AbstractComponent.componentExportHelper = function (ClassObject, sTemplateID) {
|
|
var oComponent = {
|
|
viewModel: {
|
|
createViewModel: function(oParams, oComponentInfo) {
|
|
|
|
oParams = oParams || {};
|
|
oParams.element = null;
|
|
|
|
if (oComponentInfo.element)
|
|
{
|
|
oParams.component = oComponentInfo;
|
|
oParams.element = $(oComponentInfo.element);
|
|
|
|
require('Common/Translator').i18nToNodes(oParams.element);
|
|
|
|
if (!Utils.isUnd(oParams.inline) && ko.unwrap(oParams.inline))
|
|
{
|
|
oParams.element.css('display', 'inline-block');
|
|
}
|
|
}
|
|
|
|
return new ClassObject(oParams);
|
|
}
|
|
}
|
|
};
|
|
|
|
oComponent['template'] = sTemplateID ? {
|
|
element: sTemplateID
|
|
} : '<b></b>';
|
|
|
|
return oComponent;
|
|
};
|
|
|
|
module.exports = AbstractComponent;
|
|
|
|
}());
|