ibiz-code-list.ts 1.8 KB
Newer Older
ibiz's avatar
ibiz committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
/**
 * 代码表对象
 *
 * @class IBizCodeList
 * @extends {IBizObject}
 */
class IBizCodeList extends IBizObject {

    /**
     * 静态代码表数据
     *
     * @type {Array<any>}
     * @memberof IBizCodeList
     */
    public data: Array<any> = [];

    /**
     * Creates an instance of IBizCodeList. 
     * 创建 IBizCodeList 实例
     * 
     * @param {*} [opts={}]
     * @memberof IBizCodeList
     */
    constructor(opts: any = {}) {
        super(opts);
        this.data = [...opts.datas];
    }

    /**
     * 获取代码表数据
     * 
     * @returns {Array<any>} 
     * @memberof IBizCodeList
     */
    public getData(): Array<any> {
        return this.data;
    }

    /**
     * 获取数据项的值
     * 
     * @param {string} value 
     * @param {*} cascade 
     * @returns {*} 
     * @memberof IBizCodeList
     */
    public getItemByValue(value: string, cascade?: any): any {
        let result: any = {};
        const arr: Array<any> = this.data.filter(item => Object.is(item.value, value));
        if (arr.length !== 1) {
            return undefined;
        }

        result = { ...arr[0] };
        return result;
    }

    /**
     * 获取代码表文本值
     * 
     * @param {*} [item={}] 
     * @returns {string} 
     * @memberof IBizCodeList
     */
    public getCodeItemText(item: any = {}): string {
        const color = item.color;
        const textCls = item.textcls;
        const iconCls = item.iconcls;
        const realText = item.text;
        let ret = '';
        if (iconCls) {
            ret = `<i class='${iconCls}'></i>&nbsp;`;
        }
        if (textCls || color) {
            ret = `${ret}<span class='${textCls ? textCls : ''}' style='color: ${color ? color : ''}'>${realText}</span>`;
        } else {
            ret += realText;
        }

        return ret;
    }
}