sr-npm 1.7.200 → 1.7.202
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/backend/utils.js +2 -2
- package/package.json +1 -1
- package/pages/careersPage.js +10 -6
package/backend/utils.js
CHANGED
|
@@ -12,8 +12,8 @@ async function delay(ms) {
|
|
|
12
12
|
function countJobsPerGivenField(jobs, field,jobsPerField) {
|
|
13
13
|
for (const job of jobs) {
|
|
14
14
|
if (!job[field]) {
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
console.warn(`Job ${job._id} missing required field '${field}' - continue`);
|
|
16
|
+
continue;
|
|
17
17
|
}
|
|
18
18
|
else{
|
|
19
19
|
jobsPerField[job[field]] = (jobsPerField[job[field]] || 0) + 1;
|
package/package.json
CHANGED
package/pages/careersPage.js
CHANGED
|
@@ -17,11 +17,13 @@ const {
|
|
|
17
17
|
let queryKeyWordVar;
|
|
18
18
|
let queryDepartmentVar;
|
|
19
19
|
let queryLocationVar;
|
|
20
|
-
async function careersPageOnReady(_$w,thisObject,
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
20
|
+
async function careersPageOnReady(_$w,thisObject,queryParams) {
|
|
21
|
+
console.log("queryParams: ", queryParams);
|
|
22
|
+
const { page, keyWord, department, location } = queryParams;
|
|
23
|
+
queryPageVar=page;
|
|
24
|
+
queryKeyWordVar=keyWord;
|
|
25
|
+
queryDepartmentVar=department;
|
|
26
|
+
queryLocationVar=location;
|
|
25
27
|
thisObjectVar=thisObject;
|
|
26
28
|
allJobs=await getAllPositions();
|
|
27
29
|
await handleUrlParams(_$w);
|
|
@@ -235,7 +237,9 @@ async function applyFilters(_$w, skipUrlUpdate = false) {
|
|
|
235
237
|
await _$w('#jobsDataset').refresh();
|
|
236
238
|
|
|
237
239
|
const count = await updateCount(_$w);
|
|
238
|
-
|
|
240
|
+
console.log("updating map markers");
|
|
241
|
+
await updateMapMarkers(_$w,count);
|
|
242
|
+
console.log("updating map markers completed");
|
|
239
243
|
count ? _$w('#resultsMultiState').changeState('results') : _$w('#resultsMultiState').changeState('noResults');
|
|
240
244
|
|
|
241
245
|
|