@elliemae/ds-search-field 2.2.0-alpha.2 → 2.2.0-beta.0
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.
- package/cjs/DSSearchField.js +165 -129
- package/cjs/impl/DSSeachFieldImpl.js +157 -126
- package/cjs/impl/components/AdvanceSearchOption/AdvanceSearchOption.js +25 -43
- package/cjs/impl/components/LookupIndicator/LookupIndicator.js +33 -49
- package/cjs/impl/components/ModalSearchField/DataGridSearch.js +93 -83
- package/cjs/impl/components/ModalSearchField/ModalSearchField.js +82 -93
- package/cjs/index.js +12 -37
- package/esm/DSSearchField.js +152 -97
- package/esm/impl/DSSeachFieldImpl.js +147 -96
- package/esm/impl/components/AdvanceSearchOption/AdvanceSearchOption.js +18 -14
- package/esm/impl/components/LookupIndicator/LookupIndicator.js +26 -20
- package/esm/impl/components/ModalSearchField/DataGridSearch.js +83 -53
- package/esm/impl/components/ModalSearchField/ModalSearchField.js +75 -64
- package/esm/index.js +2 -12
- package/package.json +9 -9
- package/types/DSSearchField.d.ts +1 -29
- package/cjs/DSSearchField.js.map +0 -7
- package/cjs/impl/DSSeachFieldImpl.js.map +0 -7
- package/cjs/impl/components/AdvanceSearchOption/AdvanceSearchOption.js.map +0 -7
- package/cjs/impl/components/LookupIndicator/LookupIndicator.js.map +0 -7
- package/cjs/impl/components/ModalSearchField/DataGridSearch.js.map +0 -7
- package/cjs/impl/components/ModalSearchField/ModalSearchField.js.map +0 -7
- package/cjs/index.js.map +0 -7
- package/esm/DSSearchField.js.map +0 -7
- package/esm/impl/DSSeachFieldImpl.js.map +0 -7
- package/esm/impl/components/AdvanceSearchOption/AdvanceSearchOption.js.map +0 -7
- package/esm/impl/components/LookupIndicator/LookupIndicator.js.map +0 -7
- package/esm/impl/components/ModalSearchField/DataGridSearch.js.map +0 -7
- package/esm/impl/components/ModalSearchField/ModalSearchField.js.map +0 -7
- package/esm/index.js.map +0 -7
package/esm/DSSearchField.js
CHANGED
|
@@ -1,104 +1,159 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import {
|
|
4
|
-
import { TabTypes } from
|
|
5
|
-
import
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
1
|
+
import _jsx from '@babel/runtime/helpers/esm/jsx';
|
|
2
|
+
import 'react';
|
|
3
|
+
import { PropTypes, describe } from 'react-desc';
|
|
4
|
+
import { TabTypes } from '@elliemae/ds-tabs';
|
|
5
|
+
import DSSearchFieldImpl from './impl/DSSeachFieldImpl.js';
|
|
6
|
+
export { default as DSModalSearchField } from './impl/components/ModalSearchField/ModalSearchField.js';
|
|
7
|
+
|
|
8
|
+
const DSSearchField = _ref => {
|
|
9
|
+
let {
|
|
10
|
+
containerProps = {},
|
|
11
|
+
onChange = () => null,
|
|
12
|
+
searchOptionLabel = 'Advanced Search',
|
|
13
|
+
placeholder = 'Select field',
|
|
14
|
+
modalSize = 'x-large',
|
|
15
|
+
modalTitle = 'Search Field ID',
|
|
16
|
+
tabsAnimated = true,
|
|
17
|
+
tabsEnableMouseEvents = true,
|
|
18
|
+
tabType = TabTypes.NORMAL,
|
|
19
|
+
tabData = [],
|
|
20
|
+
searchGrid = false,
|
|
21
|
+
searchFilters = true,
|
|
22
|
+
confirmLabel = 'Apply',
|
|
23
|
+
rejectLabel = 'Cancel',
|
|
24
|
+
modalType = 'confirm',
|
|
25
|
+
onConfirmField = () => null,
|
|
26
|
+
onRejectField = () => null,
|
|
27
|
+
onTabChange = () => null,
|
|
28
|
+
appElement = '#root',
|
|
29
|
+
value = null,
|
|
30
|
+
additionalInfo = null,
|
|
31
|
+
displayProperty = 'name',
|
|
32
|
+
dropdownOptions = [],
|
|
33
|
+
customDataGridOptions = {},
|
|
34
|
+
customDropdownOptions = {},
|
|
35
|
+
useLookupIndicator = true,
|
|
36
|
+
searchable = false
|
|
37
|
+
} = _ref;
|
|
38
|
+
return /*#__PURE__*/_jsx(DSSearchFieldImpl, {
|
|
39
|
+
additionalInfo: additionalInfo,
|
|
40
|
+
appElement: appElement,
|
|
41
|
+
searchable: searchable,
|
|
42
|
+
confirmLabel: confirmLabel,
|
|
43
|
+
containerProps: containerProps,
|
|
44
|
+
customDataGridOptions: customDataGridOptions,
|
|
45
|
+
customDropdownOptions: customDropdownOptions,
|
|
46
|
+
displayProperty: displayProperty,
|
|
47
|
+
dropdownOptions: dropdownOptions,
|
|
48
|
+
modalSize: modalSize,
|
|
49
|
+
modalTitle: modalTitle,
|
|
50
|
+
modalType: modalType,
|
|
51
|
+
onChange: onChange,
|
|
52
|
+
onConfirmField: onConfirmField,
|
|
53
|
+
onRejectField: onRejectField,
|
|
54
|
+
onTabChange: onTabChange,
|
|
55
|
+
placeholder: placeholder,
|
|
56
|
+
rejectLabel: rejectLabel,
|
|
57
|
+
searchFilters: searchFilters,
|
|
58
|
+
searchGrid: searchGrid,
|
|
59
|
+
searchOptionLabel: searchOptionLabel,
|
|
60
|
+
tabData: tabData,
|
|
61
|
+
tabsAnimated: tabsAnimated,
|
|
62
|
+
tabsEnableMouseEvents: tabsEnableMouseEvents,
|
|
63
|
+
tabType: tabType,
|
|
64
|
+
useLookupIndicator: useLookupIndicator,
|
|
65
|
+
value: value
|
|
66
|
+
});
|
|
67
|
+
};
|
|
68
|
+
|
|
63
69
|
const props = {
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
70
|
+
/*
|
|
71
|
+
Enable the user to search on combobox
|
|
72
|
+
*/
|
|
73
|
+
searchable: PropTypes.bool.description('Enable the user to search on combobox'),
|
|
74
|
+
|
|
75
|
+
/** inject props to wrapper */
|
|
76
|
+
containerProps: PropTypes.object.description('inject props to wrapper'),
|
|
77
|
+
|
|
78
|
+
/** change handler */
|
|
79
|
+
onChange: PropTypes.func.description('change handler'),
|
|
80
|
+
|
|
81
|
+
/** search option label */
|
|
82
|
+
searchOptionLabel: PropTypes.string.description('search option label'),
|
|
83
|
+
|
|
84
|
+
/** placeholder for search input */
|
|
85
|
+
placeholder: PropTypes.string.description('placeholder for search input'),
|
|
86
|
+
|
|
87
|
+
/** search modal size */
|
|
88
|
+
modalSize: PropTypes.oneOf(['x-large', 'large', 'medium']).description('search modal size'),
|
|
89
|
+
|
|
90
|
+
/** search modal title */
|
|
91
|
+
modalTitle: PropTypes.string.description('search modal title'),
|
|
92
|
+
|
|
93
|
+
/** animate modal tabs */
|
|
94
|
+
tabsAnimated: PropTypes.bool.description('animate modal tabs'),
|
|
95
|
+
|
|
96
|
+
/** enable mouse event on tabs */
|
|
97
|
+
tabsEnableMouseEvents: PropTypes.bool.description('enable mouse event on tabs'),
|
|
98
|
+
|
|
99
|
+
/** tab types on modal */
|
|
100
|
+
tabType: PropTypes.oneOf([TabTypes.NORMAL, TabTypes.SUBTABS]).description('tab types on modal'),
|
|
101
|
+
|
|
102
|
+
/** data for modal tabs */
|
|
103
|
+
tabData: PropTypes.array.description('data for modal tabs'),
|
|
104
|
+
|
|
105
|
+
/** use search grid */
|
|
106
|
+
searchGrid: PropTypes.bool.description('use search grid'),
|
|
107
|
+
|
|
108
|
+
/** add search filters */
|
|
109
|
+
searchFilters: PropTypes.bool.description('add search filters'),
|
|
110
|
+
|
|
111
|
+
/** confirm modal label */
|
|
112
|
+
confirmLabel: PropTypes.string.description('confirm modal label'),
|
|
113
|
+
|
|
114
|
+
/** reject modal label */
|
|
115
|
+
rejectLabel: PropTypes.string.description('reject modal label'),
|
|
116
|
+
|
|
117
|
+
/** modal type */
|
|
118
|
+
modalType: PropTypes.oneOf(['alert', 'confirm']).description('modal type'),
|
|
119
|
+
|
|
120
|
+
/** on confirm handler */
|
|
121
|
+
onConfirmField: PropTypes.func.description('on confirm handler'),
|
|
122
|
+
|
|
123
|
+
/** on cancel handler */
|
|
124
|
+
onRejectField: PropTypes.func.description('on cancel handler'),
|
|
125
|
+
|
|
126
|
+
/** tab change handler */
|
|
127
|
+
onTabChange: PropTypes.func.description('tab change handler'),
|
|
128
|
+
|
|
129
|
+
/** app element */
|
|
130
|
+
appElement: PropTypes.string.description('app element'),
|
|
131
|
+
|
|
132
|
+
/** value for search */
|
|
133
|
+
value: PropTypes.string.description('value for search'),
|
|
134
|
+
|
|
135
|
+
/** additional info */
|
|
136
|
+
additionalInfo: PropTypes.object.description('additional info'),
|
|
137
|
+
|
|
138
|
+
/** display property */
|
|
139
|
+
displayProperty: PropTypes.string.description('display property'),
|
|
140
|
+
|
|
141
|
+
/** options for dropdown */
|
|
87
142
|
dropdownOptions: PropTypes.arrayOf(PropTypes.shape({
|
|
88
143
|
label: PropTypes.string,
|
|
89
144
|
value: PropTypes.string
|
|
90
|
-
})).description(
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
145
|
+
})).description('options for dropdown'),
|
|
146
|
+
|
|
147
|
+
/** pass down props for datagrid in modal */
|
|
148
|
+
customDataGridOptions: PropTypes.object.description('pass down props for datagrid in modal'),
|
|
149
|
+
|
|
150
|
+
/** custom props for dropdown */
|
|
151
|
+
customDropdownOptions: PropTypes.object.description('custom props for dropdown'),
|
|
152
|
+
|
|
153
|
+
/** enable lookup */
|
|
154
|
+
useLookupIndicator: PropTypes.bool.description('enable lookup')
|
|
94
155
|
};
|
|
95
|
-
DSSearchField.propTypes = props;
|
|
96
156
|
const DSSearchFieldWithSchema = describe(DSSearchField);
|
|
97
157
|
DSSearchFieldWithSchema.propTypes = props;
|
|
98
|
-
|
|
99
|
-
export {
|
|
100
|
-
DSModalSearchField,
|
|
101
|
-
DSSearchFieldWithSchema,
|
|
102
|
-
DSSearchField_default as default
|
|
103
|
-
};
|
|
104
|
-
//# sourceMappingURL=DSSearchField.js.map
|
|
158
|
+
|
|
159
|
+
export { DSSearchFieldWithSchema, DSSearchField as default };
|
|
@@ -1,74 +1,121 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
import
|
|
1
|
+
import _jsx from '@babel/runtime/helpers/esm/jsx';
|
|
2
|
+
import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
|
|
3
|
+
import 'core-js/modules/web.dom-collections.iterator.js';
|
|
4
|
+
import 'core-js/modules/esnext.async-iterator.find.js';
|
|
5
|
+
import 'core-js/modules/esnext.iterator.constructor.js';
|
|
6
|
+
import 'core-js/modules/esnext.iterator.find.js';
|
|
7
|
+
import 'core-js/modules/esnext.async-iterator.filter.js';
|
|
8
|
+
import 'core-js/modules/esnext.iterator.filter.js';
|
|
9
|
+
import 'core-js/modules/esnext.async-iterator.for-each.js';
|
|
10
|
+
import 'core-js/modules/esnext.iterator.for-each.js';
|
|
11
|
+
import { Component } from 'react';
|
|
12
|
+
import { components } from 'react-select';
|
|
13
|
+
import { convertPropToCssClassName } from '@elliemae/ds-classnames';
|
|
14
|
+
import { DSComboBox2 } from '@elliemae/ds-form';
|
|
15
|
+
import ModalSearchField from './components/ModalSearchField/ModalSearchField.js';
|
|
16
|
+
export { default as DSModalSearchField } from './components/ModalSearchField/ModalSearchField.js';
|
|
17
|
+
import AdvanceSearchOption from './components/AdvanceSearchOption/AdvanceSearchOption.js';
|
|
18
|
+
import LookupIndicator from './components/LookupIndicator/LookupIndicator.js';
|
|
19
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
20
|
+
|
|
21
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
22
|
+
|
|
23
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
9
24
|
const advanceOption = {
|
|
10
|
-
className:
|
|
11
|
-
label:
|
|
12
|
-
value:
|
|
25
|
+
className: 'advanced-search-option',
|
|
26
|
+
label: 'Advanced search',
|
|
27
|
+
value: 'search-field-advance-option',
|
|
13
28
|
isAdvance: true
|
|
14
29
|
};
|
|
15
|
-
const {
|
|
30
|
+
const {
|
|
31
|
+
cssClassName,
|
|
32
|
+
classNameElement,
|
|
33
|
+
classNameModifier,
|
|
34
|
+
classNameBlock
|
|
35
|
+
} = convertPropToCssClassName('query-builder-addon-search-field');
|
|
36
|
+
|
|
16
37
|
class DSSearchFieldImpl extends Component {
|
|
17
38
|
constructor(props) {
|
|
18
39
|
super(props);
|
|
40
|
+
|
|
19
41
|
this.onChange = () => {
|
|
20
42
|
const {
|
|
21
43
|
selected: id,
|
|
22
44
|
additionalInfo: [row]
|
|
23
45
|
} = this.state;
|
|
24
|
-
const {
|
|
46
|
+
const {
|
|
47
|
+
onChange
|
|
48
|
+
} = this.props;
|
|
25
49
|
onChange(id, row);
|
|
26
50
|
};
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
const
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
51
|
+
|
|
52
|
+
this.onChangeDropdown = value => {
|
|
53
|
+
const {
|
|
54
|
+
dropdownOptions
|
|
55
|
+
} = this.props;
|
|
56
|
+
const selected = dropdownOptions.find(op => op.value === value);
|
|
57
|
+
const {
|
|
58
|
+
onChange,
|
|
59
|
+
displayProperty
|
|
60
|
+
} = this.props;
|
|
61
|
+
if (selected) onChange(value, {
|
|
62
|
+
[displayProperty]: selected.label
|
|
63
|
+
});
|
|
33
64
|
};
|
|
34
|
-
|
|
65
|
+
|
|
66
|
+
this.onKeyDown = event => {
|
|
35
67
|
setTimeout(() => {
|
|
36
|
-
const {
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
68
|
+
const {
|
|
69
|
+
keycode
|
|
70
|
+
} = event;
|
|
71
|
+
const {
|
|
72
|
+
value
|
|
73
|
+
} = this.props;
|
|
74
|
+
if (value && keycode === 13) this.handleCloseModal();
|
|
40
75
|
}, 0);
|
|
41
76
|
};
|
|
77
|
+
|
|
42
78
|
this.handleSelect = (selectedRow, rows) => {
|
|
43
|
-
let selected = selectedRow;
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
if (selected.id)
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
selected
|
|
50
|
-
|
|
51
|
-
|
|
79
|
+
let selected = selectedRow; // fix new datagrid callback format
|
|
80
|
+
|
|
81
|
+
if (!selected) return;
|
|
82
|
+
if (selected.id) selected = selected.id;else if (selected[0] && selected[0].id) selected = selected[0].id;
|
|
83
|
+
const additionalInfo = rows.filter(row => selected === row.id);
|
|
84
|
+
this.setState({
|
|
85
|
+
selected,
|
|
86
|
+
additionalInfo
|
|
87
|
+
});
|
|
52
88
|
};
|
|
89
|
+
|
|
53
90
|
this.handleConfirm = () => {
|
|
54
|
-
const {
|
|
91
|
+
const {
|
|
92
|
+
onConfirmField
|
|
93
|
+
} = this.props;
|
|
55
94
|
this.onChange();
|
|
56
95
|
this.handleCloseModal();
|
|
57
96
|
onConfirmField();
|
|
58
97
|
};
|
|
98
|
+
|
|
59
99
|
this.handleReject = () => {
|
|
60
|
-
const {
|
|
100
|
+
const {
|
|
101
|
+
onRejectField
|
|
102
|
+
} = this.props;
|
|
61
103
|
this.handleCloseModal();
|
|
62
104
|
onRejectField();
|
|
63
105
|
};
|
|
106
|
+
|
|
64
107
|
this.handleOpenModal = () => {
|
|
65
|
-
this.setState({
|
|
108
|
+
this.setState({
|
|
109
|
+
openModal: true
|
|
110
|
+
});
|
|
66
111
|
};
|
|
112
|
+
|
|
67
113
|
this.handleCloseModal = () => this.setState({
|
|
68
114
|
openModal: false,
|
|
69
115
|
selected: [],
|
|
70
116
|
additionalInfo: []
|
|
71
117
|
});
|
|
118
|
+
|
|
72
119
|
advanceOption.label = props.searchOptionLabel;
|
|
73
120
|
this.state = {
|
|
74
121
|
openModal: false,
|
|
@@ -76,6 +123,7 @@ class DSSearchFieldImpl extends Component {
|
|
|
76
123
|
additionalInfo: []
|
|
77
124
|
};
|
|
78
125
|
}
|
|
126
|
+
|
|
79
127
|
render() {
|
|
80
128
|
const {
|
|
81
129
|
placeholder,
|
|
@@ -103,81 +151,84 @@ class DSSearchFieldImpl extends Component {
|
|
|
103
151
|
containerProps,
|
|
104
152
|
searchable
|
|
105
153
|
} = this.props;
|
|
106
|
-
const {
|
|
154
|
+
const {
|
|
155
|
+
openModal
|
|
156
|
+
} = this.state;
|
|
107
157
|
let options = [...dropdownOptions, advanceOption];
|
|
108
158
|
let displayValue = !value ? placeholder : value;
|
|
109
|
-
if (additionalInfo && additionalInfo[displayProperty])
|
|
110
|
-
|
|
111
|
-
|
|
159
|
+
if (additionalInfo && additionalInfo[displayProperty]) displayValue = additionalInfo[displayProperty];
|
|
160
|
+
const defaultoption = {
|
|
161
|
+
value,
|
|
162
|
+
label: displayValue
|
|
163
|
+
};
|
|
112
164
|
const customComponents = {
|
|
113
|
-
Option:
|
|
114
|
-
|
|
165
|
+
Option: props => {
|
|
166
|
+
// return <AdvanceSearchOption onAdvanceSearchClick={this.handleOpenModal} />
|
|
167
|
+
props.innerProps.className = 'em-ds-combobox__option';
|
|
168
|
+
|
|
115
169
|
if (props.data.isAdvance) {
|
|
116
170
|
props.innerProps.onClick = this.handleOpenModal;
|
|
117
|
-
props.innerProps.className =
|
|
171
|
+
props.innerProps.className = "".concat(props.innerProps.className, " ").concat(advanceOption.className);
|
|
118
172
|
}
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
});
|
|
173
|
+
|
|
174
|
+
return /*#__PURE__*/jsx(components.Option, _objectSpread({}, props));
|
|
122
175
|
},
|
|
123
176
|
IndicatorSeparator: () => null,
|
|
124
|
-
NoOptionsMessage:
|
|
177
|
+
NoOptionsMessage: props => /*#__PURE__*/jsx(AdvanceSearchOption, _objectSpread({
|
|
125
178
|
advanceSearchLabel: searchOptionLabel,
|
|
126
|
-
onAdvanceSearchClick: this.handleOpenModal
|
|
127
|
-
|
|
128
|
-
})
|
|
179
|
+
onAdvanceSearchClick: this.handleOpenModal
|
|
180
|
+
}, props))
|
|
129
181
|
};
|
|
182
|
+
|
|
130
183
|
if (useLookupIndicator) {
|
|
131
184
|
customComponents.DropdownIndicator = () => null;
|
|
132
185
|
}
|
|
133
|
-
|
|
186
|
+
|
|
187
|
+
if (!options.find(o => o.value === defaultoption.value)) {
|
|
134
188
|
options = [defaultoption, ...options];
|
|
135
189
|
}
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
className:
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
190
|
+
|
|
191
|
+
return /*#__PURE__*/jsxs("div", _objectSpread(_objectSpread({}, containerProps), {}, {
|
|
192
|
+
className: "".concat(cssClassName),
|
|
193
|
+
children: [/*#__PURE__*/_jsx("div", {
|
|
194
|
+
className: "".concat(classNameBlock('container-selector'))
|
|
195
|
+
}, void 0, /*#__PURE__*/jsx(DSComboBox2, _objectSpread({
|
|
196
|
+
className: "".concat(classNameElement('dropdown-field-selector')),
|
|
197
|
+
components: customComponents,
|
|
198
|
+
onChange: this.onChangeDropdown,
|
|
199
|
+
onKeyDown: this.onKeyDown,
|
|
200
|
+
options: options,
|
|
201
|
+
value: value,
|
|
202
|
+
searchable: searchable
|
|
203
|
+
}, customDropdownOptions)), useLookupIndicator && /*#__PURE__*/_jsx(LookupIndicator, {
|
|
204
|
+
buttonType: "text",
|
|
205
|
+
className: "".concat(classNameElement('btn-selector'), " ").concat(!value ? classNameModifier('btn-placeholder', 'btn-selector') : ''),
|
|
206
|
+
onAdvanceSearchClick: this.handleOpenModal
|
|
207
|
+
})), /*#__PURE__*/_jsx(ModalSearchField, {
|
|
208
|
+
appElement: appElement,
|
|
209
|
+
confirmLabel: confirmLabel,
|
|
210
|
+
customDataGridOptions: customDataGridOptions,
|
|
211
|
+
handleSelect: this.handleSelect,
|
|
212
|
+
isOpen: openModal,
|
|
213
|
+
modalSize: modalSize,
|
|
214
|
+
modalTitle: modalTitle,
|
|
215
|
+
modalType: modalType,
|
|
216
|
+
onClose: this.handleCloseModal,
|
|
217
|
+
onConfirmField: this.handleConfirm,
|
|
218
|
+
onRejectField: this.handleReject,
|
|
219
|
+
onTabChange: onTabChange,
|
|
220
|
+
placeholder: placeholder,
|
|
221
|
+
rejectLabel: rejectLabel,
|
|
222
|
+
searchFilters: searchFilters,
|
|
223
|
+
searchGrid: searchGrid,
|
|
224
|
+
tabData: tabData,
|
|
225
|
+
tabsAnimated: tabsAnimated,
|
|
226
|
+
tabsEnableMouseEvents: tabsEnableMouseEvents,
|
|
227
|
+
tabType: tabType
|
|
228
|
+
})]
|
|
175
229
|
}));
|
|
176
230
|
}
|
|
231
|
+
|
|
177
232
|
}
|
|
178
|
-
|
|
179
|
-
export {
|
|
180
|
-
DSModalSearchField,
|
|
181
|
-
DSSeachFieldImpl_default as default
|
|
182
|
-
};
|
|
183
|
-
//# sourceMappingURL=DSSeachFieldImpl.js.map
|
|
233
|
+
|
|
234
|
+
export { DSSearchFieldImpl as default };
|
|
@@ -1,15 +1,19 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import DSButton from
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
1
|
+
import _jsx from '@babel/runtime/helpers/esm/jsx';
|
|
2
|
+
import 'react';
|
|
3
|
+
import DSButton from '@elliemae/ds-button';
|
|
4
|
+
|
|
5
|
+
const AdvanceSearchOption = _ref => {
|
|
6
|
+
let {
|
|
7
|
+
advanceSearchLabel = 'Advanced Search',
|
|
8
|
+
onAdvanceSearchClick = () => null
|
|
9
|
+
} = _ref;
|
|
10
|
+
return /*#__PURE__*/_jsx(DSButton, {
|
|
11
|
+
className: "advance-search-option-btn",
|
|
12
|
+
labelText: advanceSearchLabel,
|
|
13
|
+
onClick: onAdvanceSearchClick,
|
|
14
|
+
tabIndex: -1,
|
|
15
|
+
type: "button"
|
|
16
|
+
});
|
|
14
17
|
};
|
|
15
|
-
|
|
18
|
+
|
|
19
|
+
export { AdvanceSearchOption as default };
|
|
@@ -1,21 +1,27 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import { Search } from
|
|
4
|
-
import DSButton from
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
1
|
+
import _jsx from '@babel/runtime/helpers/esm/jsx';
|
|
2
|
+
import 'react';
|
|
3
|
+
import { Search } from '@elliemae/ds-icons';
|
|
4
|
+
import DSButton from '@elliemae/ds-button';
|
|
5
|
+
|
|
6
|
+
var _Search;
|
|
7
|
+
|
|
8
|
+
const LookupIndicator = _ref => {
|
|
9
|
+
let {
|
|
10
|
+
onAdvanceSearchClick = () => null,
|
|
11
|
+
className = ''
|
|
12
|
+
} = _ref;
|
|
13
|
+
return /*#__PURE__*/_jsx(DSButton, {
|
|
14
|
+
"data-testid": "ds-searchfield-search-btn",
|
|
15
|
+
buttonType: "secondary",
|
|
16
|
+
className: className,
|
|
17
|
+
icon: _Search || (_Search = /*#__PURE__*/_jsx(Search, {})),
|
|
18
|
+
iconSize: "s",
|
|
19
|
+
onClick: e => {
|
|
20
|
+
e.stopPropagation();
|
|
21
|
+
e.preventDefault();
|
|
22
|
+
onAdvanceSearchClick();
|
|
23
|
+
}
|
|
24
|
+
});
|
|
20
25
|
};
|
|
21
|
-
|
|
26
|
+
|
|
27
|
+
export { LookupIndicator as default };
|