mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-05 06:22:52 +08:00
47 lines
1 KiB
JavaScript
47 lines
1 KiB
JavaScript
import $ from '$';
|
|
import ko from 'ko';
|
|
|
|
import { isUnd } from 'Common/Utils';
|
|
import { i18nToNodes } from 'Common/Translator';
|
|
|
|
class AbstractComponent {
|
|
disposable = [];
|
|
|
|
dispose() {
|
|
this.disposable.forEach((funcToDispose) => {
|
|
if (funcToDispose && funcToDispose.dispose) {
|
|
funcToDispose.dispose();
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param {*} ClassObject
|
|
* @param {string} templateID = ''
|
|
* @returns {Object}
|
|
*/
|
|
const componentExportHelper = (ClassObject, templateID = '') => ({
|
|
template: templateID ? { element: templateID } : '<b></b>',
|
|
viewModel: {
|
|
createViewModel: (params, componentInfo) => {
|
|
params = params || {};
|
|
params.element = null;
|
|
|
|
if (componentInfo && componentInfo.element) {
|
|
params.component = componentInfo;
|
|
params.element = $(componentInfo.element);
|
|
|
|
i18nToNodes(params.element);
|
|
|
|
if (!isUnd(params.inline) && ko.unwrap(params.inline)) {
|
|
params.element.css('display', 'inline-block');
|
|
}
|
|
}
|
|
|
|
return new ClassObject(params);
|
|
}
|
|
}
|
|
});
|
|
|
|
export { AbstractComponent, componentExportHelper };
|