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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
| var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
| var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
| if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
| else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
| return c > 3 && r && Object.defineProperty(target, key, r), r;
| };
| import { SuperComponent, wxComponent } from '../common/src/index';
| import config from '../common/config';
| import props from './props';
| import { getCharacterLength } from '../common/utils';
| const { prefix } = config;
| const name = `${prefix}-textarea`;
| let Textarea = class Textarea extends SuperComponent {
| constructor() {
| super(...arguments);
| this.options = {
| multipleSlots: true,
| };
| this.behaviors = ['wx://form-field'];
| this.externalClasses = [
| `${prefix}-class`,
| `${prefix}-class-textarea`,
| `${prefix}-class-label`,
| `${prefix}-class-indicator`,
| ];
| this.properties = props;
| this.data = {
| prefix,
| classPrefix: name,
| count: 0,
| };
| this.observers = {
| value(val) {
| this.updateCount(val);
| },
| };
| this.lifetimes = {
| ready() {
| const { value } = this.properties;
| this.updateValue(value == null ? '' : value);
| },
| };
| this.methods = {
| updateCount(val) {
| const { maxcharacter, maxlength } = this.properties;
| const { count } = this.calculateValue(val, maxcharacter, maxlength);
| this.setData({
| count,
| });
| },
| updateValue(val) {
| const { maxcharacter, maxlength } = this.properties;
| const { value, count } = this.calculateValue(val, maxcharacter, maxlength);
| this.setData({
| value,
| count,
| });
| },
| calculateValue(value, maxcharacter, maxlength) {
| if (maxcharacter > 0 && !Number.isNaN(maxcharacter)) {
| const { length, characters } = getCharacterLength('maxcharacter', value, maxcharacter);
| return {
| value: characters,
| count: length,
| };
| }
| if (maxlength > 0 && !Number.isNaN(maxlength)) {
| const { length, characters } = getCharacterLength('maxlength', value, maxlength);
| return {
| value: characters,
| count: length,
| };
| }
| return {
| value,
| count: value ? String(value).length : 0,
| };
| },
| onInput(event) {
| const { value, cursor } = event.detail;
| this.updateValue(value);
| this.triggerEvent('change', { value: this.data.value, cursor });
| },
| onFocus(event) {
| this.triggerEvent('focus', Object.assign({}, event.detail));
| },
| onBlur(event) {
| this.triggerEvent('blur', Object.assign({}, event.detail));
| },
| onConfirm(event) {
| this.triggerEvent('enter', Object.assign({}, event.detail));
| },
| onLineChange(event) {
| this.triggerEvent('line-change', Object.assign({}, event.detail));
| },
| onKeyboardHeightChange(e) {
| this.triggerEvent('keyboardheightchange', e.detail);
| },
| };
| }
| };
| Textarea = __decorate([
| wxComponent()
| ], Textarea);
| export default Textarea;
|
|