import { __decorate } from "tslib";
import { isNilOrEmpty } from 'qx-util';
import { Component, Emit, Prop } from 'vue-property-decorator';
import { ViewContainerBase } from './view-container-base';
/**
 * 视图壳
 *
 * @export
 * @class AppViewShell
 * @extends {ViewContainerBase}
 */
let AppViewShell = class AppViewShell extends ViewContainerBase {
    /**
     * 数据变化
     *
     * @param {*} val
     * @returns {*}
     * @memberof AppViewShell
     */
    viewDatasChange(val) {
        return val;
    }
    /**
     * Vue声明周期
     *
     * @memberof AppViewShell
     */
    created() {
        super.created();
        this.ViewContainerInit();
    }
    /**
     * 视图绘制
     *
     * @memberof AppViewShell
     */
    render(h) {
        var _a;
        if (isNilOrEmpty(this.viewContainerName)) {
            return;
        }
        return h(this.viewContainerName, {
            props: { modal: this.modal, dynamicProps: this.dynamicProps, staticProps: this.viewContext },
            on: {
                'view-event': this.handleViewEvent.bind(this),
            },
            domProps: {
                id: `${(_a = this.modeldata) === null || _a === void 0 ? void 0 : _a.codeName}`,
            },
        });
    }
};
__decorate([
    Emit()
], AppViewShell.prototype, "viewDatasChange", null);
__decorate([
    Prop()
], AppViewShell.prototype, "modal", void 0);
__decorate([
    Prop()
], AppViewShell.prototype, "staticProps", void 0);
__decorate([
    Prop()
], AppViewShell.prototype, "dynamicProps", void 0);
AppViewShell = __decorate([
    Component({})
], AppViewShell);
export { AppViewShell };
