feat(Field): add inputmode props (#13208)

This commit is contained in:
yuhengshen 2024-11-17 09:37:55 +08:00 committed by GitHub
parent eca18a1dad
commit 07e1634882
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 15 additions and 12 deletions

View File

@ -9,6 +9,7 @@ import {
defineComponent, defineComponent,
type PropType, type PropType,
type ExtractPropTypes, type ExtractPropTypes,
type HTMLAttributes,
} from 'vue'; } from 'vue';
// Utils // Utils
@ -112,6 +113,7 @@ export const fieldSharedProps = {
type: Boolean, type: Boolean,
default: null, default: null,
}, },
inputmode: String as PropType<HTMLAttributes['inputmode']>,
}; };
export const fieldProps = extend({}, cellSharedProps, fieldSharedProps, { export const fieldProps = extend({}, cellSharedProps, fieldSharedProps, {
@ -539,10 +541,12 @@ export default defineComponent({
}; };
if (props.type === 'textarea') { if (props.type === 'textarea') {
return <textarea {...inputAttrs} />; return <textarea {...inputAttrs} inputmode={props.inputmode} />;
} }
return <input {...mapInputType(props.type)} {...inputAttrs} />; return (
<input {...mapInputType(props.type, props.inputmode)} {...inputAttrs} />
);
}; };
const renderLeftIcon = () => { const renderLeftIcon = () => {

View File

@ -91,27 +91,26 @@ export function resizeTextarea(
} }
} }
export function mapInputType(type: FieldType): { export function mapInputType(
type: FieldType,
inputmode?: HTMLAttributes['inputmode'],
): {
type: InputHTMLAttributes['type']; type: InputHTMLAttributes['type'];
inputmode?: HTMLAttributes['inputmode']; inputmode?: HTMLAttributes['inputmode'];
} { } {
// type="number" is weird in iOS, and can't prevent dot in Android // type="number" is weird in iOS, and can't prevent dot in Android
// so use inputmode to set keyboard in modern browsers // so use inputmode to set keyboard in modern browsers
if (type === 'number') { if (type === 'number') {
return { type = 'text';
type: 'text', inputmode ??= 'decimal';
inputmode: 'decimal',
};
} }
if (type === 'digit') { if (type === 'digit') {
return { type = 'tel';
type: 'tel', inputmode ??= 'numeric';
inputmode: 'numeric',
};
} }
return { type }; return { type, inputmode };
} }
// get correct length of emoji // get correct length of emoji