hy-app 0.5.11 → 0.5.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,333 +1,333 @@
1
- <template>
2
- <view
3
- :class="['hy-input', inputClass, customClass]"
4
- :style="[wrapperStyle, borderStyle(focused)]"
5
- >
6
- <view class="hy-input__content">
7
- <view
8
- class="hy-input__content--prefix-icon"
9
- v-if="prefixIcon?.name || $slots.prefix"
10
- @tap.stop="onPrefix"
11
- >
12
- <slot v-if="$slots.prefix" name="prefix"></slot>
13
- <hy-icon
14
- v-else
15
- :name="prefixIcon?.name"
16
- :size="prefixIcon?.size"
17
- :color="prefixIcon?.color"
18
- :bold="prefixIcon?.bold"
19
- :customPrefix="prefixIcon?.customPrefix"
20
- :imgMode="prefixIcon?.imgMode"
21
- :width="prefixIcon?.width"
22
- :height="prefixIcon?.height"
23
- :top="prefixIcon?.top"
24
- :stop="prefixIcon?.stop"
25
- :round="prefixIcon?.round"
26
- :customStyle="prefixIcon?.customStyle"
27
- ></hy-icon>
28
- </view>
29
- <view class="hy-input__content--field-wrapper" @tap="clickHandler">
30
- <!-- 根据uni-app的input组件文档,H5和APP中只要声明了password参数(无论true还是false),type均失效,此时
31
- 为了防止type=number时,又存在password属性,type无效,此时需要设置password为undefined
32
- -->
33
- <input
34
- ref="input-native"
35
- :class="[
36
- 'hy-input__content--field-wrapper__field',
37
- disabled && 'hy-input__disabled-text'
38
- ]"
39
- :style="[inputStyle]"
40
- :type="type"
41
- :focus="focus"
42
- :cursor="cursor"
43
- :value="innerValue"
44
- :auto-blur="autoBlur"
45
- :disabled="disabled || readonly"
46
- :maxlength="maxlength"
47
- :placeholder="placeholder || ''"
48
- :placeholder-style="formatObject(placeholderStyle)"
49
- :placeholder-class="placeholderClass"
50
- :confirm-type="confirmType"
51
- :confirm-hold="confirmHold"
52
- :hold-keyboard="holdKeyboard"
53
- :cursor-spacing="cursorSpacing"
54
- :adjust-position="adjustPosition"
55
- :selection-end="selectionEnd"
56
- :selection-start="selectionStart"
57
- :password="password || type === 'safe-password' || false"
58
- :ignoreCompositionEvent="ignoreCompositionEvent"
59
- @input="onInput"
60
- @blur="onBlur"
61
- @focus="onFocus"
62
- @confirm="onConfirm"
63
- @keyboardheightchange="onkeyboardheightchange"
64
- />
65
- </view>
66
- <view class="hy-input__content--clear" v-if="isShowClear" @tap.stop="onClear">
67
- <hy-icon
68
- :name="IconConfig.CLOSE"
69
- size="11"
70
- color="#ffffff"
71
- :customStyle="{ lineHeight: '12px' }"
72
- ></hy-icon>
73
- </view>
74
- <view
75
- class="hy-input__content--subfix-icon"
76
- v-if="suffixIcon?.name || $slots.suffix"
77
- @tap.stop="onSuffix"
78
- >
79
- <slot v-if="$slots.suffix" name="suffix"></slot>
80
- <hy-icon
81
- v-else
82
- :name="suffixIcon?.name"
83
- :size="suffixIcon?.size"
84
- :color="suffixIcon?.color"
85
- :bold="suffixIcon?.bold"
86
- :customPrefix="suffixIcon?.customPrefix"
87
- :imgMode="suffixIcon?.imgMode"
88
- :width="suffixIcon?.width"
89
- :height="suffixIcon?.height"
90
- :top="suffixIcon?.top"
91
- :stop="suffixIcon?.stop"
92
- :round="suffixIcon?.round"
93
- :customStyle="suffixIcon?.customStyle"
94
- ></hy-icon>
95
- </view>
96
- </view>
97
- </view>
98
- </template>
99
-
100
- <script lang="ts">
101
- export default {
102
- name: 'hy-input',
103
- options: {
104
- addGlobalClass: true,
105
- virtualHost: true,
106
- styleIsolation: 'shared'
107
- }
108
- }
109
- </script>
110
-
111
- <script setup lang="ts">
112
- import { computed, nextTick, ref, watch, inject } from 'vue'
113
- import type { CSSProperties } from 'vue'
114
- import HyIcon from '../hy-icon/hy-icon.vue'
115
- import { addUnit, formatObject, sleep, IconConfig } from '../../libs'
116
- import type { IInputEmits } from './typing'
117
- import type { FormItemContext } from '../hy-form-item/typing'
118
- import type {
119
- InputOnBlurEvent,
120
- InputOnConfirmEvent,
121
- InputOnFocusEvent,
122
- InputOnKeyboardheightchange
123
- } from '@uni-helper/uni-types'
124
- import inputProps from './props'
125
-
126
- /**
127
- * 为一个输入框,利用它可以快速实现表单验证,输入内容,下拉选择等功能。
128
- * @displayName hy-input
129
- */
130
- defineOptions({})
131
-
132
- const props = defineProps(inputProps)
133
- const emit = defineEmits<IInputEmits>()
134
- const formItem = inject<FormItemContext | null>('formItem', null)
135
-
136
- // 清除操作
137
- const clearInput = ref<boolean>(false)
138
- // 输入框的值
139
- const innerValue = ref<string | number>('')
140
- // 是否处于获得焦点状态
141
- const focused = ref<boolean>(false)
142
- // value是否第一次变化,在watch中,由于加入immediate属性,会在第一次触发,此时不应该认为value发生了变化
143
- const firstChange = ref<boolean>(true)
144
- // value绑定值的变化是由内部还是外部引起的
145
- const changeFromInner = ref<boolean>(false)
146
- const innerFormatter = (value: string) => value
147
-
148
- watch(
149
- () => props.modelValue,
150
- (newVal) => {
151
- if (changeFromInner.value || innerValue.value === newVal || newVal === undefined) {
152
- changeFromInner.value = false
153
- return
154
- }
155
- innerValue.value = newVal
156
- // 在H5中,外部value变化后,修改input中的值,不会触发@input事件,此时手动调用值变化方法
157
- if (!firstChange.value && !changeFromInner.value) {
158
- valueChange(innerValue.value, true)
159
- }
160
- firstChange.value = false
161
- // 重置changeFromInner的值为false,标识下一次引起默认为外部引起的
162
- changeFromInner.value = false
163
- },
164
- { immediate: true }
165
- )
166
-
167
- /**
168
- * 是否显示清除控件
169
- * */
170
- const isShowClear = computed(() => {
171
- const { clearable, readonly, disabled } = props
172
- return clearable && !readonly && !disabled && innerValue.value !== ''
173
- })
174
- /**
175
- * 组件的类名
176
- * */
177
- const inputClass = computed((): string => {
178
- let classes: string[] = [],
179
- { border, shape } = props
180
- border === 'surround' && (classes = classes.concat(['hy-input__border', 'hy-input__radius']))
181
- classes.push(`hy-input__${shape}`)
182
- border === 'bottom' && (classes = classes.concat(['hy-border__bottom', 'hy-input__no-radius']))
183
- props.disabled && classes.push('hy-input__disabled')
184
- return classes.join(' ')
185
- })
186
-
187
- /**
188
- * 组件的样式
189
- * */
190
- const wrapperStyle = computed((): CSSProperties => {
191
- const style: CSSProperties = {}
192
- style.paddingTop = '6px'
193
- style.paddingBottom = '6px'
194
- style.paddingLeft = '9px'
195
- style.paddingRight = '9px'
196
- // 禁用状态下,被背景色加上对应的样式
197
- if (props.disabled) {
198
- style.backgroundColor = props.disabledColor
199
- }
200
- return Object.assign(style, props.customStyle)
201
- })
202
- /**
203
- * 输入框的样式
204
- * */
205
- const inputStyle = computed(() => {
206
- return {
207
- color: props.color,
208
- fontSize: addUnit(props.fontSize),
209
- textAlign: props.inputAlign
210
- }
211
- })
212
-
213
- /**
214
- * 边框颜色
215
- * */
216
- const borderStyle = computed(() => {
217
- return (isFocus: boolean) => {
218
- let style: CSSProperties = {}
219
- if (isFocus) {
220
- switch (props.border) {
221
- case 'surround':
222
- style = { border: `1px solid var(--hy-theme-color, #3c9cff)` }
223
- break
224
- case 'bottom':
225
- style = { borderBottom: `1px solid var(--hy-theme-color, #3c9cff)` }
226
- break
227
- default:
228
- break
229
- }
230
- }
231
- return style
232
- }
233
- })
234
-
235
- /**
236
- * 当键盘输入时,触发input事件
237
- */
238
- const onInput = (e: any) => {
239
- let { value = '' } = e.detail || {}
240
- nextTick(() => {
241
- let formatValue = innerFormatter(value)
242
- innerValue.value = formatValue
243
- valueChange(formatValue)
244
- })
245
- }
246
- /**
247
- * 输入框失去焦点时触发
248
- * */
249
- const onBlur = async (event: InputOnBlurEvent) => {
250
- emit('blur', event, event.detail.value)
251
- if (formItem) formItem.handleBlur(event.detail.value)
252
- await sleep()
253
- focused.value = false
254
- }
255
- /**
256
- * 输入框聚焦时触发
257
- * */
258
- const onFocus = (e: InputOnFocusEvent) => {
259
- focused.value = true
260
- emit('focus', e)
261
- }
262
-
263
- /**
264
- * 点击完成按钮时触发
265
- * */
266
- const onConfirm = (e: InputOnConfirmEvent) => {
267
- emit('confirm', e, innerValue.value)
268
- }
269
- /**
270
- * 键盘高度发生变化的时候触发此事件
271
- * 兼容性:微信小程序2.7.0+、App 3.1.0+
272
- * */
273
- const onkeyboardheightchange = (event: InputOnKeyboardheightchange) => {
274
- emit('keyboardheightchange', event)
275
- }
276
- /**
277
- * 内容发生变化,进行处理
278
- */
279
- const valueChange = (value: string | number, isOut = false) => {
280
- if (clearInput.value) {
281
- innerValue.value = ''
282
- clearInput.value = false
283
- }
284
- nextTick(() => {
285
- if (!isOut || clearInput.value) {
286
- // 标识value值的变化是由内部引起的
287
- changeFromInner.value = true
288
- emit('update:modelValue', value)
289
- emit('change', value)
290
- if (formItem) formItem.handleChange(value)
291
- }
292
- })
293
- }
294
- /**
295
- * 点击清除控件
296
- */
297
- const onClear = () => {
298
- clearInput.value = true
299
- innerValue.value = ''
300
- nextTick(() => {
301
- valueChange('')
302
- emit('clear')
303
- })
304
- }
305
- /**
306
- * 在安卓nvue上,事件无法冒泡
307
- * 在某些时间,我们希望监听u-from-item的点击事件,此时会导致点击u-form-item内的u-input后
308
- * 无法触发u-form-item的点击事件,这里通过手动调用u-form-item的方法进行触发
309
- */
310
- const clickHandler = () => {
311
- // 隐藏键盘
312
- if (props.disabled || props.readonly) {
313
- uni.hideKeyboard()
314
- }
315
- }
316
-
317
- /**
318
- * 点击前缀
319
- * */
320
- const onPrefix = () => {
321
- emit('onPrefix')
322
- }
323
- /**
324
- * 点击后缀
325
- * */
326
- const onSuffix = () => {
327
- emit('onSuffix')
328
- }
329
- </script>
330
-
331
- <style lang="scss" scoped>
332
- @import './index.scss';
333
- </style>
1
+ <template>
2
+ <view
3
+ :class="['hy-input', inputClass, customClass]"
4
+ :style="[wrapperStyle, borderStyle(focused)]"
5
+ >
6
+ <view class="hy-input__content">
7
+ <view
8
+ class="hy-input__content--prefix-icon"
9
+ v-if="prefixIcon?.name || $slots.prefix"
10
+ @tap.stop="onPrefix"
11
+ >
12
+ <slot v-if="$slots.prefix" name="prefix"></slot>
13
+ <hy-icon
14
+ v-else
15
+ :name="prefixIcon?.name"
16
+ :size="prefixIcon?.size"
17
+ :color="prefixIcon?.color"
18
+ :bold="prefixIcon?.bold"
19
+ :customPrefix="prefixIcon?.customPrefix"
20
+ :imgMode="prefixIcon?.imgMode"
21
+ :width="prefixIcon?.width"
22
+ :height="prefixIcon?.height"
23
+ :top="prefixIcon?.top"
24
+ :stop="prefixIcon?.stop"
25
+ :round="prefixIcon?.round"
26
+ :customStyle="prefixIcon?.customStyle"
27
+ ></hy-icon>
28
+ </view>
29
+ <view class="hy-input__content--field-wrapper" @tap="clickHandler">
30
+ <!-- 根据uni-app的input组件文档,H5和APP中只要声明了password参数(无论true还是false),type均失效,此时
31
+ 为了防止type=number时,又存在password属性,type无效,此时需要设置password为undefined
32
+ -->
33
+ <input
34
+ ref="input-native"
35
+ :class="[
36
+ 'hy-input__content--field-wrapper__field',
37
+ disabled && 'hy-input__disabled-test'
38
+ ]"
39
+ :style="[inputStyle]"
40
+ :type="type"
41
+ :focus="focus"
42
+ :cursor="cursor"
43
+ :value="innerValue"
44
+ :auto-blur="autoBlur"
45
+ :disabled="disabled || readonly"
46
+ :maxlength="maxlength"
47
+ :placeholder="placeholder || ''"
48
+ :placeholder-style="formatObject(placeholderStyle)"
49
+ :placeholder-class="placeholderClass"
50
+ :confirm-type="confirmType"
51
+ :confirm-hold="confirmHold"
52
+ :hold-keyboard="holdKeyboard"
53
+ :cursor-spacing="cursorSpacing"
54
+ :adjust-position="adjustPosition"
55
+ :selection-end="selectionEnd"
56
+ :selection-start="selectionStart"
57
+ :password="password || type === 'safe-password' || false"
58
+ :ignoreCompositionEvent="ignoreCompositionEvent"
59
+ @input="onInput"
60
+ @blur="onBlur"
61
+ @focus="onFocus"
62
+ @confirm="onConfirm"
63
+ @keyboardheightchange="onkeyboardheightchange"
64
+ />
65
+ </view>
66
+ <view class="hy-input__content--clear" v-if="isShowClear" @tap.stop="onClear">
67
+ <hy-icon
68
+ :name="IconConfig.CLOSE"
69
+ size="11"
70
+ color="#ffffff"
71
+ :customStyle="{ lineHeight: '12px' }"
72
+ ></hy-icon>
73
+ </view>
74
+ <view
75
+ class="hy-input__content--subfix-icon"
76
+ v-if="suffixIcon?.name || $slots.suffix"
77
+ @tap.stop="onSuffix"
78
+ >
79
+ <slot v-if="$slots.suffix" name="suffix"></slot>
80
+ <hy-icon
81
+ v-else
82
+ :name="suffixIcon?.name"
83
+ :size="suffixIcon?.size"
84
+ :color="suffixIcon?.color"
85
+ :bold="suffixIcon?.bold"
86
+ :customPrefix="suffixIcon?.customPrefix"
87
+ :imgMode="suffixIcon?.imgMode"
88
+ :width="suffixIcon?.width"
89
+ :height="suffixIcon?.height"
90
+ :top="suffixIcon?.top"
91
+ :stop="suffixIcon?.stop"
92
+ :round="suffixIcon?.round"
93
+ :customStyle="suffixIcon?.customStyle"
94
+ ></hy-icon>
95
+ </view>
96
+ </view>
97
+ </view>
98
+ </template>
99
+
100
+ <script lang="ts">
101
+ export default {
102
+ name: 'hy-input',
103
+ options: {
104
+ addGlobalClass: true,
105
+ virtualHost: true,
106
+ styleIsolation: 'shared'
107
+ }
108
+ }
109
+ </script>
110
+
111
+ <script setup lang="ts">
112
+ import { computed, nextTick, ref, watch, inject } from 'vue'
113
+ import type { CSSProperties } from 'vue'
114
+ import HyIcon from '../hy-icon/hy-icon.vue'
115
+ import { addUnit, formatObject, sleep, IconConfig } from '../../libs'
116
+ import type { IInputEmits } from './typing'
117
+ import type { FormItemContext } from '../hy-form-item/typing'
118
+ import type {
119
+ InputOnBlurEvent,
120
+ InputOnConfirmEvent,
121
+ InputOnFocusEvent,
122
+ InputOnKeyboardheightchange
123
+ } from '@uni-helper/uni-types'
124
+ import inputProps from './props'
125
+
126
+ /**
127
+ * 为一个输入框,利用它可以快速实现表单验证,输入内容,下拉选择等功能。
128
+ * @displayName hy-input
129
+ */
130
+ defineOptions({})
131
+
132
+ const props = defineProps(inputProps)
133
+ const emit = defineEmits<IInputEmits>()
134
+ const formItem = inject<FormItemContext | null>('formItem', null)
135
+
136
+ // 清除操作
137
+ const clearInput = ref<boolean>(false)
138
+ // 输入框的值
139
+ const innerValue = ref<string | number>('')
140
+ // 是否处于获得焦点状态
141
+ const focused = ref<boolean>(false)
142
+ // value是否第一次变化,在watch中,由于加入immediate属性,会在第一次触发,此时不应该认为value发生了变化
143
+ const firstChange = ref<boolean>(true)
144
+ // value绑定值的变化是由内部还是外部引起的
145
+ const changeFromInner = ref<boolean>(false)
146
+ const innerFormatter = (value: string) => value
147
+
148
+ watch(
149
+ () => props.modelValue,
150
+ (newVal) => {
151
+ if (changeFromInner.value || innerValue.value === newVal || newVal === undefined) {
152
+ changeFromInner.value = false
153
+ return
154
+ }
155
+ innerValue.value = newVal
156
+ // 在H5中,外部value变化后,修改input中的值,不会触发@input事件,此时手动调用值变化方法
157
+ if (!firstChange.value && !changeFromInner.value) {
158
+ valueChange(innerValue.value, true)
159
+ }
160
+ firstChange.value = false
161
+ // 重置changeFromInner的值为false,标识下一次引起默认为外部引起的
162
+ changeFromInner.value = false
163
+ },
164
+ { immediate: true }
165
+ )
166
+
167
+ /**
168
+ * 是否显示清除控件
169
+ * */
170
+ const isShowClear = computed(() => {
171
+ const { clearable, readonly, disabled } = props
172
+ return clearable && !readonly && !disabled && innerValue.value !== ''
173
+ })
174
+ /**
175
+ * 组件的类名
176
+ * */
177
+ const inputClass = computed((): string => {
178
+ let classes: string[] = [],
179
+ { border, shape } = props
180
+ border === 'surround' && (classes = classes.concat(['hy-input__border', 'hy-input__radius']))
181
+ classes.push(`hy-input__${shape}`)
182
+ border === 'bottom' && (classes = classes.concat(['hy-border__bottom', 'hy-input__no-radius']))
183
+ props.disabled && classes.push('hy-input__disabled')
184
+ return classes.join(' ')
185
+ })
186
+
187
+ /**
188
+ * 组件的样式
189
+ * */
190
+ const wrapperStyle = computed((): CSSProperties => {
191
+ const style: CSSProperties = {}
192
+ style.paddingTop = '6px'
193
+ style.paddingBottom = '6px'
194
+ style.paddingLeft = '9px'
195
+ style.paddingRight = '9px'
196
+ // 禁用状态下,被背景色加上对应的样式
197
+ if (props.disabled) {
198
+ style.backgroundColor = props.disabledColor
199
+ }
200
+ return Object.assign(style, props.customStyle)
201
+ })
202
+ /**
203
+ * 输入框的样式
204
+ * */
205
+ const inputStyle = computed(() => {
206
+ return {
207
+ color: props.color,
208
+ fontSize: addUnit(props.fontSize),
209
+ textAlign: props.inputAlign
210
+ }
211
+ })
212
+
213
+ /**
214
+ * 边框颜色
215
+ * */
216
+ const borderStyle = computed(() => {
217
+ return (isFocus: boolean) => {
218
+ let style: CSSProperties = {}
219
+ if (isFocus) {
220
+ switch (props.border) {
221
+ case 'surround':
222
+ style = { border: `1px solid var(--hy-theme-color, #3c9cff)` }
223
+ break
224
+ case 'bottom':
225
+ style = { borderBottom: `1px solid var(--hy-theme-color, #3c9cff)` }
226
+ break
227
+ default:
228
+ break
229
+ }
230
+ }
231
+ return style
232
+ }
233
+ })
234
+
235
+ /**
236
+ * 当键盘输入时,触发input事件
237
+ */
238
+ const onInput = (e: any) => {
239
+ let { value = '' } = e.detail || {}
240
+ nextTick(() => {
241
+ let formatValue = innerFormatter(value)
242
+ innerValue.value = formatValue
243
+ valueChange(formatValue)
244
+ })
245
+ }
246
+ /**
247
+ * 输入框失去焦点时触发
248
+ * */
249
+ const onBlur = async (event: InputOnBlurEvent) => {
250
+ emit('blur', event, event.detail.value)
251
+ if (formItem) formItem.handleBlur(event.detail.value)
252
+ await sleep()
253
+ focused.value = false
254
+ }
255
+ /**
256
+ * 输入框聚焦时触发
257
+ * */
258
+ const onFocus = (e: InputOnFocusEvent) => {
259
+ focused.value = true
260
+ emit('focus', e)
261
+ }
262
+
263
+ /**
264
+ * 点击完成按钮时触发
265
+ * */
266
+ const onConfirm = (e: InputOnConfirmEvent) => {
267
+ emit('confirm', e, innerValue.value)
268
+ }
269
+ /**
270
+ * 键盘高度发生变化的时候触发此事件
271
+ * 兼容性:微信小程序2.7.0+、App 3.1.0+
272
+ * */
273
+ const onkeyboardheightchange = (event: InputOnKeyboardheightchange) => {
274
+ emit('keyboardheightchange', event)
275
+ }
276
+ /**
277
+ * 内容发生变化,进行处理
278
+ */
279
+ const valueChange = (value: string | number, isOut = false) => {
280
+ if (clearInput.value) {
281
+ innerValue.value = ''
282
+ clearInput.value = false
283
+ }
284
+ nextTick(() => {
285
+ if (!isOut || clearInput.value) {
286
+ // 标识value值的变化是由内部引起的
287
+ changeFromInner.value = true
288
+ emit('update:modelValue', value)
289
+ emit('change', value)
290
+ if (formItem) formItem.handleChange(value)
291
+ }
292
+ })
293
+ }
294
+ /**
295
+ * 点击清除控件
296
+ */
297
+ const onClear = () => {
298
+ clearInput.value = true
299
+ innerValue.value = ''
300
+ nextTick(() => {
301
+ valueChange('')
302
+ emit('clear')
303
+ })
304
+ }
305
+ /**
306
+ * 在安卓nvue上,事件无法冒泡
307
+ * 在某些时间,我们希望监听u-from-item的点击事件,此时会导致点击u-form-item内的u-input后
308
+ * 无法触发u-form-item的点击事件,这里通过手动调用u-form-item的方法进行触发
309
+ */
310
+ const clickHandler = () => {
311
+ // 隐藏键盘
312
+ if (props.disabled || props.readonly) {
313
+ uni.hideKeyboard()
314
+ }
315
+ }
316
+
317
+ /**
318
+ * 点击前缀
319
+ * */
320
+ const onPrefix = () => {
321
+ emit('onPrefix')
322
+ }
323
+ /**
324
+ * 点击后缀
325
+ * */
326
+ const onSuffix = () => {
327
+ emit('onSuffix')
328
+ }
329
+ </script>
330
+
331
+ <style lang="scss" scoped>
332
+ @import './index.scss';
333
+ </style>