MOON
Server: Apache
System: Linux nserver.cafsindia.com 4.18.0-553.123.2.lve.el8.x86_64 #1 SMP Thu May 7 23:17:13 UTC 2026 x86_64
User: cafsindia (1002)
PHP: 8.2.30
Disabled: NONE
Upload Files
File: /home/cafsindia/snap.cafsinfotech.in/node_modules/@cattr/ui-kit/src/components/input/src/input.vue
<template>
  <div
    class="at-input"
    :class="[
      size ? `at-input--${size}` : '',
      status ? `at-input--${status}` : '',
      {
        'at-input-group': $slots.prepend || $slots.append,
        'at-input--disabled': disabled,
        'at-input--prepend': $slots.prepend,
        'at-input--append': $slots.append,
        'at-input--icon': icon
      }
    ]">
    <!-- S prepend element -->
    <div class="at-input-group__prepend" :class="{ 'at-input-group--button': prependButton }" v-if="$slots.prepend">
      <slot name="prepend"></slot>
    </div>
    <!-- E prepend element -->

    <!-- S input -->
    <input
      class="at-input__original"
      :type="type"
      :name="name"
      :value="currentValue"
      :placeholder="placeholder"
      :min="min"
      :max="max"
      :minlength="minlength"
      :maxlength="maxlength"
      :disabled="disabled"
      :readonly="readonly"
      :autofocus="autofocus"
      @focus="handleFocus"
      @blur="handleBlur"
      @input="handleInput">
    <!-- E input -->

    <!-- S icon -->
    <i class="at-input__icon icon" :class="iconClass" v-if="icon"></i>
    <!-- E icon -->

    <!-- S append element -->
    <div class="at-input-group__append" :class="{ 'at-input-group--button': appendButton }" v-if="$slots.append">
      <slot name="append"></slot>
    </div>
    <!-- E append element -->
  </div>
</template>

<script>
  import Emitter from 'at-ui/src/mixins/emitter'

  export default {
    name: 'AtInput',
    mixins: [Emitter],
    props: {
      type: {
        type: String,
        default: 'text'
      },
      value: [String, Number],
      name: String,
      placeholder: String,
      size: String,
      status: String,
      icon: String,
      prependButton: {
        type: Boolean,
        default: false
      },
      appendButton: {
        type: Boolean,
        default: false
      },
      readonly: {
        type: Boolean,
        default: false
      },
      disabled: {
        type: Boolean,
        default: false
      },
      autofocus: {
        type: Boolean,
        default: false
      },
      maxlength: Number,
      minlength: Number,
      max: Number,
      min: Number
    },
    computed: {
      iconClass () {
        const name = this.icon || this.status
        return name ? `icon-${name}` : ''
      }
    },
    data () {
      return {
        currentValue: this.value
      }
    },
    watch: {
      value (val) {
        this.setCurrentValue(val)
      }
    },
    methods: {
      handleFocus (evt) {
        this.$emit('focus', evt)
      },
      handleBlur (evt) {
        this.$emit('blur', evt)
        this.dispatch('AtFormItem', 'on-form-item-blur', this.currentValue)
      },
      handleInput (evt) {
        const value = evt.target.value
        this.$emit('input', value)
        this.$emit('change', value)
      },
      setCurrentValue (val) {
        if (val === this.currentValue) return
        this.currentValue = val
        this.dispatch('AtFormItem', 'on-form-item-change', this.currentValue)
      }
    }
  }
</script>