@studyportals/fawkes 8.0.2-1 → 8.0.2-11
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/dist/src/enums/FilterCombinations.d.ts +2 -0
- package/dist/src/enums/FilterCombinations.js +2 -0
- package/dist/src/programmes/ProgrammesBaseIndexabilityPolicy.js +0 -1
- package/dist/src/programmes/policies/AttendanceArea.js +1 -1
- package/dist/src/programmes/policies/ContinentDuration.js +3 -3
- package/dist/src/programmes/policies/ContinentFormat.js +2 -2
- package/dist/src/programmes/policies/ContinentSpecialProgrammes.js +1 -1
- package/dist/src/programmes/policies/DegreeAreaTuitionFee.js +2 -2
- package/dist/src/programmes/policies/DisciplineSpecialProgrammes.js +2 -2
- package/dist/src/programmes/rules/MinimumAmountOfResultsRule.js +6 -0
- package/dist/src/sitemap-generator/BaseSitemapUrlGeneratorManager.js +0 -1
- package/dist/src/sitemap-generator/ProgrammesSitemapUrlGeneratorManager.js +113 -55
- package/package.json +1 -1
|
@@ -15,6 +15,8 @@ export declare enum FilterCombinations {
|
|
|
15
15
|
COUNTRY_DURATION_DEGREE = "countryDurationDegree",
|
|
16
16
|
COUNTRY_SPECIAL_PROGRAMMES = "countrySpecialProgrammes",
|
|
17
17
|
CONTINENT_FORMAT = "continentFormat",
|
|
18
|
+
CONTINENT_DURATION = "continentDuration",
|
|
19
|
+
CONTINENT_SPECIAL_PROGRAMMES = "continentSpecialProgrammes",
|
|
18
20
|
DISCIPLINE_AREA = "disciplineArea",
|
|
19
21
|
DISCIPLINE_ATTENDANCE = "disciplineAttendance",
|
|
20
22
|
DISCIPLINE_COUNTRY = "disciplineCountry",
|
|
@@ -16,6 +16,8 @@ export var FilterCombinations;
|
|
|
16
16
|
FilterCombinations["COUNTRY_DURATION_DEGREE"] = "countryDurationDegree";
|
|
17
17
|
FilterCombinations["COUNTRY_SPECIAL_PROGRAMMES"] = "countrySpecialProgrammes";
|
|
18
18
|
FilterCombinations["CONTINENT_FORMAT"] = "continentFormat";
|
|
19
|
+
FilterCombinations["CONTINENT_DURATION"] = "continentDuration";
|
|
20
|
+
FilterCombinations["CONTINENT_SPECIAL_PROGRAMMES"] = "continentSpecialProgrammes";
|
|
19
21
|
FilterCombinations["DISCIPLINE_AREA"] = "disciplineArea";
|
|
20
22
|
FilterCombinations["DISCIPLINE_ATTENDANCE"] = "disciplineAttendance";
|
|
21
23
|
FilterCombinations["DISCIPLINE_COUNTRY"] = "disciplineCountry";
|
|
@@ -28,7 +28,6 @@ export class ProgrammesBaseIndexabilityPolicy extends BaseSeoIndexabilityPolicy
|
|
|
28
28
|
else {
|
|
29
29
|
result = await rule.forSitemapGenerator(filterKeyValues);
|
|
30
30
|
}
|
|
31
|
-
// console.log("RuleName: " + rule.getName() + " Rule result: " + result); // eslint-disable-line
|
|
32
31
|
if (!result) {
|
|
33
32
|
return false;
|
|
34
33
|
}
|
|
@@ -14,7 +14,7 @@ export class AttendanceArea extends ProgrammesBaseIndexabilityPolicy {
|
|
|
14
14
|
new SingleValueSelectedForFilterRule(FilterKey.AREA),
|
|
15
15
|
new SingleValueSelectedForFilterRule(FilterKey.COUNTRY),
|
|
16
16
|
new SingleValueSelectedForFilterRule(FilterKey.DELIVERY_METHOD),
|
|
17
|
-
new OnlyFiltersSelectedRule([FilterKey.AREA, FilterKey.DELIVERY_METHOD]),
|
|
17
|
+
new OnlyFiltersSelectedRule([FilterKey.AREA, FilterKey.DELIVERY_METHOD, FilterKey.COUNTRY]),
|
|
18
18
|
new OnlineAttendanceRule()
|
|
19
19
|
];
|
|
20
20
|
constructor(dependencies) {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FilterKey } from '@studyportals/search-filters/server-side';
|
|
1
|
+
import { DurationFilterOptionValue, FilterKey } from '@studyportals/search-filters/server-side';
|
|
2
2
|
import { OnlyFiltersSelectedRule } from '../../common/rules/OnlyFiltersSelectedRule';
|
|
3
3
|
import { SingleValueSelectedForFilterRule } from '../../common/rules/SingleValueSelectedForFilterRule';
|
|
4
4
|
import { FilterCombinations } from '../../enums/FilterCombinations';
|
|
@@ -22,7 +22,7 @@ export class ContinentDuration extends ProgrammesBaseIndexabilityPolicy {
|
|
|
22
22
|
const durationFragments = DurationPresenter.getInstance().getFragments();
|
|
23
23
|
const continentFragments = ContinentPresenter.getInstance().getFragments();
|
|
24
24
|
const paths = [];
|
|
25
|
-
const allowedDurationIds = [
|
|
25
|
+
const allowedDurationIds = [DurationFilterOptionValue.ONE_YEAR];
|
|
26
26
|
const allowedDurations = durationFragments.filter(duration => allowedDurationIds.includes(duration.id));
|
|
27
27
|
for (const pageNumber of this.indexablePageNumbers) {
|
|
28
28
|
for (const duration of allowedDurations) {
|
|
@@ -41,6 +41,6 @@ export class ContinentDuration extends ProgrammesBaseIndexabilityPolicy {
|
|
|
41
41
|
return paths;
|
|
42
42
|
}
|
|
43
43
|
get filterCombination() {
|
|
44
|
-
return FilterCombinations.
|
|
44
|
+
return FilterCombinations.CONTINENT_DURATION;
|
|
45
45
|
}
|
|
46
46
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FilterKey } from '@studyportals/search-filters/server-side';
|
|
1
|
+
import { FilterKey, FormatFilterOptionValue } from '@studyportals/search-filters/server-side';
|
|
2
2
|
import { OnlyFiltersSelectedRule } from '../../common/rules/OnlyFiltersSelectedRule';
|
|
3
3
|
import { SingleValueSelectedForFilterRule } from '../../common/rules/SingleValueSelectedForFilterRule';
|
|
4
4
|
import { FilterCombinations } from '../../enums/FilterCombinations';
|
|
@@ -24,7 +24,7 @@ export class ContinentFormat extends ProgrammesBaseIndexabilityPolicy {
|
|
|
24
24
|
const formatFragments = FormatPresenter.getInstance().getFragments();
|
|
25
25
|
const continentFragments = ContinentPresenter.getInstance().getFragments();
|
|
26
26
|
const paths = [];
|
|
27
|
-
const allowedFormatIds = [
|
|
27
|
+
const allowedFormatIds = [FormatFilterOptionValue.PART_TIME];
|
|
28
28
|
const allowedFormats = formatFragments.filter(format => allowedFormatIds.includes(format.id));
|
|
29
29
|
for (const pageNumber of this.indexablePageNumbers) {
|
|
30
30
|
for (const format of allowedFormats) {
|
|
@@ -9,13 +9,13 @@ import { TuitionFeePresenter } from '../../presenters/TuitionFeePresenter';
|
|
|
9
9
|
export class DegreeAreaTuitionFee extends ProgrammesBaseIndexabilityPolicy {
|
|
10
10
|
name = 'Degree Area Tuition fee Policy';
|
|
11
11
|
description = 'Controls indexing of pages filtered by geographic areas and tuition fees.';
|
|
12
|
-
filterKeys = [FilterKey.AREA, FilterKey.TUITION_FEE];
|
|
12
|
+
filterKeys = [FilterKey.AREA, FilterKey.DEGREE_TYPE, FilterKey.TUITION_FEE];
|
|
13
13
|
rules = [
|
|
14
14
|
new SingleValueSelectedForFilterRule(FilterKey.AREA),
|
|
15
15
|
new SingleValueSelectedForFilterRule(FilterKey.COUNTRY),
|
|
16
16
|
new SingleValueSelectedForFilterRule(FilterKey.DEGREE_TYPE),
|
|
17
17
|
new SingleValueSelectedForFilterRule(FilterKey.TUITION_FEE),
|
|
18
|
-
new OnlyFiltersSelectedRule([FilterKey.AREA, FilterKey.DEGREE_TYPE, FilterKey.TUITION_FEE])
|
|
18
|
+
new OnlyFiltersSelectedRule([FilterKey.AREA, FilterKey.DEGREE_TYPE, FilterKey.TUITION_FEE, FilterKey.COUNTRY])
|
|
19
19
|
];
|
|
20
20
|
constructor(dependencies) {
|
|
21
21
|
super(dependencies);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FilterKey } from '@studyportals/search-filters/server-side';
|
|
1
|
+
import { FilterKey, SpecialProgrammesFilterOptionValue } from '@studyportals/search-filters/server-side';
|
|
2
2
|
import { OnlyFiltersSelectedRule } from '../../common/rules/OnlyFiltersSelectedRule';
|
|
3
3
|
import { SingleValueSelectedForFilterRule } from '../../common/rules/SingleValueSelectedForFilterRule';
|
|
4
4
|
import { FilterCombinations } from '../../enums/FilterCombinations';
|
|
@@ -22,7 +22,7 @@ export class DisciplineSpecialProgrammes extends ProgrammesBaseIndexabilityPolic
|
|
|
22
22
|
const specialProgrammesFragments = SpecialProgrammesPresenter.getInstance().getFragments();
|
|
23
23
|
const disciplineFragments = DisciplinePresenter.getInstance().getFragments();
|
|
24
24
|
const paths = [];
|
|
25
|
-
const validSpecialProgrammesIds = [
|
|
25
|
+
const validSpecialProgrammesIds = [SpecialProgrammesFilterOptionValue.ERASMUS_MUNDUS];
|
|
26
26
|
const validSpecialProgrammes = specialProgrammesFragments.filter(specialProgramme => validSpecialProgrammesIds.includes(specialProgramme.id));
|
|
27
27
|
for (const pageNumber of this.indexablePageNumbers) {
|
|
28
28
|
for (const specialProgramme of validSpecialProgrammes) {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { DependencyMissingError } from '../../errors/DependencyMissingError';
|
|
2
|
+
import { FilterKey } from '@studyportals/search-filters/server-side';
|
|
2
3
|
export class MinimumAmountOfResultsRule {
|
|
3
4
|
minimumResultsCount = 7;
|
|
4
5
|
maximumPageSize = 20;
|
|
@@ -16,6 +17,11 @@ export class MinimumAmountOfResultsRule {
|
|
|
16
17
|
throw new DependencyMissingError('SearchApiClient');
|
|
17
18
|
}
|
|
18
19
|
const count = await this.searchApiClient.getCount(filterKeyValues);
|
|
20
|
+
if (filterKeyValues.has(FilterKey.DURATION)) {
|
|
21
|
+
const filterKey = FilterKey.DURATION;
|
|
22
|
+
const filterValue = filterKeyValues.get(filterKey);
|
|
23
|
+
console.log(`DEBUG: Duration filter applied alone, filter key: ${filterKey}, filter value: ${filterValue} found results: ${count}`); // eslint-disable-line no-console
|
|
24
|
+
}
|
|
19
25
|
return count >= (pageNumber - 1) * this.maximumPageSize + this.minimumResultsCount;
|
|
20
26
|
}
|
|
21
27
|
forSitemapGenerator() {
|
|
@@ -3,7 +3,6 @@ export class BaseSitemapUrlGeneratorManager {
|
|
|
3
3
|
async generateUrls() {
|
|
4
4
|
const map = new Map();
|
|
5
5
|
for (const policy of this.policies) {
|
|
6
|
-
console.debug(`Generating sitemap urls for policy: ${policy.filterCombination}`); // eslint-disable-line no-console
|
|
7
6
|
const filterCombination = policy.filterCombination;
|
|
8
7
|
const urls = await policy.generateSitemapUrls();
|
|
9
8
|
console.debug(`Generated ${urls.length} urls for policy: ${filterCombination}`); // eslint-disable-line no-console
|
|
@@ -1,6 +1,64 @@
|
|
|
1
1
|
import { DependencyTypes } from '../enums/DependencyTypes';
|
|
2
2
|
import { BaseSitemapUrlGeneratorManager } from './BaseSitemapUrlGeneratorManager';
|
|
3
|
-
import {
|
|
3
|
+
import {
|
|
4
|
+
// Area,
|
|
5
|
+
// Attendance,
|
|
6
|
+
// AttendanceDegree,
|
|
7
|
+
Continent,
|
|
8
|
+
// ContinentTuitionFee,
|
|
9
|
+
// Country,
|
|
10
|
+
// CountryAttendance,
|
|
11
|
+
// Discipline,
|
|
12
|
+
// SpecialProgrammes,
|
|
13
|
+
// TuitionFee,
|
|
14
|
+
// Unfiltered,
|
|
15
|
+
// CountryAttendanceDegree,
|
|
16
|
+
// CountryDuration,
|
|
17
|
+
// CountryDurationDegree,
|
|
18
|
+
// CountryEducationalForm,
|
|
19
|
+
// CountryFormat,
|
|
20
|
+
// CountryTuitionFee,
|
|
21
|
+
// DegreeAttendanceDiscipline,
|
|
22
|
+
// DegreeCountryAttendance,
|
|
23
|
+
// DegreeCountryDiscipline,
|
|
24
|
+
// DegreeCountryTuitionFee,
|
|
25
|
+
Format,
|
|
26
|
+
// DisciplineAttendance,
|
|
27
|
+
// DisciplineContinent,
|
|
28
|
+
// DisciplineCountry,
|
|
29
|
+
// DisciplineCountryEducationalForm,
|
|
30
|
+
// DisciplineDegree,
|
|
31
|
+
// DisciplineDuration,
|
|
32
|
+
// DisciplineEducationalForm,
|
|
33
|
+
// DisciplineFormat,
|
|
34
|
+
// DisciplineTuitionFee,
|
|
35
|
+
// DisciplineTuitionFeeAttendance,
|
|
36
|
+
// CountryDegree,
|
|
37
|
+
// DegreeFormat,
|
|
38
|
+
// DegreeContinent,
|
|
39
|
+
// DegreeAttendanceTuitionFee,
|
|
40
|
+
// DegreeArea,
|
|
41
|
+
// DegreeTuitionFee,
|
|
42
|
+
// AttendanceTuitionFee,
|
|
43
|
+
Duration,
|
|
44
|
+
// AttendanceDuration,
|
|
45
|
+
DegreeAreaTuitionFee,
|
|
46
|
+
// DisciplineContinentAttendance,
|
|
47
|
+
// DegreeContinentTuitionFee,
|
|
48
|
+
// AttendanceFormat,
|
|
49
|
+
// ContinentFormat,
|
|
50
|
+
// AttendanceContinent,
|
|
51
|
+
// DegreeDuration,
|
|
52
|
+
ContinentSpecialProgrammes,
|
|
53
|
+
// CountrySpecialProgrammes,
|
|
54
|
+
// AttendanceArea,
|
|
55
|
+
// DegreeFormatTuitionFee,
|
|
56
|
+
// ContinentDuration,
|
|
57
|
+
// DegreeAttendanceFormat,
|
|
58
|
+
// DisciplineCountryAttendance,
|
|
59
|
+
// DisciplineCountryFormat,
|
|
60
|
+
// DegreeSpecialProgrammes,
|
|
61
|
+
} from '../programmes/policies';
|
|
4
62
|
import { FilterKey } from '@studyportals/search-filters/server-side';
|
|
5
63
|
import { AreaPresenter } from '../presenters/AreaPresenter';
|
|
6
64
|
import { AttendancePresenter } from '../presenters/AttendancePresenter';
|
|
@@ -13,7 +71,7 @@ import { SpecialProgrammesPresenter } from '../presenters/SpecialProgrammesPrese
|
|
|
13
71
|
import { DurationPresenter } from '../presenters/DurationPresenter';
|
|
14
72
|
import { EducationalFormPresenter } from '../presenters/EducationalFormPresenter';
|
|
15
73
|
import { FormatPresenter } from '../presenters/FormatPresenter';
|
|
16
|
-
import { Degree } from '../programmes/policies/Degree';
|
|
74
|
+
// import { Degree } from '../programmes/policies/Degree';
|
|
17
75
|
export class ProgrammesSitemapUrlGeneratorManager extends BaseSitemapUrlGeneratorManager {
|
|
18
76
|
portalType;
|
|
19
77
|
policies;
|
|
@@ -27,64 +85,64 @@ export class ProgrammesSitemapUrlGeneratorManager extends BaseSitemapUrlGenerato
|
|
|
27
85
|
portalType
|
|
28
86
|
};
|
|
29
87
|
this.policies = [
|
|
30
|
-
new Area(dependencies),
|
|
31
|
-
new Attendance(dependencies),
|
|
32
|
-
new AttendanceDegree(dependencies),
|
|
33
|
-
new AttendanceDuration(dependencies),
|
|
34
|
-
new AttendanceContinent(dependencies),
|
|
88
|
+
// new Area(dependencies),
|
|
89
|
+
// new Attendance(dependencies),
|
|
90
|
+
// new AttendanceDegree(dependencies),
|
|
91
|
+
// new AttendanceDuration(dependencies),
|
|
92
|
+
// new AttendanceContinent(dependencies),
|
|
35
93
|
new Continent(dependencies),
|
|
36
|
-
new ContinentTuitionFee(dependencies),
|
|
37
|
-
new Country(dependencies),
|
|
38
|
-
new CountryAttendance(dependencies),
|
|
39
|
-
new Discipline(dependencies),
|
|
40
|
-
new Degree(dependencies),
|
|
41
|
-
new SpecialProgrammes(dependencies),
|
|
42
|
-
new TuitionFee(dependencies),
|
|
43
|
-
new Unfiltered(dependencies),
|
|
94
|
+
// new ContinentTuitionFee(dependencies),
|
|
95
|
+
// new Country(dependencies),
|
|
96
|
+
// new CountryAttendance(dependencies),
|
|
97
|
+
// new Discipline(dependencies),
|
|
98
|
+
// new Degree(dependencies),
|
|
99
|
+
// new SpecialProgrammes(dependencies),
|
|
100
|
+
// new TuitionFee(dependencies),
|
|
101
|
+
// new Unfiltered(dependencies),
|
|
44
102
|
new Duration(dependencies),
|
|
45
|
-
new CountryAttendanceDegree(dependencies),
|
|
46
|
-
new CountryDegree(dependencies),
|
|
47
|
-
new CountryDuration(dependencies),
|
|
48
|
-
new CountryDurationDegree(dependencies),
|
|
49
|
-
new CountryEducationalForm(dependencies),
|
|
50
|
-
new CountryFormat(dependencies),
|
|
51
|
-
new CountryTuitionFee(dependencies),
|
|
52
|
-
new CountrySpecialProgrammes(dependencies),
|
|
53
|
-
new ContinentFormat(dependencies),
|
|
103
|
+
// new CountryAttendanceDegree(dependencies),
|
|
104
|
+
// new CountryDegree(dependencies),
|
|
105
|
+
// new CountryDuration(dependencies),
|
|
106
|
+
// new CountryDurationDegree(dependencies),
|
|
107
|
+
// new CountryEducationalForm(dependencies),
|
|
108
|
+
// new CountryFormat(dependencies),
|
|
109
|
+
// new CountryTuitionFee(dependencies),
|
|
110
|
+
// new CountrySpecialProgrammes(dependencies),
|
|
111
|
+
// new ContinentFormat(dependencies),
|
|
54
112
|
new ContinentSpecialProgrammes(dependencies),
|
|
55
|
-
new ContinentDuration(dependencies),
|
|
56
|
-
new DegreeAttendanceDiscipline(dependencies),
|
|
57
|
-
new DegreeCountryAttendance(dependencies),
|
|
58
|
-
new DegreeCountryDiscipline(dependencies),
|
|
59
|
-
new DegreeCountryTuitionFee(dependencies),
|
|
60
|
-
new DegreeFormat(dependencies),
|
|
61
|
-
new DegreeContinent(dependencies),
|
|
62
|
-
new DegreeAttendanceTuitionFee(dependencies),
|
|
63
|
-
new DegreeArea(dependencies),
|
|
64
|
-
new DegreeTuitionFee(dependencies),
|
|
113
|
+
// new ContinentDuration(dependencies),
|
|
114
|
+
// new DegreeAttendanceDiscipline(dependencies),
|
|
115
|
+
// new DegreeCountryAttendance(dependencies),
|
|
116
|
+
// new DegreeCountryDiscipline(dependencies),
|
|
117
|
+
// new DegreeCountryTuitionFee(dependencies),
|
|
118
|
+
// new DegreeFormat(dependencies),
|
|
119
|
+
// new DegreeContinent(dependencies),
|
|
120
|
+
// new DegreeAttendanceTuitionFee(dependencies),
|
|
121
|
+
// new DegreeArea(dependencies),
|
|
122
|
+
// new DegreeTuitionFee(dependencies),
|
|
65
123
|
new DegreeAreaTuitionFee(dependencies),
|
|
66
|
-
new DegreeContinentTuitionFee(dependencies),
|
|
67
|
-
new DegreeDuration(dependencies),
|
|
68
|
-
new DegreeFormatTuitionFee(dependencies),
|
|
69
|
-
new DegreeAttendanceFormat(dependencies),
|
|
70
|
-
new DegreeSpecialProgrammes(dependencies),
|
|
124
|
+
// new DegreeContinentTuitionFee(dependencies),
|
|
125
|
+
// new DegreeDuration(dependencies),
|
|
126
|
+
// new DegreeFormatTuitionFee(dependencies),
|
|
127
|
+
// new DegreeAttendanceFormat(dependencies),
|
|
128
|
+
// new DegreeSpecialProgrammes(dependencies),
|
|
71
129
|
new Format(dependencies),
|
|
72
|
-
new DisciplineAttendance(dependencies),
|
|
73
|
-
new DisciplineContinent(dependencies),
|
|
74
|
-
new DisciplineCountry(dependencies),
|
|
75
|
-
new DisciplineCountryEducationalForm(dependencies),
|
|
76
|
-
new DisciplineDegree(dependencies),
|
|
77
|
-
new DisciplineDuration(dependencies),
|
|
78
|
-
new DisciplineEducationalForm(dependencies),
|
|
79
|
-
new DisciplineFormat(dependencies),
|
|
80
|
-
new DisciplineTuitionFee(dependencies),
|
|
81
|
-
new DisciplineTuitionFeeAttendance(dependencies),
|
|
82
|
-
new DisciplineContinentAttendance(dependencies),
|
|
83
|
-
new DisciplineCountryAttendance(dependencies),
|
|
84
|
-
new DisciplineCountryFormat(dependencies),
|
|
85
|
-
new AttendanceTuitionFee(dependencies),
|
|
86
|
-
new AttendanceFormat(dependencies),
|
|
87
|
-
new AttendanceArea(dependencies)
|
|
130
|
+
// new DisciplineAttendance(dependencies),
|
|
131
|
+
// new DisciplineContinent(dependencies),
|
|
132
|
+
// new DisciplineCountry(dependencies),
|
|
133
|
+
// new DisciplineCountryEducationalForm(dependencies),
|
|
134
|
+
// new DisciplineDegree(dependencies),
|
|
135
|
+
// new DisciplineDuration(dependencies),
|
|
136
|
+
// new DisciplineEducationalForm(dependencies),
|
|
137
|
+
// new DisciplineFormat(dependencies),
|
|
138
|
+
// new DisciplineTuitionFee(dependencies),
|
|
139
|
+
// new DisciplineTuitionFeeAttendance(dependencies),
|
|
140
|
+
// new DisciplineContinentAttendance(dependencies),
|
|
141
|
+
// new DisciplineCountryAttendance(dependencies),
|
|
142
|
+
// new DisciplineCountryFormat(dependencies),
|
|
143
|
+
// new AttendanceTuitionFee(dependencies),
|
|
144
|
+
// new AttendanceFormat(dependencies),
|
|
145
|
+
// new AttendanceArea(dependencies)
|
|
88
146
|
];
|
|
89
147
|
this.presenters.set(FilterKey.AREA, AreaPresenter.getInstance());
|
|
90
148
|
this.presenters.set(FilterKey.DELIVERY_METHOD, AttendancePresenter.getInstance());
|