index.vue 8.3 KB
Newer Older
fxy060608's avatar
fxy060608 已提交
1
<template>
2 3 4 5 6 7 8 9 10 11 12 13 14
  <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"
15
    @change.stop
16 17
    v-on="$listeners"
  >
18
    <div class="uni-textarea-wrapper">
fxy060608's avatar
fxy060608 已提交
19 20 21 22 23
      <div
        v-show="!(composition||valueSync.length)"
        ref="placeholder"
        :style="placeholderStyle"
        :class="placeholderClass"
24 25 26 27 28
        class="uni-textarea-placeholder"
      >{{ placeholder }}</div>
      <div class="uni-textarea-compute">
        <div
          v-for="(item,index) in valueCompute"
29
          :key="index">{{ item.trim() ? item : '.' }}</div>
30 31 32 33
        <v-uni-resize-sensor
          ref="sensor"
          @resize="_resize"/>
      </div>
fxy060608's avatar
fxy060608 已提交
34 35 36 37 38 39
      <textarea
        ref="textarea"
        v-model="valueSync"
        :disabled="disabled"
        :maxlength="maxlengthNumber"
        :autofocus="autoFocus"
40
        :class="{'uni-textarea-textarea-ios': isIOS}"
fxy060608's avatar
fxy060608 已提交
41 42 43
        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
      composition: false,
      focusSync: this.focus,
      height: 0,
124 125
      focusChangeSource: '',
      isIOS: String(navigator.platform).indexOf('iP') === 0 && String(navigator.vendor).indexOf('Apple') === 0
fxy060608's avatar
fxy060608 已提交
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
    }
  },
  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
144 145 146
    },
    valueCompute () {
      return (this.composition ? this.valueComposition : this.valueSync).split('\n')
fxy060608's avatar
fxy060608 已提交
147 148 149 150 151 152 153
    }
  },
  watch: {
    value (val) {
      this.valueSync = String(val)
    },
    valueSync (val) {
154 155
      if (val !== this._oldValue) {
        this._oldValue = val
fxy060608's avatar
fxy060608 已提交
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
        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 () {
209
    this._oldValue = this.$refs.textarea.value = this.valueSync
210 211 212
    this._resize({
      height: this.$refs.sensor.$el.offsetHeight
    })
fxy060608's avatar
fxy060608 已提交
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
  },
  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'
    },
265 266 267 268 269 270 271
    _resize ({ height }) {
      this.height = height
    },
    _input ($event) {
      if (this.composition) {
        this.valueComposition = $event.target.value
      }
fxy060608's avatar
fxy060608 已提交
272 273 274 275 276 277 278 279 280
    },
    _getFormData () {
      return {
        value: this.valueSync,
        key: this.name
      }
    },
    _resetFormData () {
      this.valueSync = ''
281 282 283
    },
    _checkEmpty (str) {
      return str || false
fxy060608's avatar
fxy060608 已提交
284 285 286 287 288 289 290 291 292 293 294 295
    }
  }
}
</script>

<style>
uni-textarea {
  width: 300px;
  height: 150px;
  display: block;
  position: relative;
  font-size: 16px;
296 297 298 299 300 301 302
  line-height: normal;
}
uni-textarea[hidden] {
  display: none;
}
uni-textarea[auto-height] .uni-textarea-textarea {
  overflow-y: hidden;
fxy060608's avatar
fxy060608 已提交
303
}
Q
qiang 已提交
304 305 306 307 308 309 310 311 312 313
.uni-textarea-wrapper,
.uni-textarea-placeholder,
.uni-textarea-compute,
.uni-textarea-textarea {
  outline: none;
  border: none;
  padding: 0;
  margin: 0;
  text-decoration: inherit;
}
314
.uni-textarea-wrapper {
Q
qiang 已提交
315
  display: block;
fxy060608's avatar
fxy060608 已提交
316 317 318 319 320
  position: relative;
  width: 100%;
  height: 100%;
}
.uni-textarea-placeholder,
321
.uni-textarea-compute,
fxy060608's avatar
fxy060608 已提交
322 323 324 325 326 327
.uni-textarea-textarea {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
Q
qiang 已提交
328
  white-space: pre-wrap;
fxy060608's avatar
fxy060608 已提交
329 330 331 332
  word-break: break-all;
}
.uni-textarea-placeholder {
  color: grey;
Q
qiang 已提交
333
  overflow: hidden;
fxy060608's avatar
fxy060608 已提交
334
}
335 336 337 338
.uni-textarea-compute {
  visibility: hidden;
  height: auto;
}
fxy060608's avatar
fxy060608 已提交
339 340
.uni-textarea-textarea {
  resize: none;
Q
qiang 已提交
341 342
  background: none;
  color: inherit;
343
  opacity: inherit;
Q
qiang 已提交
344 345 346 347 348 349 350
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-align: inherit;
  text-indent: inherit;
  text-transform: inherit;
  text-shadow: inherit;
fxy060608's avatar
fxy060608 已提交
351
}
352 353 354 355 356 357
/* 用于解决 iOS textarea 内部默认边距 */
.uni-textarea-textarea-ios {
  width: auto;
  right: 0;
  margin: 0 -3px;
}
fxy060608's avatar
fxy060608 已提交
358
</style>