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

EUI-7256-organisation search with postcode #696

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
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
10 changes: 9 additions & 1 deletion api/organisation/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,9 @@ function filterOrganisations(orgs: any, searchFilter: string): any[] {
return orgs.filter((org: any) => {
if (org) {
for (const field of TEXT_FIELDS_TO_CHECK) {
if (textFieldMatches(org, field, searchFilter)) {
if (field === 'postCode' && postCodeMatches(org, searchFilter)) {
return true;
} else if (textFieldMatches(org, field, searchFilter)) {
return true;
}
}
Expand All @@ -198,6 +200,12 @@ function filterOrganisations(orgs: any, searchFilter: string): any[] {
});
}

function postCodeMatches(org: any, filter: string): boolean {
return org['contactInformation'].map(({postCode}) => {
return postCode && postCode.split(' ').join('').toLowerCase()
}).some(element => element && element.indexOf(filter.split(' ').join('')) >= 0);
}

function createPaginatedResponse(paginationParameters: any, filteredOrganisations: any) {
const startIndex = (paginationParameters.page_number - 1) * paginationParameters.page_size;
let endIndex = startIndex + paginationParameters.page_size;
Expand Down