app-simpleflex-container.vue 2.9 KB
Newer Older
tony001's avatar
tony001 committed
1
<template>
tony001's avatar
tony001 committed
2
    <div :class="curClassName" :style="curStyle">
tony001's avatar
tony001 committed
3
        <template v-if="containerModel.length > 0">
tony001's avatar
tony001 committed
4
            <div v-for="name of containerModel" class="container-item__pos" :style="getItemPosStyle(name)">
tony001's avatar
tony001 committed
5
                <slot :name="name"></slot>
tony001's avatar
tony001 committed
6
            </div>
tony001's avatar
tony001 committed
7 8 9 10 11
        </template>
    </div>
</template>

<script lang="ts">
tony001's avatar
tony001 committed
12
import { Component, Prop, Vue, Watch } from 'vue-property-decorator';
tony001's avatar
tony001 committed
13 14 15 16 17 18 19 20 21 22 23

@Component({})
export default class AppSimpleFlexContainer extends Vue {
    /**
    * 名称
    *
    * @type {string}
    * @memberof AppSimpleFlexContainer
    */
    @Prop() public name!: string;

tony001's avatar
tony001 committed
24 25 26 27 28 29
    /**
     * 下标
     *
     * @type {number}
     * @memberof AppSimpleFlexContainer
     */
tony001's avatar
tony001 committed
30
    @Prop() public index?: number;
tony001's avatar
tony001 committed
31

tony001's avatar
tony001 committed
32 33 34 35 36 37 38 39
    /**
     * 布局模型详情
     *
     * @type {string}
     * @memberof AppSimpleFlexContainer
     */
    @Prop() public layoutModelDetails: any;

tony001's avatar
tony001 committed
40 41 42 43 44 45 46 47 48 49
    /**
     * 布局模型详情变更
     * @param newVal 
     * @param oldVal 
     */
    @Watch('layoutModelDetails')
    onLayoutModelDetailsChange(newVal: any, oldVal: any) {
        this.initSimpleFlexContainer();
    }

tony001's avatar
tony001 committed
50 51 52 53 54 55 56 57
    /**
     * 插槽对象
     *
     * @memberof AppSimpleFlexContainer
     */
    public containerModel: any[] = [];

    /**
tony001's avatar
tony001 committed
58
     * 项名称
tony001's avatar
tony001 committed
59
     *
tony001's avatar
tony001 committed
60 61
     * @type {*}
     * @memberof AppSimpleFlexContainer
tony001's avatar
tony001 committed
62
     */
tony001's avatar
tony001 committed
63
    get itemName() {
tony001's avatar
tony001 committed
64
        return (this.index || this.index === 0) ? `${this.name}_${this.index}` : this.name;
tony001's avatar
tony001 committed
65 66 67 68 69 70 71 72
    }

    /**
     * 初始化SIMPLEFLEX容器
     *
     * @memberof SimpleFlexContainer
     */
    public initSimpleFlexContainer() {
tony001's avatar
tony001 committed
73
        this.containerModel = [];
tony001's avatar
tony001 committed
74
        const curLayoutModel = this.layoutModelDetails[this.itemName];
tony001's avatar
tony001 committed
75 76 77 78 79 80 81 82 83 84 85
        if (curLayoutModel && curLayoutModel.details && curLayoutModel.details.length > 0) {
            curLayoutModel.details.forEach((key: string) => {
                this.containerModel.push(key);
            })
        }
    }

    /**
    * 当前容器样式类
    */
    get curClassName() {
tony001's avatar
tony001 committed
86 87 88 89
        const layoutModel = this.layoutModelDetails[this.itemName];
        if (layoutModel) {
            return `app-simpleflex-container ${this.itemName} ${layoutModel.sysCss}`;
        }
tony001's avatar
tony001 committed
90 91 92
    }

    /**
tony001's avatar
tony001 committed
93 94 95
     * 当前容器样式
     */
    get curStyle() {
tony001's avatar
tony001 committed
96 97 98 99
        const layoutModel = this.layoutModelDetails[this.itemName];
        if (layoutModel) {
            return layoutModel.getElementStyle();
        }
tony001's avatar
tony001 committed
100
    }
tony001's avatar
tony001 committed
101

tony001's avatar
tony001 committed
102 103 104 105
    /**
     * 获取项布局样式
     */
    public getItemPosStyle(name: string) {
tony001's avatar
tony001 committed
106
        let layoutModel: any;
tony001's avatar
tony001 committed
107
        if (this.index || this.index === 0) {
tony001's avatar
tony001 committed
108 109 110 111 112
            layoutModel = this.layoutModelDetails[`${name}_${this.index}`];
        } else {
            layoutModel = this.layoutModelDetails[name];
        }
        if (layoutModel) {
Shine-zwj's avatar
Shine-zwj committed
113
            return layoutModel.getBoxLayOutStyle();
tony001's avatar
tony001 committed
114
        }
tony001's avatar
tony001 committed
115
    }
tony001's avatar
tony001 committed
116 117


tony001's avatar
tony001 committed
118 119
}
</script>
120 121
<style lang='scss'>
@import 'app-simpleflex-container.scss';
tony001's avatar
tony001 committed
122
</style>