From c25acb8d4630d21e547217bb59cab858934c37bf Mon Sep 17 00:00:00 2001 From: neverland Date: Sun, 28 Aug 2022 10:43:14 +0800 Subject: [PATCH] chore(PIcker): split PickerToolbar component (#10982) --- packages/vant/src/picker/Picker.tsx | 98 ++++++++-------------- packages/vant/src/picker/PickerToolbar.tsx | 75 +++++++++++++++++ packages/vant/src/picker/utils.ts | 6 +- 3 files changed, 114 insertions(+), 65 deletions(-) create mode 100644 packages/vant/src/picker/PickerToolbar.tsx diff --git a/packages/vant/src/picker/Picker.tsx b/packages/vant/src/picker/Picker.tsx index 7f298349c..b4ba81d75 100644 --- a/packages/vant/src/picker/Picker.tsx +++ b/packages/vant/src/picker/Picker.tsx @@ -9,6 +9,7 @@ import { // Utils import { + pick, extend, unitToPx, truthProp, @@ -17,18 +18,18 @@ import { preventDefault, makeStringProp, makeNumericProp, - createNamespace, - HAPTICS_FEEDBACK, BORDER_UNSET_TOP_BOTTOM, type Numeric, } from '../utils'; import { + bem, + name, isOptionExist, getColumnsType, findOptionByValue, + assignDefaultFields, formatCascadeColumns, getFirstEnabledOption, - assignDefaultFields, } from './utils'; // Composables @@ -38,6 +39,11 @@ import { useExpose } from '../composables/use-expose'; // Components import { Loading } from '../loading'; import Column, { PICKER_KEY } from './PickerColumn'; +import Toolbar, { + pickerToolbarPropKeys, + pickerToolbarProps, + pickerToolbarSlots, +} from './PickerToolbar'; // Types import type { @@ -48,20 +54,18 @@ import type { PickerToolbarPosition, } from './types'; -const [name, bem, t] = createNamespace('picker'); - -export const pickerSharedProps = { - title: String, - loading: Boolean, - readonly: Boolean, - allowHtml: Boolean, - optionHeight: makeNumericProp(44), - showToolbar: truthProp, - swipeDuration: makeNumericProp(1000), - visibleOptionNum: makeNumericProp(6), - cancelButtonText: String, - confirmButtonText: String, -}; +export const pickerSharedProps = extend( + { + loading: Boolean, + readonly: Boolean, + allowHtml: Boolean, + optionHeight: makeNumericProp(44), + showToolbar: truthProp, + swipeDuration: makeNumericProp(1000), + visibleOptionNum: makeNumericProp(6), + }, + pickerToolbarProps +); const pickerProps = extend({}, pickerSharedProps, { columns: makeArrayProp(), @@ -167,53 +171,6 @@ export default defineComponent({ selectedOptions: selectedOptions.value, }); - const renderTitle = () => { - if (slots.title) { - return slots.title(); - } - if (props.title) { - return
{props.title}
; - } - }; - - const renderCancel = () => { - const text = props.cancelButtonText || t('cancel'); - return ( - - ); - }; - - const renderConfirm = () => { - const text = props.confirmButtonText || t('confirm'); - return ( - - ); - }; - - const renderToolbar = () => { - if (props.showToolbar) { - return ( -
- {slots.toolbar - ? slots.toolbar() - : [renderCancel(), renderTitle(), renderConfirm()]} -
- ); - } - }; - const renderColumnItems = () => currentColumns.value.map((options, columnIndex) => ( { + if (props.showToolbar) { + return ( + + ); + } + }; + watch( currentColumns, (columns) => { diff --git a/packages/vant/src/picker/PickerToolbar.tsx b/packages/vant/src/picker/PickerToolbar.tsx new file mode 100644 index 000000000..f323a1060 --- /dev/null +++ b/packages/vant/src/picker/PickerToolbar.tsx @@ -0,0 +1,75 @@ +import { defineComponent } from 'vue'; +import { bem, t } from './utils'; +import { createNamespace, HAPTICS_FEEDBACK } from '../utils'; + +const [name] = createNamespace('picker-toolbar'); + +export const pickerToolbarProps = { + title: String, + cancelButtonText: String, + confirmButtonText: String, +}; + +export const pickerToolbarSlots = ['cancel', 'confirm', 'title', 'toolbar']; + +export type PickerToolbarPropKeys = Array; + +export const pickerToolbarPropKeys = Object.keys( + pickerToolbarProps +) as PickerToolbarPropKeys; + +export default defineComponent({ + name, + + props: pickerToolbarProps, + + emits: ['confirm', 'cancel'], + + setup(props, { emit, slots }) { + const renderTitle = () => { + if (slots.title) { + return slots.title(); + } + if (props.title) { + return
{props.title}
; + } + }; + + const onCancel = () => emit('cancel'); + const onConfirm = () => emit('confirm'); + + const renderCancel = () => { + const text = props.cancelButtonText || t('cancel'); + return ( + + ); + }; + + const renderConfirm = () => { + const text = props.confirmButtonText || t('confirm'); + return ( + + ); + }; + + return () => ( +
+ {slots.toolbar + ? slots.toolbar() + : [renderCancel(), renderTitle(), renderConfirm()]} +
+ ); + }, +}); diff --git a/packages/vant/src/picker/utils.ts b/packages/vant/src/picker/utils.ts index 56df46434..1199e5409 100644 --- a/packages/vant/src/picker/utils.ts +++ b/packages/vant/src/picker/utils.ts @@ -1,7 +1,11 @@ -import { isDef, clamp, extend, type Numeric } from '../utils'; +import { isDef, clamp, extend, createNamespace, type Numeric } from '../utils'; import type { Ref } from 'vue'; import type { PickerOption, PickerColumn, PickerFieldNames } from './types'; +const [name, bem, t] = createNamespace('picker'); + +export { name, bem, t }; + export const getFirstEnabledOption = ( options: PickerOption[] ): PickerOption | undefined =>