1
1
import React from 'react' ;
2
2
import get from 'lodash.get' ;
3
+ import {
4
+ Button as BPButton ,
5
+ ButtonProps as BPButtonProps ,
6
+ } from '@blueprintjs/core' ;
3
7
import {
4
8
Select as BPSelect ,
5
9
SelectProps as BPSelectProps ,
@@ -15,6 +19,14 @@ interface FormikSelectProps<T>
15
19
extends Omit < BPSelectProps < T > , 'itemRenderer' | 'onItemSelect' > {
16
20
itemRenderer ?: ItemRenderer < T > ;
17
21
onItemSelect ?: ( item : T , event ?: React . SyntheticEvent < HTMLElement > ) => void ;
22
+ input ?: ( props : {
23
+ activeItem : T ;
24
+ label : string ;
25
+ text : string ;
26
+ value : string | number ;
27
+ } ) => React . ReactNode ;
28
+ placeholder ?: string ;
29
+ buttonProps ?: Partial < BPButtonProps > ;
18
30
}
19
31
interface SelectProps < T >
20
32
extends Omit < FieldConfig , 'children' | 'as' | 'component' > ,
@@ -23,12 +35,6 @@ interface SelectProps<T>
23
35
valueAccessor ?: string ;
24
36
labelAccessor ?: string ;
25
37
textAccessor ?: string ;
26
- input : ( props : {
27
- activeItem : T ;
28
- label : string ;
29
- text : string ;
30
- value : string | number ;
31
- } ) => React . ReactNode ;
32
38
}
33
39
interface FieldToSelectProps < T > extends FormikSelectProps < T > , FieldProps {
34
40
valueAccessor : string ;
@@ -60,6 +66,8 @@ function transformSelectToFieldProps<T extends SelectOptionProps>({
60
66
form : { touched, errors, ...form } ,
61
67
meta,
62
68
input,
69
+ buttonProps,
70
+ placeholder,
63
71
valueAccessor,
64
72
labelAccessor,
65
73
textAccessor,
@@ -73,15 +81,25 @@ function transformSelectToFieldProps<T extends SelectOptionProps>({
73
81
( item ) => getAccessor ( _valueAccessor , item ) === field . value
74
82
) as T ;
75
83
76
- const children = input
77
- ? input ( {
78
- activeItem,
79
- text : getAccessor ( _textAccessor , activeItem ) ,
80
- label : getAccessor ( _labelAccessor , activeItem ) ,
81
- value : getAccessor ( _valueAccessor , activeItem ) ,
82
- } )
83
- : props . children ;
84
+ const activeItemText = getAccessor ( _textAccessor , activeItem ) ;
85
+ const activeItemLabel = getAccessor ( _labelAccessor , activeItem ) ;
86
+ const activeItemValue = getAccessor ( _valueAccessor , activeItem ) ;
84
87
88
+ const children = input ? (
89
+ input ( {
90
+ activeItem,
91
+ text : activeItemText ,
92
+ label : activeItemLabel ,
93
+ value : activeItemValue ,
94
+ } )
95
+ ) : (
96
+ < BPButton
97
+ text = { activeItemText }
98
+ rightIcon = "double-caret-vertical"
99
+ placeholder = { placeholder || 'Select an item...' }
100
+ { ...buttonProps }
101
+ />
102
+ ) ;
85
103
const itemPredicate : ItemPredicate < T > = ( query , item , _index , exactMatch ) => {
86
104
const text = getAccessor ( _textAccessor , item ) ;
87
105
const label = getAccessor ( _labelAccessor , item ) ;
0 commit comments