input-box.vue 10.4 KB
Newer Older
1
<template>
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
    <div class="app-input-box" :id="maxlengthAppendId">
        <InputNumber
            v-if="type === 'number'"
            :id="numberId"
            :placeholder="placeholder"
            :formatter="numberFormat"
            :size="size"
            :max="max"
            :min="min"
            :readonly="readonly"
            :precision="precision"
            v-model="CurrentVal"
            :disabled="disabled ? true : false"
            :active-change="false"
            @on-blur="blur"
        ></InputNumber>
        <i-input
            v-else
            :placeholder="placeholder"
            :class="{ 'is-disabled': disabled }"
            :size="size"
            :type="type"
            :rows="rows"
            :password="type == 'password' && enableShowPwd"
            :readonly="readonly"
            :maxlength="maxlength"
            :show-word-limit="showWordLimit"
            v-model="CurrentVal"
            :disabled="disabled ? true : false"
            :element-id="textareaId"
            @on-enter="enter"
            @on-blur="blur"
            @on-focus="focus"
        >
            <template v-if="append" #append>
                <span>{{ append }}</span>
            </template>
            <template v-if="prepend" #prepend>
                <span>{{ prepend }}</span>
            </template>
        </i-input>
        <div class="unit-text">{{ unit }}</div>
    </div>
45 46 47 48 49 50 51 52
</template>

<script lang="ts">
import { Util, debounce } from "ibiz-core";
import { Vue, Component, Prop, Model, Emit } from "vue-property-decorator";

@Component({})
export default class InputBox extends Vue {
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 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
    /**
     * 双向绑定值
     * @type {any}
     * @memberof InputBox
     */
    @Model("change") readonly itemValue?: any;

    /**
     * 单位
     * @type {String}
     * @memberof InputBox
     */
    @Prop() public unit?: string;

    /**
     * 多行文本十行 特殊参数样式(模型高度自带)
     * @type {*}
     * @memberof InputBox
     */
    @Prop() public textareaStyle?: any;

    /**
     * 多行文本十行 特殊参数id(模型高度自带)
     * @type {String}
     * @memberof InputBox
     */
    @Prop() public textareaId?: string;

    /**
     * 大小
     * @type {String}
     * @memberof InputBox
     */
    @Prop() public size?: string;

    /**
     * 最大值
     * @type {Number}
     * @memberof InputBox
     */
    @Prop() public max?: number;

    /**
     * 最小值
     * @type {Number}
     * @memberof InputBox
     */
    @Prop() public min?: number;

    /**
     * placeholder值
     * @type {String}
     * @memberof InputBox
     */
    @Prop() public placeholder?: string;

    /**
     * 是否禁用
     * @type {boolean}
     * @memberof InputBox
     */
    @Prop() public disabled?: boolean;

    /**
     * 只读模式
     *
     * @type {boolean}
     */
    @Prop({ default: false }) public readonly?: boolean;

    /**
     * 属性类型
     *
     * @type {string}
     * @memberof InputBox
     */
    @Prop() public type?: string;

    /**
     * 文本行数
     * @type {String}
     * @memberof InputBox
     */
    @Prop({ default: 2 }) public rows?: number;

    /**
     * 精度
     *
     * @type {number}
     * @memberof InputBox
     */
    @Prop({ default: 0 }) public precision?: number;

    /**
     * 数值格式化
     *
     * @type {string}
     * @memberof InputBox
     */
    @Prop() public valueFormat?: any;

    /**
     * 是否启用防抖
     *
     * @type {Boolean}
     * @memberof InputBox
     */
    @Prop({ default: true }) public isDebounce?: Boolean;

    /**
     * 密码框是否启用显示值切换图标
     *
     * @type {Boolean}
     * @memberof InputBox
     */
    @Prop({ default: false }) public enableShowPwd!: Boolean;

    /**
     * 输入内容最大长度
     *
     * @type {string}
     * @memberof InputBox
     */
    @Prop() public maxlength?: number;

    /**
     * 输入内容前缀
     *
     * @type {string}
     * @memberof InputBox
     */
    @Prop() public prepend?: any;

    /**
     * 输入内容后缀
     *
     * @type {string}
     * @memberof InputBox
     */
    @Prop() public append?: any;

    /**
     * 是否显示输入内容最大长度
     *
     * @type {string}
     * @memberof InputBox
     */
    @Prop() public showWordLimit?: boolean;

    /**
     * 多行文本类型下最小行数
     *
     * @type {string}
     * @memberof InputBox
     */
    @Prop() public minRows?: number;

    /**
     * 多行文本类型下最大行数
     *
     * @type {string}
     * @memberof InputBox
     */
    @Prop() public maxRows?: number;

    /**
     * 多行文本行数
     *
     * @type {string}
     * @memberof InputBox
     */
    public autoSize: any = {};

    /**
     * 数值框numberId
     */
    public numberId: string = this.$util.createUUID();

    //当同时存在最长长度与后缀词时,input组件的id
    public maxlengthAppendId: string = this.$util.createUUID();

    /**
     * 当前值
     *
     * @memberof InputBox
     */
    get CurrentVal() {
        if (
            Object.is(this.type, "number") &&
            this.itemValue &&
            !isNaN(this.itemValue)
        ) {
            return Number(this.itemValue);
        } else {
            return !this.itemValue && this.itemValue != 0
                ? null
                : this.itemValue;
        }
    }

    /**
     * 值变化
     *
     * @memberof InputBox
     */
    set CurrentVal(val: any) {
        let _data: any = val;
        if (
            Object.is(this.type, "number") &&
            Util.isExistAndNotEmpty(val) &&
            !isNaN(val)
        ) {
            try {
                _data = isNaN(Number(val)) ? null : Number(val);
            } catch (error) {}
        }
        if (Object.is(_data, "")) {
            _data = null;
        }
        if (this.isDebounce) {
            debounce(this.emitChangeEvent, [_data], this, 300);
        } else {
            this.emitChangeEvent(_data);
        }
277
    }
278 279 280 281 282 283 284 285 286 287 288 289 290

    /**
     * 生命周期
     * @type {any}
     * @memberof InputBox
     */
    public created() {
        if (this.minRows) {
            this.autoSize.minRows = this.minRows;
        }
        if (this.minRows) {
            this.autoSize.maxRows = this.maxRows;
        }
291
    }
292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309

    /**
     * 生命周期 (多行文本高度问题)
     * @type {any}
     * @memberof InputBox
     */
    public mounted() {
        if (this.textareaId) {
            let textarea: any = document.getElementById(this.textareaId);
            if (textarea && this.textareaStyle) {
                Object.keys(this.textareaStyle).forEach((key: string) => {
                    textarea.style[key] = this.textareaStyle[key]
                }) 
            }
        }
        if (this.showWordLimit && (this.append || this.prepend)) {
            this.setAppendStyle();
        }
310
    }
311 312 313 314 315 316 317 318 319

    /**
     * 触发change事件
     *
     * @param {*} data
     * @memberof InputBox
     */
    emitChangeEvent(data: any) {
        this.$emit("change", data);
320
    }
321 322 323 324 325 326 327 328 329 330 331 332 333

    /**
     * 回车事件
     *
     * @param {*} $event
     * @memberof InputBox
     */
    @Emit()
    public enter($event: any) {
        if (!$event || $event.keyCode !== 13) {
            return;
        }
        return this.CurrentVal;
334
    }
335 336 337 338 339 340 341 342 343 344

    /**
     * 失去焦点事件
     *
     * @param {*} $event
     * @memberof InputBox
     */
    @Emit()
    public blur(event: any) {
        return this.CurrentVal;
345
    }
346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376

    /**
     * 聚焦事件
     *
     * @param {*} $event
     * @memberof InputBox
     */
    @Emit()
    public focus(event: any) {
        return this.CurrentVal;
    }

    /**
     * 数值值格式化
     *
     * @param {*} value
     * @memberof InputBox
     */
    public numberFormat(value: any) {
        if (!this.valueFormat) {
            return value;
        }
        const _this: any = this;
        if (
            !isNaN(parseFloat(value)) &&
            _this.textFormat &&
            _this.textFormat instanceof Function
        ) {
            return _this.textFormat(parseFloat(value), _this.valueFormat);
        }
        return value;
377
    }
378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430

    /**
     * 当同时设置了前缀(或后缀词)与显示最长长度时,或同时拥有单位以及后缀等情况
     * 动态重新设置样式,iview原本的样式不支持同时设置
     *
     * @memberof InputBox
     */
    public setAppendStyle() {
        if (Object.is(this.type, "text") || Object.is(this.type, "textarea")) {
            this.$nextTick(() => {
                let input: any = document.getElementById(
                    this.maxlengthAppendId
                );
                if (input) {
                    let appendEle = input.querySelector(".ivu-input-group-append");
                    let maxlengthEle = input.querySelector(".ivu-input-word-count");
                    let unitEle = input.querySelector(".unit-text");
                    let appendEleWidth = null;
                    let maxlengthEleWidth = null;
                    if (appendEle) {
                        appendEleWidth = window
                            .getComputedStyle(appendEle)
                            .getPropertyValue("width");
                    }
                    if (maxlengthEle) {
                        maxlengthEleWidth = window
                            .getComputedStyle(maxlengthEle)
                            .getPropertyValue("width");
                    }
                    const setEleStyle = (ele: any) => {
                        ele.style.paddingRight = "5px";
                        ele.style.marginRight = "1px";
                        ele.style.zIndex = "10";
                    };
                    if (appendEleWidth && maxlengthEleWidth) {
                        const width =
                            Number(appendEleWidth.slice(0, -2)) +
                            Number(maxlengthEleWidth.slice(0, -2));
                        maxlengthEle.style.right = appendEleWidth;
                        unitEle.style.right = width + "px";
                    } else if (appendEleWidth) {
                        unitEle.style.right = appendEleWidth;
                    } else if (maxlengthEleWidth) {
                        maxlengthEle.style.right = maxlengthEleWidth;
                    }
                    setEleStyle(unitEle);
                    setEleStyle(maxlengthEle);
                    if (this.prepend) {
                        maxlengthEle.style.zIndex = "10";
                    }
                }
            });
        }
431 432 433
    }
}
</script>