(search: SandDance.searchExpression.Search)
| 137 | dataBrowserNullMessages[DataScopeId.SelectedData] = strings.labelDataNullSelection; |
| 138 | |
| 139 | function createInputSearch(search: SandDance.searchExpression.Search) { |
| 140 | const groups = SandDance.searchExpression.ensureSearchExpressionGroupArray(search); |
| 141 | const dialogSearch: InputSearchExpressionGroup[] = groups.map((group, groupIndex) => { |
| 142 | return { |
| 143 | key: groupIndex, |
| 144 | ...group, |
| 145 | expressions: group.expressions.map((ex, i) => { |
| 146 | const ex2: InputSearchExpression = { |
| 147 | key: i, |
| 148 | ...ex, |
| 149 | }; |
| 150 | return ex2; |
| 151 | }), |
| 152 | }; |
| 153 | }); |
| 154 | return dialogSearch; |
| 155 | } |
| 156 | |
| 157 | function _Explorer(props: Props) { |
| 158 | class __Explorer extends base.react.Component<Props, State> { |
no outgoing calls
no test coverage detected