Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

draft: boost display fields in solr query #1676

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions resources/config/gis-client-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ var clientConfig = {
defaultUseViewBox: true,
useNominatim: true,
groupByCategory: true,
boostDisplayedFields: false,
useSolrHighlighting: true,
delay: 1000,
minChars: 3,
Expand Down
11 changes: 10 additions & 1 deletion src/components/MultiSearch/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,16 @@ export const MultiSearch: React.FC<MultiSearchProps> = ({
};

if (q.fieldList) {
solrQueryConfig.qf = q.fieldList;
let qf = q.fieldList;
if (q.displayTemplates && ClientConfiguration.search?.boostDisplayedFields) {
// boost all fields which are part of the display template
qf = q.fieldList
.split(' ')
// todo: do we want do require a match for all displayTempaltes (every) or for any (some)
.map(field => q.displayTemplates?.some(dt => dt.indexOf(field) >= 0) ? `${field}^3` : field)
.join(' ');
}
solrQueryConfig.qf = qf;
} else {
solrQueryConfig.qf = ClientConfiguration.search?.coreName ?? 'search';
}
Expand Down
1 change: 1 addition & 0 deletions src/global.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ declare module 'clientConfig' {
solrBasePath?: string;
useNominatim?: boolean;
groupByCategory?: boolean;
boostDisplayedFields?: boolean;
useSolrHighlighting?: boolean;
defaultUseViewBox?: boolean;
delay?: number;
Expand Down
9 changes: 8 additions & 1 deletion src/utils/generateSolrQuery.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import _groupBy from 'lodash/groupBy';
import _isNil from 'lodash/isNil';
import Map from 'ol/Map';

import {
Expand All @@ -18,6 +19,7 @@ export interface SolrQueryProps {
type SolrQuery = {
query: string;
fieldList?: string;
displayTemplates?: string[];
};

/**
Expand Down Expand Up @@ -45,11 +47,16 @@ export const generateSolrQuery = ({
.filter(l => isWmsLayer(l))
.map(l => (l as WmsLayer).getSource()?.getParams()?.LAYERS);

const displayTemplates = layerList
.map(l => (l.get('searchConfig') as SearchConfig)?.displayTemplate)
.filter(d => d) as string[];

const queriesPerQueryFields = layerNames.map(layerName => `(featureType:"${layerName}" AND (${generateSearchQuery(parts)}))`);
const query = queriesPerQueryFields.join(' OR ');
searchQueries.push({
query: query,
fieldList: key !== 'undefined' ? key.split(',').join(' ') : undefined
fieldList: key !== 'undefined' ? key.split(',').join(' ') : undefined,
displayTemplates: displayTemplates
});
});

Expand Down