index.vue 8.1 KB
Newer Older
fxy060608's avatar
fxy060608 已提交
1
<template>
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
  <uni-textarea
    :value="_checkEmpty(value)"
    :maxlength="maxlengthNumber"
    :placeholder="_checkEmpty(placeholder)"
    :disabled="disabled"
    :focus="focus"
    :auto-focus="autoFocus"
    :placeholder-class="_checkEmpty(placeholderClass)"
    :placeholder-style="_checkEmpty(placeholderStyle)"
    :auto-height="autoHeight"
    :cursor="cursorNumber"
    :selection-start="selectionStartNumber"
    :selection-end="selectionEndNumber"
    v-on="$listeners"
  >
fxy060608's avatar
fxy060608 已提交
17 18 19 20 21 22 23 24
    <div
      ref="wrapped"
      class="uni-textarea-wrapped">
      <div
        v-show="!(composition||valueSync.length)"
        ref="placeholder"
        :style="placeholderStyle"
        :class="placeholderClass"
25 26 27 28 29
        class="uni-textarea-placeholder"
      >{{ placeholder }}</div>
      <div class="uni-textarea-compute">
        <div
          v-for="(item,index) in valueCompute"
30
          :key="index">{{ item.trim() ? item : '.' }}</div>
31 32 33 34
        <v-uni-resize-sensor
          ref="sensor"
          @resize="_resize"/>
      </div>
fxy060608's avatar
fxy060608 已提交
35 36 37 38 39 40 41 42 43
      <textarea
        ref="textarea"
        v-model="valueSync"
        :disabled="disabled"
        :maxlength="maxlengthNumber"
        :autofocus="autoFocus"
        class="uni-textarea-textarea"
        @compositionstart="_compositionstart"
        @compositionend="_compositionend"
44
        @input.stop="_input"
fxy060608's avatar
fxy060608 已提交
45 46 47
        @focus="_focus"
        @blur="_blur"
        @touchstart.passive="_touchstart"
48
      />
fxy060608's avatar
fxy060608 已提交
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 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
    </div>
  </uni-textarea>
</template>
<script>
import {
  emitter
} from 'uni-mixins'
export default {
  name: 'Textarea',
  mixins: [emitter],
  model: {
    prop: 'value',
    event: 'update:value'
  },
  props: {
    name: {
      type: String,
      default: ''
    },
    value: {
      type: [String, Number],
      default: ''
    },
    maxlength: {
      type: [Number, String],
      default: 140
    },
    placeholder: {
      type: String,
      default: ''
    },
    disabled: {
      type: [Boolean, String],
      default: false
    },
    focus: {
      type: [Boolean, String],
      default: false
    },
    autoFocus: {
      type: [Boolean, String],
      default: false
    },
    placeholderClass: {
      type: String,
      default: ''
    },
    placeholderStyle: {
      type: String,
      default: ''
    },
    autoHeight: {
      type: [Boolean, String],
      default: false
    },
    cursor: {
      type: [Number, String],
      default: -1
    },
    selectionStart: {
      type: [Number, String],
      default: -1
    },
    selectionEnd: {
      type: [Number, String],
      default: -1
    }
  },
  data () {
    return {
      valueSync: String(this.value),
120
      valueComposition: '',
fxy060608's avatar
fxy060608 已提交
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
      composition: false,
      focusSync: this.focus,
      height: 0,
      focusChangeSource: ''
    }
  },
  computed: {
    maxlengthNumber () {
      var maxlength = Number(this.maxlength)
      return isNaN(maxlength) ? 140 : maxlength
    },
    cursorNumber () {
      var cursor = Number(this.cursor)
      return isNaN(cursor) ? -1 : cursor
    },
    selectionStartNumber () {
      var selectionStart = Number(this.selectionStart)
      return isNaN(selectionStart) ? -1 : selectionStart
    },
    selectionEndNumber () {
      var selectionEnd = Number(this.selectionEnd)
      return isNaN(selectionEnd) ? -1 : selectionEnd
143 144 145
    },
    valueCompute () {
      return (this.composition ? this.valueComposition : this.valueSync).split('\n')
fxy060608's avatar
fxy060608 已提交
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
    }
  },
  watch: {
    value (val) {
      this.valueSync = String(val)
    },
    valueSync (val) {
      if (val !== this.value) {
        this.$trigger('input', {}, {
          value: val,
          cursor: this.$refs.textarea.selectionEnd
        })
        this.$emit('update:value', val)
      }
    },
    focus (val) {
      if (val) {
        this.focusChangeSource = 'focus'
        if (this.$refs.textarea) {
          this.$refs.textarea.focus()
        }
      } else {
        if (this.$refs.textarea) {
          this.$refs.textarea.blur()
        }
      }
    },
    focusSync (val) {
      this.$emit('update:focus', val)
      this._checkSelection()
      this._checkCursor()
    },
    cursorNumber () {
      this._checkCursor()
    },
    selectionStartNumber () {
      this._checkSelection()
    },
    selectionEndNumber () {
      this._checkSelection()
    },
    height (height) {
      const lineHeight = getComputedStyle(this.$el).lineHeight.replace('px', '')
      var lineCount = Math.round(height / lineHeight)
      this.$trigger('linechange', {}, {
        height,
        heightRpx: 750 / window.innerWidth * height,
        lineCount
      })
      if (this.autoHeight) {
        this.$el.style.height = this.height + 'px'
      }
    }
  },
  created () {
    this.$dispatch('Form', 'uni-form-group-update', {
      type: 'add',
      vm: this
    })
  },
  mounted () {
    this.$refs.textarea.value = this.valueSync
208 209 210
    this._resize({
      height: this.$refs.sensor.$el.offsetHeight
    })
fxy060608's avatar
fxy060608 已提交
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
  },
  beforeDestroy () {
    this.$dispatch('Form', 'uni-form-group-update', {
      type: 'remove',
      vm: this
    })
  },
  methods: {
    _focus: function ($event) {
      this.focusSync = true
      this.$trigger('focus', $event, {
        value: this.valueSync
      })
    },
    _checkSelection () {
      if (this.focusSync && (!this.focusChangeSource) && this.selectionStartNumber > -1 && this.selectionEndNumber > -1) {
        this.$refs.textarea.selectionStart = this.selectionStartNumber
        this.$refs.textarea.selectionEnd = this.selectionEndNumber
      }
    },
    _checkCursor () {
      if (this.focusSync && (this.focusChangeSource === 'focus' || ((!this.focusChangeSource) && this.selectionStartNumber < 0 && this.selectionEndNumber < 0)) && this.cursorNumber > -1) {
        this.$refs.textarea.selectionEnd = this.$refs.textarea.selectionStart = this.cursorNumber
      }
    },
    _blur: function ($event) {
      this.focusSync = false
      this.$trigger('blur', $event, {
        value: this.valueSync,
        cursor: this.$refs.textarea.selectionEnd
      })
    },
    _compositionstart ($event) {
      this.composition = true
    },
    _compositionend ($event) {
      this.composition = false
    },
    // 暂无完成按钮,此功能未实现
    _confirm ($event) {
      this.$trigger('confirm', $event, {
        value: this.valueSync
      })
    },
    _linechange ($event) {
      this.$trigger('linechange', $event, {
        value: this.valueSync
      })
    },
    _touchstart () {
      this.focusChangeSource = 'touch'
    },
263 264 265 266 267 268 269
    _resize ({ height }) {
      this.height = height
    },
    _input ($event) {
      if (this.composition) {
        this.valueComposition = $event.target.value
      }
fxy060608's avatar
fxy060608 已提交
270 271 272 273 274 275 276 277 278
    },
    _getFormData () {
      return {
        value: this.valueSync,
        key: this.name
      }
    },
    _resetFormData () {
      this.valueSync = ''
279 280 281
    },
    _checkEmpty (str) {
      return str || false
fxy060608's avatar
fxy060608 已提交
282 283 284 285 286 287 288 289 290 291 292 293
    }
  }
}
</script>

<style>
uni-textarea {
  width: 300px;
  height: 150px;
  display: block;
  position: relative;
  font-size: 16px;
294 295 296 297 298 299 300
  line-height: normal;
}
uni-textarea[hidden] {
  display: none;
}
uni-textarea[auto-height] .uni-textarea-textarea {
  overflow-y: hidden;
fxy060608's avatar
fxy060608 已提交
301 302 303 304 305 306 307 308 309 310 311 312 313 314 315
}
.uni-textarea-wrapped {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font: inherit;
  font-size: inherit;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-indent: inherit;
  color: inherit;
316
  text-align: inherit;
fxy060608's avatar
fxy060608 已提交
317 318
}
.uni-textarea-placeholder,
319
.uni-textarea-compute,
fxy060608's avatar
fxy060608 已提交
320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
.uni-textarea-textarea {
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  word-break: break-all;
  font: inherit;
  font-size: inherit;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-indent: inherit;
  color: inherit;
337
  text-align: inherit;
fxy060608's avatar
fxy060608 已提交
338 339 340 341
}
.uni-textarea-placeholder {
  color: grey;
}
342 343 344 345
.uni-textarea-compute {
  visibility: hidden;
  height: auto;
}
fxy060608's avatar
fxy060608 已提交
346 347 348 349 350 351
.uni-textarea-textarea {
  outline: none;
  border: none;
  padding: 0;
  resize: none;
  background-color: transparent;
352
  opacity: inherit;
fxy060608's avatar
fxy060608 已提交
353 354
}
</style>