mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(DatePicker): support "confirm" method, support "getSelectedDate"… (#12762)
Co-authored-by: neverland <jait.chen@foxmail.com>
This commit is contained in:
parent
6b16057d30
commit
6713778618
@ -3,6 +3,7 @@ import {
|
|||||||
watch,
|
watch,
|
||||||
computed,
|
computed,
|
||||||
defineComponent,
|
defineComponent,
|
||||||
|
type ComponentPublicInstance,
|
||||||
type PropType,
|
type PropType,
|
||||||
type ExtractPropTypes,
|
type ExtractPropTypes,
|
||||||
} from 'vue';
|
} from 'vue';
|
||||||
@ -18,7 +19,8 @@ import {
|
|||||||
} from './utils';
|
} from './utils';
|
||||||
|
|
||||||
// Components
|
// Components
|
||||||
import { Picker } from '../picker';
|
import { Picker, PickerInstance } from '../picker';
|
||||||
|
import { useExpose } from '../composables/use-expose';
|
||||||
|
|
||||||
const currentYear = new Date().getFullYear();
|
const currentYear = new Date().getFullYear();
|
||||||
const [name] = createNamespace('date-picker');
|
const [name] = createNamespace('date-picker');
|
||||||
@ -42,8 +44,18 @@ export const datePickerProps = extend({}, sharedProps, {
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
export type DatePickerExpose = {
|
||||||
|
confirm: () => void;
|
||||||
|
getSelectedDate: () => string[];
|
||||||
|
};
|
||||||
|
|
||||||
export type DatePickerProps = ExtractPropTypes<typeof datePickerProps>;
|
export type DatePickerProps = ExtractPropTypes<typeof datePickerProps>;
|
||||||
|
|
||||||
|
export type DatePickerInstance = ComponentPublicInstance<
|
||||||
|
DatePickerProps,
|
||||||
|
DatePickerExpose
|
||||||
|
>;
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
name,
|
name,
|
||||||
|
|
||||||
@ -54,6 +66,7 @@ export default defineComponent({
|
|||||||
setup(props, { emit, slots }) {
|
setup(props, { emit, slots }) {
|
||||||
const currentValues = ref<string[]>(props.modelValue);
|
const currentValues = ref<string[]>(props.modelValue);
|
||||||
const updatedByExternalSources = ref(false);
|
const updatedByExternalSources = ref(false);
|
||||||
|
const pickerRef = ref<PickerInstance>();
|
||||||
|
|
||||||
const genYearOptions = () => {
|
const genYearOptions = () => {
|
||||||
const minYear = props.minDate.getFullYear();
|
const minYear = props.minDate.getFullYear();
|
||||||
@ -121,6 +134,14 @@ export default defineComponent({
|
|||||||
return genOptions(minDate, maxDate, 'day', props.formatter, props.filter);
|
return genOptions(minDate, maxDate, 'day', props.formatter, props.filter);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const confirm = () => {
|
||||||
|
return pickerRef.value?.confirm();
|
||||||
|
};
|
||||||
|
|
||||||
|
const getSelectedDate = () => {
|
||||||
|
return currentValues.value;
|
||||||
|
};
|
||||||
|
|
||||||
const columns = computed(() =>
|
const columns = computed(() =>
|
||||||
props.columnsType.map((type) => {
|
props.columnsType.map((type) => {
|
||||||
switch (type) {
|
switch (type) {
|
||||||
@ -169,8 +190,11 @@ export default defineComponent({
|
|||||||
const onCancel = (...args: unknown[]) => emit('cancel', ...args);
|
const onCancel = (...args: unknown[]) => emit('cancel', ...args);
|
||||||
const onConfirm = (...args: unknown[]) => emit('confirm', ...args);
|
const onConfirm = (...args: unknown[]) => emit('confirm', ...args);
|
||||||
|
|
||||||
|
useExpose<DatePickerExpose>({ confirm, getSelectedDate });
|
||||||
|
|
||||||
return () => (
|
return () => (
|
||||||
<Picker
|
<Picker
|
||||||
|
ref={pickerRef}
|
||||||
v-slots={slots}
|
v-slots={slots}
|
||||||
v-model={currentValues.value}
|
v-model={currentValues.value}
|
||||||
columns={columns.value}
|
columns={columns.value}
|
||||||
|
@ -204,10 +204,34 @@ export default {
|
|||||||
| columns-top | Custom content above columns | - |
|
| columns-top | Custom content above columns | - |
|
||||||
| columns-bottom | Custom content below columns | - |
|
| columns-bottom | Custom content below columns | - |
|
||||||
|
|
||||||
|
### Methods
|
||||||
|
|
||||||
|
Use [ref](https://vuejs.org/guide/essentials/template-refs.html) to get Picker instance and call instance methods.
|
||||||
|
|
||||||
|
| Name | Description | Attribute | Return value |
|
||||||
|
| --- | --- | --- | --- |
|
||||||
|
| confirm | Stop scrolling and emit confirm event | - | - |
|
||||||
|
| getSelectedDate | Get current selected date | - | _string[] \| undefined_ |
|
||||||
|
|
||||||
### Types
|
### Types
|
||||||
|
|
||||||
The component exports the following type definitions:
|
The component exports the following type definitions:
|
||||||
|
|
||||||
```ts
|
```ts
|
||||||
import type { DatePickerProps, DatePickerColumnType } from 'vant';
|
import type {
|
||||||
|
DatePickerProps,
|
||||||
|
DatePickerColumnType,
|
||||||
|
DatePickerInstance,
|
||||||
|
} from 'vant';
|
||||||
|
```
|
||||||
|
|
||||||
|
`DatePickerInstance` is the type of component instance:
|
||||||
|
|
||||||
|
```ts
|
||||||
|
import { ref } from 'vue';
|
||||||
|
import type { DatePickerInstance } from 'vant';
|
||||||
|
|
||||||
|
const datePickerRef = ref<DatePickerInstance>();
|
||||||
|
|
||||||
|
datePickerRef.value?.confirm();
|
||||||
```
|
```
|
||||||
|
@ -210,12 +210,36 @@ export default {
|
|||||||
| columns-top | 自定义选项上方内容 | - |
|
| columns-top | 自定义选项上方内容 | - |
|
||||||
| columns-bottom | 自定义选项下方内容 | - |
|
| columns-bottom | 自定义选项下方内容 | - |
|
||||||
|
|
||||||
|
### 方法
|
||||||
|
|
||||||
|
通过 ref 可以获取到 Picker 实例并调用实例方法,详见[组件实例方法](#/zh-CN/advanced-usage#zu-jian-shi-li-fang-fa)。
|
||||||
|
|
||||||
|
| 方法名 | 说明 | 参数 | 返回值 |
|
||||||
|
| --- | --- | --- | --- |
|
||||||
|
| confirm | 停止惯性滚动并触发 `confirm` 事件 | - | - |
|
||||||
|
| getSelectedDate | 获取当前选中的日期 | - | _string[] \| undefined_ |
|
||||||
|
|
||||||
### 类型定义
|
### 类型定义
|
||||||
|
|
||||||
组件导出以下类型定义:
|
组件导出以下类型定义:
|
||||||
|
|
||||||
```ts
|
```ts
|
||||||
import type { DatePickerProps, DatePickerColumnType } from 'vant';
|
import type {
|
||||||
|
DatePickerProps,
|
||||||
|
DatePickerColumnType,
|
||||||
|
DatePickerInstance,
|
||||||
|
} from 'vant';
|
||||||
|
```
|
||||||
|
|
||||||
|
`DatePickerInstance` 是组件实例的类型,用法如下:
|
||||||
|
|
||||||
|
```ts
|
||||||
|
import { ref } from 'vue';
|
||||||
|
import type { DatePickerInstance } from 'vant';
|
||||||
|
|
||||||
|
const datePickerRef = ref<DatePickerInstance>();
|
||||||
|
|
||||||
|
datePickerRef.value?.confirm();
|
||||||
```
|
```
|
||||||
|
|
||||||
## 常见问题
|
## 常见问题
|
||||||
|
@ -5,7 +5,7 @@ export const DatePicker = withInstall(_DatePicker);
|
|||||||
export default DatePicker;
|
export default DatePicker;
|
||||||
export { datePickerProps } from './DatePicker';
|
export { datePickerProps } from './DatePicker';
|
||||||
export type { DatePickerProps };
|
export type { DatePickerProps };
|
||||||
export type { DatePickerColumnType } from './DatePicker';
|
export type { DatePickerColumnType, DatePickerInstance } from './DatePicker';
|
||||||
|
|
||||||
declare module 'vue' {
|
declare module 'vue' {
|
||||||
export interface GlobalComponents {
|
export interface GlobalComponents {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user