import { MapExpViewBase } from '../../../view/mapexpview-base';
import { AppLayoutService } from '../../../app-service';
/**
 * 应用实体地图导航视图基类
 *
 * @export
 * @class AppMapExpViewBase
 * @extends {GanttViewBase}
 */
export class AppMapExpViewBase extends MapExpViewBase {
    /**
     * 表格导航视图渲染
     *
     * @memberof AppMapExpViewBase
     */
    render(h) {
        if (!this.viewIsLoaded) {
            return null;
        }
        const targetViewLayoutComponent = AppLayoutService.getLayoutComponent(`${this.viewInstance.viewType}-${this.viewInstance.viewStyle}`);
        return h(targetViewLayoutComponent, {
            props: { viewInstance: this.viewInstance, model: this.model, modelService: this.modelService, viewparams: this.viewparams, context: this.context },
        }, [this.renderTopMessage(), this.renderBodyMessage(), this.renderToolBar(), this.renderMainContent(), this.renderBottomMessage()]);
    }
}
