-
Notifications
You must be signed in to change notification settings - Fork 4
/
CustomListSearch.tsx
229 lines (205 loc) · 6.67 KB
/
CustomListSearch.tsx
1
2
3
4
5
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
import * as React from "react";
import { Panel } from "library-simplified-reusable-components";
import { AdvancedSearchQuery, LanguagesData, LibraryData } from "../interfaces";
import { CustomListEditorSearchParams } from "../reducers/customListEditor";
import AdvancedSearchBuilder from "./AdvancedSearchBuilder";
import CustomListSearchQueryViewer from "./CustomListSearchQueryViewer";
import EditableInput from "./EditableInput";
export interface CustomListSearchProps {
autoUpdate?: boolean;
entryPoints: string[];
isOwner?: boolean;
languages: LanguagesData;
library: LibraryData;
listId: string;
searchParams: CustomListEditorSearchParams;
showAutoUpdate?: boolean;
startingTitle?: string;
updateAutoUpdate?: (value: boolean) => void;
updateSearchParam?: (name: string, value) => void;
search: () => void;
addAdvSearchQuery?: (builderName: string, query: AdvancedSearchQuery) => void;
updateClearFiltersFlag?: (builderName: string, value: boolean) => void;
updateAdvSearchQueryBoolean?: (
builderName: string,
id: string,
bool: string
) => void;
moveAdvSearchQuery?: (
builderName: string,
id: string,
targetId: string
) => void;
removeAdvSearchQuery?: (builderName: string, id: string) => void;
selectAdvSearchQuery?: (builderName: string, id: string) => void;
}
const sorts = [
{ value: null, label: "Relevance" },
{ value: "title", label: "Title" },
{ value: "author", label: "Author" },
];
const CustomListSearch = ({
autoUpdate,
entryPoints,
isOwner,
library,
listId,
searchParams,
showAutoUpdate,
startingTitle,
updateAutoUpdate,
updateSearchParam,
search,
addAdvSearchQuery,
updateClearFiltersFlag,
updateAdvSearchQueryBoolean,
moveAdvSearchQuery,
removeAdvSearchQuery,
selectAdvSearchQuery,
}: CustomListSearchProps) => {
React.useEffect(() => {
if (startingTitle) {
addAdvSearchQuery?.("include", {
key: "title",
op: "eq",
value: startingTitle,
});
search?.();
}
}, []);
const readOnly = !isOwner;
const entryPointsWithAll = entryPoints.includes("All")
? entryPoints
: ["All", ...entryPoints];
const selectedEntryPoint = searchParams.entryPoint.toLowerCase();
const renderAdvancedSearchBuilder = (name: string) => {
const builder = searchParams.advanced[name];
return (
<AdvancedSearchBuilder
isOwner={isOwner}
name={name}
query={builder.query}
selectedQueryId={builder.selectedQueryId}
addQuery={addAdvSearchQuery}
updateClearFiltersFlag={updateClearFiltersFlag}
updateQueryBoolean={updateAdvSearchQueryBoolean}
moveQuery={moveAdvSearchQuery}
removeQuery={removeAdvSearchQuery}
selectQuery={selectAdvSearchQuery}
/>
);
};
const searchForm = (
<div className="search-titles">
<div className="entry-points">
<span>Search for:</span>
<div className="entry-points-selection">
{entryPointsWithAll.map((entryPoint) => (
<EditableInput
disabled={readOnly}
key={entryPoint}
type="radio"
name="entry-points-selection"
checked={entryPoint.toLowerCase() === selectedEntryPoint}
label={entryPoint}
value={entryPoint}
onChange={() => updateSearchParam?.("entryPoint", entryPoint)}
/>
))}
</div>
</div>
<div className="search-options">
<span>Sort by:</span>
<div className="search-options-selection">
{sorts.map(({ value, label }) => (
<EditableInput
disabled={readOnly}
key={value}
type="radio"
name="sort-selection"
value={value}
label={label}
checked={value === searchParams.sort}
onChange={() => updateSearchParam?.("sort", value)}
/>
))}
</div>
<aside>
Results can be sorted by attributes that are enabled in this library's
Lanes & Filters configuration. Selecting "Title" or "Author" will
automatically filter out less relevant results.
</aside>
</div>
<div className="search-builders">
<Panel
headerText="Works to include"
id="search-filters-include"
openByDefault={true}
content={renderAdvancedSearchBuilder("include")}
/>
<Panel
headerText="Works to exclude"
id="search-filters-exclude"
openByDefault={false}
content={renderAdvancedSearchBuilder("exclude")}
/>
</div>
<div key="query-viewer">
<CustomListSearchQueryViewer
library={library?.short_name}
searchParams={searchParams}
/>
</div>
{showAutoUpdate && (
<div className="auto-update">
<span>Use search to:</span>
<div className="auto-update-selection">
<div>
<EditableInput
disabled={readOnly || !!listId}
type="radio"
name="auto-update"
checked={autoUpdate}
label={"Automatically update this list"}
onChange={() => updateAutoUpdate?.(true)}
/>
<aside>
The system will periodically execute this search and
automatically update the list with the results.
{!readOnly &&
"The search results below represent the titles that would be in the list if it were updated now, but the actual contents of the list will change over time."}
</aside>
</div>
<div>
<EditableInput
disabled={readOnly || !!listId}
type="radio"
name="auto-update"
checked={!autoUpdate}
label={"Manually select titles"}
onChange={() => updateAutoUpdate?.(false)}
/>
<aside>
The list entries are manually selected.{" "}
{!readOnly &&
"Move the desired titles from the search results column on the left to the column on the right to add them to the list. "}
Titles may be removed from the list automatically if they become
unavailable, but the list is otherwise fixed.
</aside>
</div>
</div>
</div>
)}
</div>
);
return (
<Panel
headerText="Search for titles"
id="search-titles"
openByDefault={true}
onEnter={search}
content={searchForm}
/>
);
};
export default CustomListSearch;