Compare commits
38 Commits
update-doc
...
sliders-fo
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e6725355a0 | ||
|
|
259799144e | ||
|
|
bc73d4159d | ||
|
|
37ad32fe76 | ||
|
|
94875a0fa3 | ||
|
|
0c2d218d29 | ||
|
|
fed2dc00dc | ||
|
|
cc78e5acd5 | ||
|
|
55319a54e9 | ||
|
|
ef5de27c06 | ||
|
|
bee390aa15 | ||
|
|
251437f815 | ||
|
|
4391aa5939 | ||
|
|
c672b3ab9f | ||
|
|
76f4ed0a30 | ||
|
|
73b3f0d22f | ||
|
|
547411f189 | ||
|
|
a45a0ec361 | ||
|
|
43074b6eb3 | ||
|
|
cb52c8592a | ||
|
|
5a2fdb7291 | ||
|
|
e83712fb33 | ||
|
|
0e585e74ae | ||
|
|
e6e1688a49 | ||
|
|
dee7c6000a | ||
|
|
fbcda328b7 | ||
|
|
6f729b4135 | ||
|
|
ef4fff4e70 | ||
|
|
ade28eb981 | ||
|
|
f8ea2f0f78 | ||
|
|
232221af9e | ||
|
|
271af35f0c | ||
|
|
6baa151ea2 | ||
|
|
e42531ff57 | ||
|
|
002a8e8572 | ||
|
|
fd8592c581 | ||
|
|
5cab9ee7c4 | ||
|
|
1106f92560 |
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,3 +1,5 @@
|
|||||||
node_modules/
|
node_modules/
|
||||||
.env
|
.env
|
||||||
.idea/
|
.idea/
|
||||||
|
.eslintrc
|
||||||
|
.vscode/
|
||||||
|
|||||||
@@ -7,7 +7,42 @@ const PRICE_SLIDER_OPTIONS_SALE = {
|
|||||||
step: 1000,
|
step: 1000,
|
||||||
connect: true
|
connect: true
|
||||||
};
|
};
|
||||||
|
const FLAT_PRICE_SLIDER_OPTIONS_SALE = {
|
||||||
|
start: [50000, 150000],
|
||||||
|
range: {
|
||||||
|
min: [0],
|
||||||
|
max: [800000]
|
||||||
|
},
|
||||||
|
step: 5000,
|
||||||
|
connect: true
|
||||||
|
};
|
||||||
|
const HOUSE_PRICE_SLIDER_OPTIONS_SALE = {
|
||||||
|
start: [50000, 150000],
|
||||||
|
range: {
|
||||||
|
min: [0],
|
||||||
|
max: [1500000]
|
||||||
|
},
|
||||||
|
step: 10000,
|
||||||
|
connect: true
|
||||||
|
};
|
||||||
|
const OFFICE_PRICE_SLIDER_OPTIONS_SALE = {
|
||||||
|
start: [15000, 50000],
|
||||||
|
range: {
|
||||||
|
min: [0],
|
||||||
|
max: [2000000]
|
||||||
|
},
|
||||||
|
step: 2000,
|
||||||
|
connect: true
|
||||||
|
};
|
||||||
|
const LAND_PRICE_SLIDER_OPTIONS_SALE = {
|
||||||
|
start: [40000, 80000],
|
||||||
|
range: {
|
||||||
|
min: [0],
|
||||||
|
max: [2000000]
|
||||||
|
},
|
||||||
|
step: 10000,
|
||||||
|
connect: true
|
||||||
|
};
|
||||||
const PRICE_SLIDER_OPTIONS_RENT = {
|
const PRICE_SLIDER_OPTIONS_RENT = {
|
||||||
start: [300, 500],
|
start: [300, 500],
|
||||||
range: {
|
range: {
|
||||||
@@ -17,18 +52,62 @@ const PRICE_SLIDER_OPTIONS_RENT = {
|
|||||||
step: 50,
|
step: 50,
|
||||||
connect: true
|
connect: true
|
||||||
};
|
};
|
||||||
|
const FLAT_PRICE_SLIDER_OPTIONS_RENT = {
|
||||||
|
start: [300, 600],
|
||||||
|
range: {
|
||||||
|
min: [0],
|
||||||
|
max: [4000]
|
||||||
|
},
|
||||||
|
step: 100,
|
||||||
|
connect: true
|
||||||
|
};
|
||||||
|
const HOUSE_PRICE_SLIDER_OPTIONS_RENT = {
|
||||||
|
start: [500, 1000],
|
||||||
|
range: {
|
||||||
|
min: [0],
|
||||||
|
max: [10000]
|
||||||
|
},
|
||||||
|
step: 100,
|
||||||
|
connect: true
|
||||||
|
};
|
||||||
|
const OFFICE_PRICE_SLIDER_OPTIONS_RENT = {
|
||||||
|
start: [200, 1000],
|
||||||
|
range: {
|
||||||
|
min: [0],
|
||||||
|
max: [20000]
|
||||||
|
},
|
||||||
|
step: 100,
|
||||||
|
connect: true
|
||||||
|
};
|
||||||
|
const LAND_PRICE_SLIDER_OPTIONS_RENT = {
|
||||||
|
start: [500, 1000],
|
||||||
|
range: {
|
||||||
|
min: [0],
|
||||||
|
max: [20000]
|
||||||
|
},
|
||||||
|
step: 100,
|
||||||
|
connect: true
|
||||||
|
};
|
||||||
//This will be used for Flats, Apartments, Houses
|
//This will be used for Flats, Apartments, Houses
|
||||||
const HOME_SIZE_SLIDER_OPTIONS = {
|
const HOME_SIZE_SLIDER_OPTIONS = {
|
||||||
start: [30, 75],
|
start: [30, 75],
|
||||||
range: {
|
range: {
|
||||||
min: [0],
|
min: [0],
|
||||||
max: [400]
|
max: [500]
|
||||||
},
|
},
|
||||||
step: 5,
|
step: 5,
|
||||||
connect: true
|
connect: true
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const OFFICE_SIZE_SLIDER_OPTIONS = {
|
||||||
|
start: [30, 150],
|
||||||
|
range: {
|
||||||
|
min: [0],
|
||||||
|
max: [1200]
|
||||||
|
},
|
||||||
|
step: 10,
|
||||||
|
connect: true
|
||||||
|
};
|
||||||
const GARDEN_SIZE_SLIDER_OPTIONS = {
|
const GARDEN_SIZE_SLIDER_OPTIONS = {
|
||||||
start: [100, 1000],
|
start: [100, 1000],
|
||||||
range: {
|
range: {
|
||||||
@@ -104,16 +183,30 @@ const AD_CATEGORY = {
|
|||||||
id: "FLAT",
|
id: "FLAT",
|
||||||
title: "Stan",
|
title: "Stan",
|
||||||
hasGardenSize: false,
|
hasGardenSize: false,
|
||||||
priceSliderOptionsSale: PRICE_SLIDER_OPTIONS_SALE,
|
hasAccesRoadType: true,
|
||||||
priceSliderOptionsRent: PRICE_SLIDER_OPTIONS_RENT,
|
hasBalconyProp: true,
|
||||||
|
hasNewBuildingProp: true,
|
||||||
|
hasElevatorProp: true,
|
||||||
|
hasNumberOfRoom: true,
|
||||||
|
hasNumberOfFloors: false,
|
||||||
|
hasFloorProp: true,
|
||||||
|
priceSliderOptionsSale: FLAT_PRICE_SLIDER_OPTIONS_SALE,
|
||||||
|
priceSliderOptionsRent: FLAT_PRICE_SLIDER_OPTIONS_RENT,
|
||||||
sizeSliderOptions: HOME_SIZE_SLIDER_OPTIONS
|
sizeSliderOptions: HOME_SIZE_SLIDER_OPTIONS
|
||||||
},
|
},
|
||||||
HOUSE: {
|
HOUSE: {
|
||||||
id: "HOUSE",
|
id: "HOUSE",
|
||||||
title: "Kuća",
|
title: "Kuća",
|
||||||
hasGardenSize: true,
|
hasGardenSize: true,
|
||||||
priceSliderOptionsSale: PRICE_SLIDER_OPTIONS_SALE,
|
hasAccesRoadType: true,
|
||||||
priceSliderOptionsRent: PRICE_SLIDER_OPTIONS_RENT,
|
hasBalconyProp: true,
|
||||||
|
hasNewBuildingProp: true,
|
||||||
|
hasElevatorProp: false,
|
||||||
|
hasNumberOfRoom: true,
|
||||||
|
hasNumberOfFloors: true,
|
||||||
|
hasFloorProp: false,
|
||||||
|
priceSliderOptionsSale: HOUSE_PRICE_SLIDER_OPTIONS_SALE,
|
||||||
|
priceSliderOptionsRent: HOUSE_PRICE_SLIDER_OPTIONS_RENT,
|
||||||
sizeSliderOptions: HOME_SIZE_SLIDER_OPTIONS,
|
sizeSliderOptions: HOME_SIZE_SLIDER_OPTIONS,
|
||||||
gardenSizeSliderOptions: GARDEN_SIZE_SLIDER_OPTIONS
|
gardenSizeSliderOptions: GARDEN_SIZE_SLIDER_OPTIONS
|
||||||
},
|
},
|
||||||
@@ -121,30 +214,58 @@ const AD_CATEGORY = {
|
|||||||
id: "OFFICE",
|
id: "OFFICE",
|
||||||
title: "Kancelarija",
|
title: "Kancelarija",
|
||||||
hasGardenSize: false,
|
hasGardenSize: false,
|
||||||
priceSliderOptionsSale: PRICE_SLIDER_OPTIONS_SALE,
|
hasAccesRoadType: true,
|
||||||
priceSliderOptionsRent: PRICE_SLIDER_OPTIONS_RENT,
|
hasBalconyProp: false,
|
||||||
sizeSliderOptions: HOME_SIZE_SLIDER_OPTIONS
|
hasNewBuildingProp: true,
|
||||||
|
hasElevatorProp: true,
|
||||||
|
hasNumberOfRoom: true,
|
||||||
|
hasNumberOfFloors: false,
|
||||||
|
hasFloorProp: true,
|
||||||
|
priceSliderOptionsSale: OFFICE_PRICE_SLIDER_OPTIONS_SALE,
|
||||||
|
priceSliderOptionsRent: OFFICE_PRICE_SLIDER_OPTIONS_RENT,
|
||||||
|
sizeSliderOptions: OFFICE_SIZE_SLIDER_OPTIONS
|
||||||
},
|
},
|
||||||
LAND: {
|
LAND: {
|
||||||
id: "LAND",
|
id: "LAND",
|
||||||
title: "Zemljište",
|
title: "Zemljište",
|
||||||
hasGardenSize: false,
|
hasGardenSize: false,
|
||||||
priceSliderOptionsSale: PRICE_SLIDER_OPTIONS_SALE,
|
hasAccesRoadType: true,
|
||||||
priceSliderOptionsRent: PRICE_SLIDER_OPTIONS_RENT,
|
hasBalconyProp: false,
|
||||||
|
hasNewBuildingProp: false,
|
||||||
|
hasElevatorProp: false,
|
||||||
|
hasNumberOfRoom: false,
|
||||||
|
hasNumberOfFloors: false,
|
||||||
|
hasFloorProp: false,
|
||||||
|
priceSliderOptionsSale: LAND_PRICE_SLIDER_OPTIONS_SALE,
|
||||||
|
priceSliderOptionsRent: LAND_PRICE_SLIDER_OPTIONS_RENT,
|
||||||
sizeSliderOptions: LAND_SIZE_SLIDER_OPTIONS
|
sizeSliderOptions: LAND_SIZE_SLIDER_OPTIONS
|
||||||
},
|
},
|
||||||
APARTMENT: {
|
APARTMENT: {
|
||||||
id: "APARTMENT",
|
id: "APARTMENT",
|
||||||
title: "Apartman",
|
title: "Apartman",
|
||||||
hasGardenSize: false,
|
hasGardenSize: false,
|
||||||
priceSliderOptionsSale: PRICE_SLIDER_OPTIONS_SALE,
|
hasAccesRoadType: true,
|
||||||
priceSliderOptionsRent: PRICE_SLIDER_OPTIONS_RENT,
|
hasBalconyProp: true,
|
||||||
|
hasNewBuildingProp: true,
|
||||||
|
hasElevatorProp: true,
|
||||||
|
hasNumberOfRoom: true,
|
||||||
|
hasNumberOfFloors: false,
|
||||||
|
hasFloorProp: true,
|
||||||
|
priceSliderOptionsSale: FLAT_PRICE_SLIDER_OPTIONS_SALE,
|
||||||
|
priceSliderOptionsRent: FLAT_PRICE_SLIDER_OPTIONS_RENT,
|
||||||
sizeSliderOptions: HOME_SIZE_SLIDER_OPTIONS
|
sizeSliderOptions: HOME_SIZE_SLIDER_OPTIONS
|
||||||
},
|
},
|
||||||
GARAGE: {
|
GARAGE: {
|
||||||
id: "GARAGE",
|
id: "GARAGE",
|
||||||
title: "Garaža",
|
title: "Garaža",
|
||||||
hasGardenSize: false,
|
hasGardenSize: false,
|
||||||
|
hasAccesRoadType: true,
|
||||||
|
hasBalconyProp: false,
|
||||||
|
hasNewBuildingProp: false,
|
||||||
|
hasElevatorProp: false,
|
||||||
|
hasNumberOfRoom: false,
|
||||||
|
hasNumberOfFloors: false,
|
||||||
|
hasFloorProp: false,
|
||||||
priceSliderOptionsSale: GARAGE_PRICE_SLIDER_OPTIONS_SALE,
|
priceSliderOptionsSale: GARAGE_PRICE_SLIDER_OPTIONS_SALE,
|
||||||
priceSliderOptionsRent: GARAGE_PRICE_SLIDER_OPTIONS_RENT,
|
priceSliderOptionsRent: GARAGE_PRICE_SLIDER_OPTIONS_RENT,
|
||||||
sizeSliderOptions: GARAGE_SIZE_SLIDER_OPTIONS
|
sizeSliderOptions: GARAGE_SIZE_SLIDER_OPTIONS
|
||||||
@@ -153,8 +274,15 @@ const AD_CATEGORY = {
|
|||||||
id: "COTTAGE",
|
id: "COTTAGE",
|
||||||
title: "Vikendica",
|
title: "Vikendica",
|
||||||
hasGardenSize: true,
|
hasGardenSize: true,
|
||||||
priceSliderOptionsSale: PRICE_SLIDER_OPTIONS_SALE,
|
hasAccesRoadType: true,
|
||||||
priceSliderOptionsRent: PRICE_SLIDER_OPTIONS_RENT,
|
hasBalconyProp: true,
|
||||||
|
hasNewBuildingProp: true,
|
||||||
|
hasElevatorProp: false,
|
||||||
|
hasNumberOfRoom: true,
|
||||||
|
hasNumberOfFloors: true,
|
||||||
|
hasFloorProp: false,
|
||||||
|
priceSliderOptionsSale: HOUSE_PRICE_SLIDER_OPTIONS_SALE,
|
||||||
|
priceSliderOptionsRent: HOUSE_PRICE_SLIDER_OPTIONS_RENT,
|
||||||
sizeSliderOptions: HOME_SIZE_SLIDER_OPTIONS,
|
sizeSliderOptions: HOME_SIZE_SLIDER_OPTIONS,
|
||||||
gardenSizeSliderOptions: GARDEN_SIZE_SLIDER_OPTIONS
|
gardenSizeSliderOptions: GARDEN_SIZE_SLIDER_OPTIONS
|
||||||
}
|
}
|
||||||
@@ -199,6 +327,10 @@ const EMAIL_FREQUENCY = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const HEATING_TYPE = {
|
const HEATING_TYPE = {
|
||||||
|
ANY: {
|
||||||
|
id: "ANY",
|
||||||
|
title: "Svi"
|
||||||
|
},
|
||||||
NO_HEATING: {
|
NO_HEATING: {
|
||||||
id: "NO_HEATING",
|
id: "NO_HEATING",
|
||||||
title: "Nije uvedeno"
|
title: "Nije uvedeno"
|
||||||
@@ -238,6 +370,10 @@ const HEATING_TYPE = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const ACCESS_ROAD_TYPE = {
|
const ACCESS_ROAD_TYPE = {
|
||||||
|
ANY: {
|
||||||
|
id: "ANY",
|
||||||
|
title: "Svi"
|
||||||
|
},
|
||||||
ASPHALT: {
|
ASPHALT: {
|
||||||
id: "ASPHALT",
|
id: "ASPHALT",
|
||||||
title: "Asfalt"
|
title: "Asfalt"
|
||||||
|
|||||||
110
app/common/filterEnums.js
Normal file
110
app/common/filterEnums.js
Normal file
@@ -0,0 +1,110 @@
|
|||||||
|
const { AD_CATEGORY, ACCESS_ROAD_TYPE, HEATING_TYPE } = require("./enums");
|
||||||
|
|
||||||
|
const ADVANCED_BOOLEAN_FILTERS = [
|
||||||
|
{
|
||||||
|
dbField: "balcony",
|
||||||
|
title: "Balkon",
|
||||||
|
categoriesToShow: [
|
||||||
|
AD_CATEGORY.FLAT,
|
||||||
|
AD_CATEGORY.HOUSE,
|
||||||
|
AD_CATEGORY.APARTMENT,
|
||||||
|
AD_CATEGORY.COTTAGE
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
dbField: "elevator",
|
||||||
|
title: "Lift",
|
||||||
|
categoriesToShow: [
|
||||||
|
AD_CATEGORY.FLAT,
|
||||||
|
AD_CATEGORY.APARTMENT,
|
||||||
|
AD_CATEGORY.OFFICE
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
dbField: "newBuilding",
|
||||||
|
title: "Novogradnja",
|
||||||
|
categoriesToShow: [
|
||||||
|
AD_CATEGORY.FLAT,
|
||||||
|
AD_CATEGORY.HOUSE,
|
||||||
|
AD_CATEGORY.APARTMENT,
|
||||||
|
AD_CATEGORY.COTTAGE,
|
||||||
|
AD_CATEGORY.OFFICE
|
||||||
|
]
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
const ADVANCED_SEGMENT_SELECT_FILTERS = [
|
||||||
|
{
|
||||||
|
dbField: "accessRoadType",
|
||||||
|
title: "Pristupni put",
|
||||||
|
values: Object.keys(ACCESS_ROAD_TYPE).map(key => ACCESS_ROAD_TYPE[key]),
|
||||||
|
categoriesToShow: [
|
||||||
|
AD_CATEGORY.FLAT,
|
||||||
|
AD_CATEGORY.HOUSE,
|
||||||
|
AD_CATEGORY.APARTMENT,
|
||||||
|
AD_CATEGORY.COTTAGE,
|
||||||
|
AD_CATEGORY.OFFICE,
|
||||||
|
AD_CATEGORY.LAND,
|
||||||
|
AD_CATEGORY.GARAGE
|
||||||
|
]
|
||||||
|
}
|
||||||
|
// {
|
||||||
|
// dbField: "heatingType",
|
||||||
|
// title: "Vrsta grijanja",
|
||||||
|
// values: Object.keys(HEATING_TYPE).map(key => HEATING_TYPE[key]),
|
||||||
|
// categoriesToShow: [
|
||||||
|
// AD_CATEGORY.FLAT,
|
||||||
|
// AD_CATEGORY.HOUSE,
|
||||||
|
// AD_CATEGORY.APARTMENT,
|
||||||
|
// AD_CATEGORY.COTTAGE,
|
||||||
|
// AD_CATEGORY.OFFICE
|
||||||
|
// ]
|
||||||
|
// }
|
||||||
|
];
|
||||||
|
|
||||||
|
const ADVANCED_RANGE_FILTERS = [
|
||||||
|
{
|
||||||
|
id: "numberOfFloors",
|
||||||
|
title: "Broj spratova",
|
||||||
|
dbFieldMin: "numberOfFloorsMin",
|
||||||
|
dbFieldMax: "numberOfFloorsMax",
|
||||||
|
validValueMin: -1,
|
||||||
|
validValueMax: 50,
|
||||||
|
categoriesToShow: [AD_CATEGORY.HOUSE, AD_CATEGORY.COTTAGE]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "floor",
|
||||||
|
title: "Sprat",
|
||||||
|
dbFieldMin: "floorMin",
|
||||||
|
dbFieldMax: "floorMax",
|
||||||
|
validValueMin: -10,
|
||||||
|
validValueMax: 50,
|
||||||
|
categoriesToShow: [
|
||||||
|
AD_CATEGORY.FLAT,
|
||||||
|
AD_CATEGORY.APARTMENT,
|
||||||
|
AD_CATEGORY.OFFICE
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "numberOfRooms",
|
||||||
|
title: "Broj soba",
|
||||||
|
dbFieldMin: "numberOfRoomsMin",
|
||||||
|
dbFieldMax: "numberOfRoomsMax",
|
||||||
|
decimalPlaces: 1,
|
||||||
|
validValueMin: 0,
|
||||||
|
validValueMax: 200,
|
||||||
|
categoriesToShow: [
|
||||||
|
AD_CATEGORY.FLAT,
|
||||||
|
AD_CATEGORY.HOUSE,
|
||||||
|
AD_CATEGORY.APARTMENT,
|
||||||
|
AD_CATEGORY.COTTAGE,
|
||||||
|
AD_CATEGORY.OFFICE
|
||||||
|
]
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
ADVANCED_BOOLEAN_FILTERS,
|
||||||
|
ADVANCED_SEGMENT_SELECT_FILTERS,
|
||||||
|
ADVANCED_RANGE_FILTERS
|
||||||
|
};
|
||||||
@@ -30,6 +30,8 @@ const MAX_REAL_ESTATES_IN_FIRST_EMAIL =
|
|||||||
|
|
||||||
const PRINT_CRAWLER_DEBUG = process.env.PRINT_CRAWLER_DEBUG_INFO || 0;
|
const PRINT_CRAWLER_DEBUG = process.env.PRINT_CRAWLER_DEBUG_INFO || 0;
|
||||||
|
|
||||||
|
const API_MAP_KEY = process.env.API_MAP_KEY || "";
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
APP_PORT,
|
APP_PORT,
|
||||||
APP_URL,
|
APP_URL,
|
||||||
@@ -39,5 +41,6 @@ module.exports = {
|
|||||||
AWS_EMAIL_CONFIG,
|
AWS_EMAIL_CONFIG,
|
||||||
MAX_REAL_ESTATES_IN_EMAIL,
|
MAX_REAL_ESTATES_IN_EMAIL,
|
||||||
MAX_REAL_ESTATES_IN_FIRST_EMAIL,
|
MAX_REAL_ESTATES_IN_FIRST_EMAIL,
|
||||||
PRINT_CRAWLER_DEBUG
|
PRINT_CRAWLER_DEBUG,
|
||||||
|
API_MAP_KEY
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -4,9 +4,37 @@ const getLocation = async (req, res) => {
|
|||||||
const title = "Odaberite lokaciju";
|
const title = "Odaberite lokaciju";
|
||||||
const nextStep = req.query.nextStep || "/";
|
const nextStep = req.query.nextStep || "/";
|
||||||
|
|
||||||
|
//Check if location data already exists (active request)
|
||||||
|
//If it does then get location is called through edit field query
|
||||||
|
//and map should show already selected location not initial map
|
||||||
|
let selectedLatLngBounds = {};
|
||||||
|
let boundsSelected = false;
|
||||||
|
|
||||||
|
const searchRequest = await currentSearchRequest(req);
|
||||||
|
|
||||||
|
if (!searchRequest || !searchRequest.dataValues) {
|
||||||
|
res.render("notFound", { title: " " });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const selectedArea = searchRequest.areaToSearch;
|
||||||
|
const sw = selectedArea.coordinates[0][3];
|
||||||
|
const ne = selectedArea.coordinates[0][1];
|
||||||
|
|
||||||
|
if (sw[0] && ne[0]) {
|
||||||
|
selectedLatLngBounds = {
|
||||||
|
swLat: sw[1],
|
||||||
|
swLng: sw[0],
|
||||||
|
neLat: ne[1],
|
||||||
|
neLng: ne[0]
|
||||||
|
};
|
||||||
|
boundsSelected = true;
|
||||||
|
}
|
||||||
|
|
||||||
res.render("location", {
|
res.render("location", {
|
||||||
nextStep,
|
nextStep,
|
||||||
title
|
title,
|
||||||
|
boundsSelected,
|
||||||
|
selectedLatLngBounds
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,10 @@
|
|||||||
const { currentSearchRequest } = require("../helpers/url");
|
const { currentSearchRequest } = require("../helpers/url");
|
||||||
const { AD_CATEGORY, AD_TYPE } = require("../common/enums");
|
const { AD_CATEGORY, AD_TYPE, ACCESS_ROAD_TYPE } = require("../common/enums");
|
||||||
|
const {
|
||||||
|
ADVANCED_BOOLEAN_FILTERS,
|
||||||
|
ADVANCED_SEGMENT_SELECT_FILTERS,
|
||||||
|
ADVANCED_RANGE_FILTERS
|
||||||
|
} = require("../common/filterEnums");
|
||||||
|
|
||||||
const getFilters = async (req, res) => {
|
const getFilters = async (req, res) => {
|
||||||
const searchRequest = await currentSearchRequest(req);
|
const searchRequest = await currentSearchRequest(req);
|
||||||
@@ -19,7 +24,18 @@ const getFilters = async (req, res) => {
|
|||||||
sizeMin,
|
sizeMin,
|
||||||
sizeMax,
|
sizeMax,
|
||||||
gardenSizeMin,
|
gardenSizeMin,
|
||||||
gardenSizeMax
|
gardenSizeMax,
|
||||||
|
numberOfRoomsMin,
|
||||||
|
numberOfRoomsMax,
|
||||||
|
numberOfFloorsMin,
|
||||||
|
numberOfFloorsMax,
|
||||||
|
floorMin,
|
||||||
|
floorMax,
|
||||||
|
includeIncompleteAds,
|
||||||
|
balcony,
|
||||||
|
elevator,
|
||||||
|
newBuilding,
|
||||||
|
accessRoadType
|
||||||
} = searchRequest;
|
} = searchRequest;
|
||||||
const category = AD_CATEGORY[realEstateType] || AD_CATEGORY.FLAT;
|
const category = AD_CATEGORY[realEstateType] || AD_CATEGORY.FLAT;
|
||||||
|
|
||||||
@@ -41,6 +57,40 @@ const getFilters = async (req, res) => {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: Maybe this is slow, pay attention to this
|
||||||
|
const filterFilters = filterObject => {
|
||||||
|
const filterCategories = filterObject.categoriesToShow;
|
||||||
|
return filterCategories.indexOf(category) !== -1;
|
||||||
|
};
|
||||||
|
|
||||||
|
const advancedBooleanFilterObjects = ADVANCED_BOOLEAN_FILTERS.filter(
|
||||||
|
filterFilters
|
||||||
|
);
|
||||||
|
const advancedSegmentSelectFilterObjects = ADVANCED_SEGMENT_SELECT_FILTERS.filter(
|
||||||
|
filterFilters
|
||||||
|
);
|
||||||
|
const advancedRangeFilterObjects = ADVANCED_RANGE_FILTERS.filter(
|
||||||
|
filterFilters
|
||||||
|
);
|
||||||
|
|
||||||
|
const advancedBooleanFilterValues = {
|
||||||
|
includeIncompleteAds,
|
||||||
|
balcony,
|
||||||
|
elevator,
|
||||||
|
newBuilding
|
||||||
|
};
|
||||||
|
const advancedSegmentSelectFilterValues = {
|
||||||
|
accessRoadType
|
||||||
|
};
|
||||||
|
const advancedRangeFilterValues = {
|
||||||
|
numberOfFloorsMin,
|
||||||
|
numberOfFloorsMax,
|
||||||
|
numberOfRoomsMin,
|
||||||
|
numberOfRoomsMax,
|
||||||
|
floorMin,
|
||||||
|
floorMax
|
||||||
|
};
|
||||||
|
|
||||||
if (priceMin || priceMax) {
|
if (priceMin || priceMax) {
|
||||||
priceSliderOptions.start = [priceMin, priceMax];
|
priceSliderOptions.start = [priceMin, priceMax];
|
||||||
}
|
}
|
||||||
@@ -58,7 +108,14 @@ const getFilters = async (req, res) => {
|
|||||||
hasGardenSize,
|
hasGardenSize,
|
||||||
priceSliderOptions: JSON.stringify(priceSliderOptions),
|
priceSliderOptions: JSON.stringify(priceSliderOptions),
|
||||||
sizeSliderOptions: JSON.stringify(sizeSliderOptions),
|
sizeSliderOptions: JSON.stringify(sizeSliderOptions),
|
||||||
gardenSizeSliderOptions: JSON.stringify(gardenSizeSliderOptions)
|
gardenSizeSliderOptions: JSON.stringify(gardenSizeSliderOptions),
|
||||||
|
advancedBooleanFilterObjects,
|
||||||
|
advancedBooleanFilterValues,
|
||||||
|
advancedSegmentSelectFilterObjects,
|
||||||
|
advancedSegmentSelectFilterValues,
|
||||||
|
advancedRangeFilterObjects,
|
||||||
|
advancedRangeFilterValues,
|
||||||
|
includeIncompleteAds
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -78,13 +135,91 @@ const postFilters = async (req, res) => {
|
|||||||
const sizeMin = parseInt(req.body.sizeMin) || 0;
|
const sizeMin = parseInt(req.body.sizeMin) || 0;
|
||||||
const sizeMax = parseInt(req.body.sizeMax) || 0;
|
const sizeMax = parseInt(req.body.sizeMax) || 0;
|
||||||
|
|
||||||
//TODO: Filter validation
|
const advancedRangeFilters = {};
|
||||||
|
|
||||||
|
ADVANCED_RANGE_FILTERS.forEach(filter => {
|
||||||
|
let parsingFunction = parseInt;
|
||||||
|
if (filter.decimalPlaces) {
|
||||||
|
parsingFunction = parseFloat;
|
||||||
|
}
|
||||||
|
|
||||||
|
advancedRangeFilters[filter.dbFieldMin] = parsingFunction(
|
||||||
|
req.body[filter.dbFieldMin]
|
||||||
|
);
|
||||||
|
advancedRangeFilters[filter.dbFieldMax] = parsingFunction(
|
||||||
|
req.body[filter.dbFieldMax]
|
||||||
|
);
|
||||||
|
|
||||||
|
advancedRangeFilters[filter.dbFieldMin] = isNaN(
|
||||||
|
advancedRangeFilters[filter.dbFieldMin]
|
||||||
|
)
|
||||||
|
? null
|
||||||
|
: advancedRangeFilters[filter.dbFieldMin];
|
||||||
|
advancedRangeFilters[filter.dbFieldMax] = isNaN(
|
||||||
|
advancedRangeFilters[filter.dbFieldMax]
|
||||||
|
)
|
||||||
|
? null
|
||||||
|
: advancedRangeFilters[filter.dbFieldMax];
|
||||||
|
|
||||||
|
try {
|
||||||
|
if (filter.decimalPlaces) {
|
||||||
|
advancedRangeFilters[filter.dbFieldMin] = advancedRangeFilters[
|
||||||
|
filter.dbFieldMin
|
||||||
|
].toFixed(filter.decimalPlaces);
|
||||||
|
advancedRangeFilters[filter.dbFieldMax] = advancedRangeFilters[
|
||||||
|
filter.dbFieldMax
|
||||||
|
].toFixed(filter.decimalPlaces);
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
advancedRangeFilters[filter.dbFieldMin] = null;
|
||||||
|
advancedRangeFilters[filter.dbFieldMax] = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (
|
||||||
|
advancedRangeFilters[filter.dbFieldMin] < filter.validValueMin ||
|
||||||
|
advancedRangeFilters[filter.dbFieldMin] > filter.validValueMax
|
||||||
|
) {
|
||||||
|
advancedRangeFilters[filter.dbFieldMin] = filter.validValueMin;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (
|
||||||
|
advancedRangeFilters[filter.dbFieldMax] < filter.validValueMin ||
|
||||||
|
advancedRangeFilters[filter.dbFieldMax] > filter.validValueMax
|
||||||
|
) {
|
||||||
|
advancedRangeFilters[filter.dbFieldMax] = filter.validValueMax;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
const includeIncompleteAds = req.body.includeIncompleteAds === "on";
|
||||||
|
|
||||||
|
const balcony = req.body.balcony === "on";
|
||||||
|
const elevator = req.body.elevator === "on";
|
||||||
|
const newBuilding = req.body.newBuilding === "on";
|
||||||
|
|
||||||
|
const accessRoadType = req.body.accessRoadType;
|
||||||
|
if (!ACCESS_ROAD_TYPE[accessRoadType]) {
|
||||||
|
res.render("notFound", { title: " Greška !" });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
//TODO: Filter validation
|
||||||
searchRequest.priceMin = priceMin;
|
searchRequest.priceMin = priceMin;
|
||||||
searchRequest.priceMax = priceMax;
|
searchRequest.priceMax = priceMax;
|
||||||
searchRequest.sizeMin = sizeMin;
|
searchRequest.sizeMin = sizeMin;
|
||||||
searchRequest.sizeMax = sizeMax;
|
searchRequest.sizeMax = sizeMax;
|
||||||
|
|
||||||
|
for (const filter of Object.keys(advancedRangeFilters)) {
|
||||||
|
searchRequest[filter] = advancedRangeFilters[filter];
|
||||||
|
}
|
||||||
|
|
||||||
|
searchRequest.balcony = balcony;
|
||||||
|
searchRequest.elevator = elevator;
|
||||||
|
searchRequest.newBuilding = newBuilding;
|
||||||
|
|
||||||
|
searchRequest.includeIncompleteAds = includeIncompleteAds;
|
||||||
|
|
||||||
|
searchRequest.accessRoadType = accessRoadType;
|
||||||
|
|
||||||
if (
|
if (
|
||||||
req.body.gardenSizeMin !== undefined &&
|
req.body.gardenSizeMin !== undefined &&
|
||||||
req.body.gardenSizeMax !== undefined
|
req.body.gardenSizeMax !== undefined
|
||||||
@@ -97,7 +232,6 @@ const postFilters = async (req, res) => {
|
|||||||
searchRequest.gardenSizeMin = gardenSizeMin;
|
searchRequest.gardenSizeMin = gardenSizeMin;
|
||||||
searchRequest.gardenSizeMax = gardenSizeMax;
|
searchRequest.gardenSizeMax = gardenSizeMax;
|
||||||
}
|
}
|
||||||
|
|
||||||
await searchRequest.save();
|
await searchRequest.save();
|
||||||
|
|
||||||
res.redirect(nextStepUrl);
|
res.redirect(nextStepUrl);
|
||||||
|
|||||||
@@ -312,7 +312,7 @@ class RentalCrawler {
|
|||||||
|
|
||||||
let numberOfRooms =
|
let numberOfRooms =
|
||||||
parseInt(extractedData["re_realEstates_roomsNO"]) +
|
parseInt(extractedData["re_realEstates_roomsNO"]) +
|
||||||
parseInt(extractedData["re_realEstates_bedroomNO"]) || null,
|
parseInt(extractedData["re_realEstates_bedNO"]) || null,
|
||||||
numberOfFloors =
|
numberOfFloors =
|
||||||
parseInt(extractedData["re_realEstates_floorsNO"]) ||
|
parseInt(extractedData["re_realEstates_floorsNO"]) ||
|
||||||
this.getNumberOfFloorsFromFloorId(extractedData["re_floorNO_id"]),
|
this.getNumberOfFloorsFromFloorId(extractedData["re_floorNO_id"]),
|
||||||
@@ -352,7 +352,9 @@ class RentalCrawler {
|
|||||||
realEstatePropertiesFromInfrastructure.phoneConnection,
|
realEstatePropertiesFromInfrastructure.phoneConnection,
|
||||||
cableTV = realEstatePropertiesFromInfrastructure.cableTV,
|
cableTV = realEstatePropertiesFromInfrastructure.cableTV,
|
||||||
internet = realEstatePropertiesFromInfrastructure.internet,
|
internet = realEstatePropertiesFromInfrastructure.internet,
|
||||||
basementAttic = realEstatePropertiesFromSpaces.basementAttic,
|
basementAttic =
|
||||||
|
realEstatePropertiesFromSpaces.basementAttic ||
|
||||||
|
this.checkBasemAtticFromFloors(extractedData["re_floorNO_id"]),
|
||||||
storeRoom = realEstatePropertiesFromSpaces.storeRoom,
|
storeRoom = realEstatePropertiesFromSpaces.storeRoom,
|
||||||
videoSurveillance =
|
videoSurveillance =
|
||||||
realEstatePropertiesFromDescriptions.videoSurveillance ||
|
realEstatePropertiesFromDescriptions.videoSurveillance ||
|
||||||
@@ -397,9 +399,7 @@ class RentalCrawler {
|
|||||||
);
|
);
|
||||||
if (!publishedDateMoment.isValid()) {
|
if (!publishedDateMoment.isValid()) {
|
||||||
throw {
|
throw {
|
||||||
message: `Invalid published date : ${
|
message: `Invalid published date : ${extractedData["re_realEstates_inserted"]}`
|
||||||
extractedData["re_realEstates_inserted"]
|
|
||||||
}`
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -410,9 +410,7 @@ class RentalCrawler {
|
|||||||
);
|
);
|
||||||
if (!renewedDateMoment.isValid()) {
|
if (!renewedDateMoment.isValid()) {
|
||||||
throw {
|
throw {
|
||||||
message: `Invalid renewed date : ${
|
message: `Invalid renewed date : ${extractedData["re_realEstates_edited"]}`
|
||||||
extractedData["re_realEstates_edited"]
|
|
||||||
}`
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -782,8 +780,42 @@ class RentalCrawler {
|
|||||||
if (floorIds.length === 0) {
|
if (floorIds.length === 0) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
let noOfFloors = floorIds.length;
|
||||||
|
// Floors of 'suteren', 'podrum', 'tavan' and 'potkrovlje' are not counted
|
||||||
|
floorIds.forEach(id => {
|
||||||
|
if (
|
||||||
|
parseInt(id) === 1 ||
|
||||||
|
parseInt(id) === 2 ||
|
||||||
|
parseInt(id) === 12 ||
|
||||||
|
parseInt(id) === 14
|
||||||
|
) {
|
||||||
|
noOfFloors--;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return noOfFloors;
|
||||||
|
}
|
||||||
|
|
||||||
return floorIds.length;
|
checkBasemAtticFromFloors(floorsIdText) {
|
||||||
|
// floorIdText can be array of numbers, separated by comma or number
|
||||||
|
const floorIds = floorsIdText.split(",");
|
||||||
|
|
||||||
|
let check = false;
|
||||||
|
|
||||||
|
if (floorIds.length === 0) {
|
||||||
|
check = false;
|
||||||
|
}
|
||||||
|
//If floors 'suteren', 'podrum', 'tavan' and 'potkrovlje' exists then tag for basement-attic is true
|
||||||
|
floorIds.forEach(id => {
|
||||||
|
if (
|
||||||
|
parseInt(id) === 1 ||
|
||||||
|
parseInt(id) === 2 ||
|
||||||
|
parseInt(id) === 12 ||
|
||||||
|
parseInt(id) === 14
|
||||||
|
) {
|
||||||
|
check = true;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return check;
|
||||||
}
|
}
|
||||||
|
|
||||||
async sleep(ms) {
|
async sleep(ms) {
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
const db = require("../../models/index");
|
const db = require("../../models/index");
|
||||||
const sequelize = require("sequelize");
|
const sequelize = require("sequelize");
|
||||||
const Op = sequelize.Op;
|
const Op = sequelize.Op;
|
||||||
|
|
||||||
const bulkUpsertRealEstates = async realEstateData => {
|
const bulkUpsertRealEstates = async realEstateData => {
|
||||||
try {
|
try {
|
||||||
const fieldsToUpdateIfDuplicate = [
|
const fieldsToUpdateIfDuplicate = [
|
||||||
@@ -87,7 +86,20 @@ const findRealEstatesForSearchRequest = async (searchRequest, maxResults) => {
|
|||||||
sizeMax,
|
sizeMax,
|
||||||
adType,
|
adType,
|
||||||
realEstateType,
|
realEstateType,
|
||||||
areaToSearch
|
areaToSearch,
|
||||||
|
gardenSizeMin,
|
||||||
|
gardenSizeMax,
|
||||||
|
numberOfRoomsMin,
|
||||||
|
numberOfRoomsMax,
|
||||||
|
numberOfFloorsMin,
|
||||||
|
numberOfFloorsMax,
|
||||||
|
floorMin,
|
||||||
|
floorMax,
|
||||||
|
includeIncompleteAds,
|
||||||
|
balcony,
|
||||||
|
elevator,
|
||||||
|
newBuilding,
|
||||||
|
accessRoadType
|
||||||
} = searchRequest;
|
} = searchRequest;
|
||||||
|
|
||||||
const longitudeColumn = sequelize.col("locationLong");
|
const longitudeColumn = sequelize.col("locationLong");
|
||||||
@@ -116,12 +128,20 @@ const findRealEstatesForSearchRequest = async (searchRequest, maxResults) => {
|
|||||||
|
|
||||||
const geoSearchQueryPart = sequelize.where(contains, true);
|
const geoSearchQueryPart = sequelize.where(contains, true);
|
||||||
|
|
||||||
|
//General queries contain only attributes that are defined for every searchreq
|
||||||
|
|
||||||
|
//Query for case of complete ads
|
||||||
const query = {
|
const query = {
|
||||||
adType,
|
adType,
|
||||||
realEstateType,
|
realEstateType,
|
||||||
price: {
|
price: {
|
||||||
[Op.lte]: priceMax,
|
[Op.or]: {
|
||||||
[Op.gte]: priceMin
|
[Op.and]: {
|
||||||
|
[Op.lte]: priceMax,
|
||||||
|
[Op.gte]: priceMin
|
||||||
|
},
|
||||||
|
[Op.is]: null
|
||||||
|
}
|
||||||
},
|
},
|
||||||
area: {
|
area: {
|
||||||
[Op.lte]: sizeMax,
|
[Op.lte]: sizeMax,
|
||||||
@@ -130,10 +150,148 @@ const findRealEstatesForSearchRequest = async (searchRequest, maxResults) => {
|
|||||||
[Op.and]: geoSearchQueryPart
|
[Op.and]: geoSearchQueryPart
|
||||||
};
|
};
|
||||||
|
|
||||||
|
//Query for case of incomplete ads
|
||||||
|
const queryIncludeIncomplete = {
|
||||||
|
adType,
|
||||||
|
realEstateType,
|
||||||
|
price: {
|
||||||
|
[Op.or]: {
|
||||||
|
[Op.and]: {
|
||||||
|
[Op.lte]: priceMax,
|
||||||
|
[Op.gte]: priceMin
|
||||||
|
},
|
||||||
|
[Op.is]: null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
area: {
|
||||||
|
[Op.or]: {
|
||||||
|
[Op.and]: {
|
||||||
|
[Op.lte]: sizeMax,
|
||||||
|
[Op.gte]: sizeMin
|
||||||
|
},
|
||||||
|
[Op.is]: null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
[Op.and]: geoSearchQueryPart
|
||||||
|
};
|
||||||
|
|
||||||
|
//Every other attribute is checked separately and included in query only if it is defined
|
||||||
|
if (gardenSizeMax && gardenSizeMin) {
|
||||||
|
query.gardenSize = {
|
||||||
|
[Op.lte]: gardenSizeMax,
|
||||||
|
[Op.gte]: gardenSizeMin
|
||||||
|
};
|
||||||
|
queryIncludeIncomplete.gardenSize = {
|
||||||
|
[Op.or]: {
|
||||||
|
[Op.and]: {
|
||||||
|
[Op.lte]: gardenSizeMax,
|
||||||
|
[Op.gte]: gardenSizeMin
|
||||||
|
},
|
||||||
|
[Op.is]: null
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
if (numberOfRoomsMin && numberOfRoomsMax) {
|
||||||
|
query.numberOfRooms = {
|
||||||
|
[Op.lte]: numberOfRoomsMax,
|
||||||
|
[Op.gte]: numberOfRoomsMin
|
||||||
|
};
|
||||||
|
queryIncludeIncomplete.numberOfRooms = {
|
||||||
|
[Op.or]: {
|
||||||
|
[Op.and]: {
|
||||||
|
[Op.lte]: numberOfRoomsMax,
|
||||||
|
[Op.gte]: numberOfRoomsMin
|
||||||
|
},
|
||||||
|
[Op.is]: null
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
if (numberOfFloorsMin && numberOfFloorsMax) {
|
||||||
|
query.numberOfFloors = {
|
||||||
|
[Op.lte]: numberOfFloorsMax,
|
||||||
|
[Op.gte]: numberOfFloorsMin
|
||||||
|
};
|
||||||
|
queryIncludeIncomplete.numberOfFloors = {
|
||||||
|
[Op.or]: {
|
||||||
|
[Op.and]: {
|
||||||
|
[Op.lte]: numberOfFloorsMax,
|
||||||
|
[Op.gte]: numberOfFloorsMin
|
||||||
|
},
|
||||||
|
[Op.is]: null
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
if (floorMin && floorMax) {
|
||||||
|
query.floor = {
|
||||||
|
[Op.lte]: floorMax,
|
||||||
|
[Op.gte]: floorMin
|
||||||
|
};
|
||||||
|
queryIncludeIncomplete.floor = {
|
||||||
|
[Op.or]: {
|
||||||
|
[Op.and]: {
|
||||||
|
[Op.lte]: floorMax,
|
||||||
|
[Op.gte]: floorMin
|
||||||
|
},
|
||||||
|
[Op.is]: null
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
if (balcony) {
|
||||||
|
query.balcony = {
|
||||||
|
[Op.eq]: balcony
|
||||||
|
};
|
||||||
|
queryIncludeIncomplete.balcony = {
|
||||||
|
[Op.or]: {
|
||||||
|
[Op.eq]: balcony,
|
||||||
|
[Op.is]: null
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
if (newBuilding) {
|
||||||
|
query.newBuilding = {
|
||||||
|
[Op.eq]: newBuilding
|
||||||
|
};
|
||||||
|
queryIncludeIncomplete.newBuilding = {
|
||||||
|
[Op.or]: {
|
||||||
|
[Op.eq]: newBuilding,
|
||||||
|
[Op.is]: null
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
if (elevator) {
|
||||||
|
query.elevator = {
|
||||||
|
[Op.eq]: elevator
|
||||||
|
};
|
||||||
|
queryIncludeIncomplete.elevator = {
|
||||||
|
[Op.or]: {
|
||||||
|
[Op.eq]: elevator,
|
||||||
|
[Op.is]: null
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
if (accessRoadType !== "ANY") {
|
||||||
|
query.accessRoadType = {
|
||||||
|
[Op.eq]: accessRoadType
|
||||||
|
};
|
||||||
|
queryIncludeIncomplete.accessRoadType = {
|
||||||
|
[Op.or]: {
|
||||||
|
[Op.eq]: accessRoadType,
|
||||||
|
[Op.is]: null
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
const order = [["updatedAt", "desc"]];
|
const order = [["updatedAt", "desc"]];
|
||||||
|
|
||||||
return await db.RealEstate.findAll({
|
return db.RealEstate.findAll({
|
||||||
where: query,
|
where: includeIncompleteAds ? queryIncludeIncomplete : query,
|
||||||
limit: maxResults,
|
limit: maxResults,
|
||||||
order
|
order
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -2,11 +2,13 @@
|
|||||||
const db = require("../../models/index");
|
const db = require("../../models/index");
|
||||||
const sequelize = require("sequelize");
|
const sequelize = require("sequelize");
|
||||||
const Op = sequelize.Op;
|
const Op = sequelize.Op;
|
||||||
|
const { AD_CATEGORY } = require("../../common/enums");
|
||||||
|
|
||||||
const getSearchRequest = async searchRequestId => {
|
const getSearchRequest = async searchRequestId => {
|
||||||
try {
|
try {
|
||||||
return await db.SearchRequest.findByPk(searchRequestId);
|
return await db.SearchRequest.findByPk(searchRequestId);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
|
console.log("searchrequest.js", error);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@@ -22,7 +24,15 @@ const findSearchRequestsForRealEstate = async realEstate => {
|
|||||||
adType,
|
adType,
|
||||||
realEstateType,
|
realEstateType,
|
||||||
locationLat,
|
locationLat,
|
||||||
locationLong
|
locationLong,
|
||||||
|
accessRoadType,
|
||||||
|
balcony,
|
||||||
|
newBuilding,
|
||||||
|
elevator,
|
||||||
|
gardenSize,
|
||||||
|
numberOfRooms,
|
||||||
|
numberOfFloors,
|
||||||
|
floor
|
||||||
} = realEstate;
|
} = realEstate;
|
||||||
|
|
||||||
if (!locationLat || !locationLong) {
|
if (!locationLat || !locationLong) {
|
||||||
@@ -39,12 +49,20 @@ const findSearchRequestsForRealEstate = async realEstate => {
|
|||||||
|
|
||||||
const geoSearchQueryPart = sequelize.where(contains, true);
|
const geoSearchQueryPart = sequelize.where(contains, true);
|
||||||
|
|
||||||
|
//General query contains only attributes that are defined for every RealEstate - not null
|
||||||
const query = {
|
const query = {
|
||||||
adType,
|
adType,
|
||||||
realEstateType,
|
realEstateType,
|
||||||
subscribed: true,
|
subscribed: true,
|
||||||
[Op.and]: geoSearchQueryPart
|
[Op.and]: geoSearchQueryPart
|
||||||
};
|
};
|
||||||
|
//Needed for defining which attribute should exist or not
|
||||||
|
const realEstateTypeObject = AD_CATEGORY[realEstateType];
|
||||||
|
//Needed to decide on including incomplete RealEstates data
|
||||||
|
let checkForIncompleteWanted = false;
|
||||||
|
|
||||||
|
//Attributes are checked separately and included in query only if defined
|
||||||
|
//Price and area should be defined for every property
|
||||||
|
|
||||||
if (price) {
|
if (price) {
|
||||||
query.priceMin = {
|
query.priceMin = {
|
||||||
@@ -62,8 +80,96 @@ const findSearchRequestsForRealEstate = async realEstate => {
|
|||||||
query.sizeMax = {
|
query.sizeMax = {
|
||||||
[Op.gte]: area
|
[Op.gte]: area
|
||||||
};
|
};
|
||||||
|
} else {
|
||||||
|
checkForIncompleteWanted = true;
|
||||||
|
}
|
||||||
|
//Other attributes can be defined or not depending on RealEstate type
|
||||||
|
if (gardenSize) {
|
||||||
|
query.gardenSizeMin = {
|
||||||
|
[Op.lte]: gardenSize
|
||||||
|
};
|
||||||
|
query.gardenSizeMax = {
|
||||||
|
[Op.gte]: gardenSize
|
||||||
|
};
|
||||||
|
} else if (realEstateTypeObject.hasGardenSize) {
|
||||||
|
checkForIncompleteWanted = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (numberOfRooms) {
|
||||||
|
query.numberOfRoomsMin = {
|
||||||
|
[Op.lte]: numberOfRooms
|
||||||
|
};
|
||||||
|
query.numberOfRoomsMax = {
|
||||||
|
[Op.gte]: numberOfRooms
|
||||||
|
};
|
||||||
|
} else if (realEstateTypeObject.hasNumberOfRoom) {
|
||||||
|
checkForIncompleteWanted = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (numberOfFloors) {
|
||||||
|
query.numberOfFloorsMin = {
|
||||||
|
[Op.lte]: numberOfFloors
|
||||||
|
};
|
||||||
|
query.numberOfFloorsMax = {
|
||||||
|
[Op.gte]: numberOfFloors
|
||||||
|
};
|
||||||
|
} else if (realEstateTypeObject.hasNumberOfFloors) {
|
||||||
|
checkForIncompleteWanted = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (floor) {
|
||||||
|
query.floorMin = {
|
||||||
|
[Op.lte]: floor
|
||||||
|
};
|
||||||
|
query.floorMax = {
|
||||||
|
[Op.gte]: floor
|
||||||
|
};
|
||||||
|
} else if (realEstateTypeObject.hasFloorProp) {
|
||||||
|
checkForIncompleteWanted = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (accessRoadType) {
|
||||||
|
query.accessRoadType = {
|
||||||
|
[Op.or]: {
|
||||||
|
[Op.eq]: "ANY",
|
||||||
|
[Op.eq]: accessRoadType
|
||||||
|
}
|
||||||
|
};
|
||||||
|
} else if (realEstateTypeObject.hasAccesRoadType) {
|
||||||
|
checkForIncompleteWanted = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (balcony) {
|
||||||
|
query.balcony = {
|
||||||
|
[Op.eq]: balcony
|
||||||
|
};
|
||||||
|
} else if (realEstateTypeObject.hasBalconyProp) {
|
||||||
|
checkForIncompleteWanted = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (newBuilding) {
|
||||||
|
query.newBuilding = {
|
||||||
|
[Op.eq]: newBuilding
|
||||||
|
};
|
||||||
|
} else if (realEstateTypeObject.hasNewBuildingProp) {
|
||||||
|
checkForIncompleteWanted = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (elevator) {
|
||||||
|
query.elevator = {
|
||||||
|
[Op.eq]: elevator
|
||||||
|
};
|
||||||
|
} else if (realEstateTypeObject.hasElevatorProp) {
|
||||||
|
checkForIncompleteWanted = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
//If one of the attributes that exists for property type is null
|
||||||
|
//we include in query to check if incomplete real estates are accepted
|
||||||
|
if (checkForIncompleteWanted) {
|
||||||
|
query.includeIncompleteAds = {
|
||||||
|
[Op.eq]: true
|
||||||
|
};
|
||||||
|
}
|
||||||
return await db.SearchRequest.findAll({ where: query });
|
return await db.SearchRequest.findAll({ where: query });
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,64 @@
|
|||||||
|
"use strict";
|
||||||
|
const { ACCESS_ROAD_TYPE, HEATING_TYPE } = require("../common/enums");
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
up: (queryInterface, Sequelize) => {
|
||||||
|
return Promise.all([
|
||||||
|
queryInterface.addColumn("SearchRequests", "includeIncompleteAds", {
|
||||||
|
type: Sequelize.BOOLEAN
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("SearchRequests", "balcony", {
|
||||||
|
type: Sequelize.BOOLEAN
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("SearchRequests", "newBuilding", {
|
||||||
|
type: Sequelize.BOOLEAN
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("SearchRequests", "elevator", {
|
||||||
|
type: Sequelize.BOOLEAN
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("SearchRequests", "numberOfRoomsMin", {
|
||||||
|
type: Sequelize.REAL
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("SearchRequests", "numberOfRoomsMax", {
|
||||||
|
type: Sequelize.REAL
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("SearchRequests", "numberOfFloorsMin", {
|
||||||
|
type: Sequelize.INTEGER
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("SearchRequests", "numberOfFloorsMax", {
|
||||||
|
type: Sequelize.INTEGER
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("SearchRequests", "floorMin", {
|
||||||
|
type: Sequelize.INTEGER
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("SearchRequests", "floorMax", {
|
||||||
|
type: Sequelize.INTEGER
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("SearchRequests", "accessRoadType", {
|
||||||
|
type: Sequelize.TEXT,
|
||||||
|
defaultValue: ACCESS_ROAD_TYPE.ANY.id
|
||||||
|
}),
|
||||||
|
queryInterface.addColumn("SearchRequests", "heatingType", {
|
||||||
|
type: Sequelize.TEXT,
|
||||||
|
defaultValue: HEATING_TYPE.ANY.id
|
||||||
|
})
|
||||||
|
]);
|
||||||
|
},
|
||||||
|
|
||||||
|
down: (queryInterface, Sequelize) => {
|
||||||
|
return Promise.all([
|
||||||
|
queryInterface.removeColumn("SearchRequests", "includeIncompleteAds"),
|
||||||
|
queryInterface.removeColumn("SearchRequests", "balcony"),
|
||||||
|
queryInterface.removeColumn("SearchRequests", "newBuilding"),
|
||||||
|
queryInterface.removeColumn("SearchRequests", "elevator"),
|
||||||
|
queryInterface.removeColumn("SearchRequests", "numberOfRoomsMin"),
|
||||||
|
queryInterface.removeColumn("SearchRequests", "numberOfRoomsMax"),
|
||||||
|
queryInterface.removeColumn("SearchRequests", "numberOfFloorsMin"),
|
||||||
|
queryInterface.removeColumn("SearchRequests", "numberOfFloorsMax"),
|
||||||
|
queryInterface.removeColumn("SearchRequests", "floorMin"),
|
||||||
|
queryInterface.removeColumn("SearchRequests", "floorMax"),
|
||||||
|
queryInterface.removeColumn("SearchRequests", "accessRoadType"),
|
||||||
|
queryInterface.removeColumn("SearchRequests", "heatingType")
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
};
|
||||||
@@ -69,7 +69,19 @@ module.exports = (sequelize, DataTypes) => {
|
|||||||
},
|
},
|
||||||
deletedEmail: {
|
deletedEmail: {
|
||||||
type: DataTypes.TEXT
|
type: DataTypes.TEXT
|
||||||
}
|
},
|
||||||
|
includeIncompleteAds: DataTypes.BOOLEAN,
|
||||||
|
balcony: DataTypes.BOOLEAN,
|
||||||
|
elevator: DataTypes.BOOLEAN,
|
||||||
|
newBuilding: DataTypes.BOOLEAN,
|
||||||
|
numberOfRoomsMin: DataTypes.REAL,
|
||||||
|
numberOfRoomsMax: DataTypes.REAL,
|
||||||
|
numberOfFloorsMin: DataTypes.INTEGER,
|
||||||
|
numberOfFloorsMax: DataTypes.INTEGER,
|
||||||
|
floorMin: DataTypes.INTEGER,
|
||||||
|
floorMax: DataTypes.INTEGER,
|
||||||
|
accessRoadType: DataTypes.TEXT,
|
||||||
|
heatingType: DataTypes.TEXT
|
||||||
});
|
});
|
||||||
|
|
||||||
return SearchRequest;
|
return SearchRequest;
|
||||||
|
|||||||
@@ -110,3 +110,47 @@ h3 {
|
|||||||
.collection a.collection-item:not(.active):hover {
|
.collection a.collection-item:not(.active):hover {
|
||||||
background-color: rgba(2, 173, 186, 0.2);
|
background-color: rgba(2, 173, 186, 0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.tabs .tab a {
|
||||||
|
color: #02adba;
|
||||||
|
-webkit-transition: color 0.28s ease, background-color 0.28s ease;
|
||||||
|
transition: color 0.28s ease, background-color 0.28s ease;
|
||||||
|
}
|
||||||
|
.tabs .tab a:focus,
|
||||||
|
.tabs .tab a:focus.active {
|
||||||
|
background-color: rgba(2, 173, 186, 0.2);
|
||||||
|
}
|
||||||
|
.tabs .tab a:hover,
|
||||||
|
.tabs .tab a.active {
|
||||||
|
color: #02adba;
|
||||||
|
}
|
||||||
|
.tabs .indicator {
|
||||||
|
background-color: #02adba;
|
||||||
|
}
|
||||||
|
|
||||||
|
[type="checkbox"].filled-in:checked + span:not(.lever):after {
|
||||||
|
border: 2px solid #02adba;
|
||||||
|
background-color: #02adba;
|
||||||
|
}
|
||||||
|
[type="checkbox"].filled-in:not(:checked) + span:not(.lever):after {
|
||||||
|
background-color: transparent;
|
||||||
|
border: 2px solid #02adba;
|
||||||
|
}
|
||||||
|
|
||||||
|
.distinguished {
|
||||||
|
border: 2px solid #02adba;
|
||||||
|
border-radius: 4px;
|
||||||
|
padding: 5px 5px 3px 5px;
|
||||||
|
margin-left: -5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.checkbox-label {
|
||||||
|
color: black;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.column-label {
|
||||||
|
position: relative;
|
||||||
|
margin-top: 2rem;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|||||||
@@ -25,6 +25,12 @@
|
|||||||
border-right: 1px solid #02adba;
|
border-right: 1px solid #02adba;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.segmented.small [type="radio"]:not(:checked) + span,
|
||||||
|
.segmented.small [type="radio"]:checked + span {
|
||||||
|
padding-left: 7px;
|
||||||
|
padding-right: 7px;
|
||||||
|
}
|
||||||
|
|
||||||
.segmented :last-child .label {
|
.segmented :last-child .label {
|
||||||
border-right: none;
|
border-right: none;
|
||||||
}
|
}
|
||||||
|
|||||||
69
app/views/advancedFilters.ejs
Normal file
69
app/views/advancedFilters.ejs
Normal file
@@ -0,0 +1,69 @@
|
|||||||
|
<br>
|
||||||
|
|
||||||
|
<% for (const filter of advancedBooleanFilterObjects){ %>
|
||||||
|
<p>
|
||||||
|
<label class="checkbox-label">
|
||||||
|
<input type="checkbox" class="filled-in" name="<%= filter.dbField %>"
|
||||||
|
<% if (advancedBooleanFilterValues[filter.dbField]) { %>
|
||||||
|
checked
|
||||||
|
<% } %>>
|
||||||
|
<span><%= filter.title %></span>
|
||||||
|
</label>
|
||||||
|
</p>
|
||||||
|
<% } %>
|
||||||
|
|
||||||
|
<br>
|
||||||
|
<% for (const filter of advancedRangeFilterObjects){ %>
|
||||||
|
<div class="row">
|
||||||
|
<p class="column-label col s5 m3 l2">
|
||||||
|
<%= filter.title %>
|
||||||
|
</p>
|
||||||
|
<div class="input-field col s3 m4 l5">
|
||||||
|
<input
|
||||||
|
id="<%= filter.dbFieldMin %>"
|
||||||
|
name="<%= filter.dbFieldMin %>"
|
||||||
|
type="number"
|
||||||
|
value="<%= advancedRangeFilterValues[filter.dbFieldMin] !== undefined ? advancedRangeFilterValues[filter.dbFieldMin] : ""%>"
|
||||||
|
>
|
||||||
|
<label for="<%= filter.dbFieldMin %>">Od</label>
|
||||||
|
</div>
|
||||||
|
<div class="input-field col s3 m4 l5">
|
||||||
|
<input
|
||||||
|
id="<%= filter.dbFieldMax %>"
|
||||||
|
name="<%= filter.dbFieldMax %>"
|
||||||
|
type="number"
|
||||||
|
value="<%= advancedRangeFilterValues[filter.dbFieldMax] !== undefined ? advancedRangeFilterValues[filter.dbFieldMax] : ""%>"
|
||||||
|
>
|
||||||
|
<label for="<%= filter.dbFieldMax %>">Do</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<% } %>
|
||||||
|
|
||||||
|
<br>
|
||||||
|
<% for (const filter of advancedSegmentSelectFilterObjects){ %>
|
||||||
|
<div>
|
||||||
|
<label class="checkbox-label"><%= filter.title %>: </label><br><br>
|
||||||
|
<span class="segmented small">
|
||||||
|
<% for (const segmentObject of filter.values) { %>
|
||||||
|
<label>
|
||||||
|
<input type="radio" name="<%= filter.dbField %>" value="<%= segmentObject.id %>"
|
||||||
|
<% if (advancedSegmentSelectFilterValues[filter.dbField] === segmentObject.id) { %>
|
||||||
|
checked
|
||||||
|
<% } %>>
|
||||||
|
<span class="label"><%= segmentObject.title %></span>
|
||||||
|
</label>
|
||||||
|
<% } %>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<% } %>
|
||||||
|
|
||||||
|
<br>
|
||||||
|
<p class="distinguished">
|
||||||
|
<label class="checkbox-label">
|
||||||
|
<input type="checkbox" class="filled-in" name="includeIncompleteAds"
|
||||||
|
<% if (includeIncompleteAds) { %>
|
||||||
|
checked
|
||||||
|
<% } %>>
|
||||||
|
<span>Uključi i oglase bez potpunih informacija</span>
|
||||||
|
</label>
|
||||||
|
</p>
|
||||||
@@ -1,13 +1,17 @@
|
|||||||
<div class="row center-align">
|
<div class="row center-align">
|
||||||
<h3>
|
<h3>
|
||||||
Područje na mapi će biti uključeno u pretragu. Namjestite mapu na ulice
|
Područje na mapi će biti uključeno u pretragu. Namjestite mapu na ulice koje
|
||||||
koje želite da budu vidljive.
|
želite da budu vidljive.
|
||||||
</h3>
|
</h3>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="row center-align">
|
<div class="row center-align">
|
||||||
<div class="col s12 m12 l12 xl12">
|
<div class="col s12 m12 l12 xl12">
|
||||||
<input id="autocompleteInput" placeholder="Unesite grad, naselje ili ulicu..." type="text" />
|
<input
|
||||||
|
id="autocompleteInput"
|
||||||
|
placeholder="Unesite grad, naselje ili ulicu..."
|
||||||
|
type="text"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -17,12 +21,17 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<br>
|
<br />
|
||||||
|
|
||||||
<form method="POST" id="form-map-output">
|
<form method="POST" id="form-map-output">
|
||||||
<div class="row center-align">
|
<div class="row center-align">
|
||||||
<div class="col s6 push-s3">
|
<div class="col s6 push-s3">
|
||||||
<a id="submit" href="#" class="welcome-center-button waves-effect waves-light btn">Dalje</a>
|
<a
|
||||||
|
id="submit"
|
||||||
|
href="#"
|
||||||
|
class="welcome-center-button waves-effect waves-light btn"
|
||||||
|
>Dalje</a
|
||||||
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<input type="hidden" name="north" id="north" />
|
<input type="hidden" name="north" id="north" />
|
||||||
@@ -41,15 +50,15 @@
|
|||||||
|
|
||||||
function locateMe() {
|
function locateMe() {
|
||||||
if (navigator.geolocation) {
|
if (navigator.geolocation) {
|
||||||
|
function onLocationSuccess(position) {
|
||||||
function onLocationSuccess (position) {
|
const coordinates =
|
||||||
const coordinates = position && position.coords ? position.coords : null;
|
position && position.coords ? position.coords : null;
|
||||||
if (coordinates){
|
if (coordinates) {
|
||||||
const longitude = coordinates.longitude || null;
|
const longitude = coordinates.longitude || null;
|
||||||
const latitude = coordinates.latitude || null;
|
const latitude = coordinates.latitude || null;
|
||||||
|
|
||||||
if (longitude && latitude && map){
|
if (longitude && latitude && map) {
|
||||||
map.setCenter({lat: latitude, lng: longitude});
|
map.setCenter({ lat: latitude, lng: longitude });
|
||||||
map.setZoom(16);
|
map.setZoom(16);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -61,20 +70,20 @@
|
|||||||
|
|
||||||
function initMap() {
|
function initMap() {
|
||||||
const BOSNIA_BOUNDS = {
|
const BOSNIA_BOUNDS = {
|
||||||
north: 45.70,
|
north: 45.7,
|
||||||
south: 41.69,
|
south: 41.69,
|
||||||
west: 15.55,
|
west: 15.55,
|
||||||
east: 20.77,
|
east: 20.77
|
||||||
};
|
};
|
||||||
const SARAJEVO_COORDINATES = {
|
const SARAJEVO_COORDINATES = {
|
||||||
lat: 43.85,
|
lat: 43.85,
|
||||||
lng: 18.41,
|
lng: 18.41
|
||||||
};
|
};
|
||||||
|
|
||||||
const mapElement = document.getElementById('map');
|
const mapElement = document.getElementById("map");
|
||||||
const restrictMapPanningToBosniaOnly = {
|
const restrictMapPanningToBosniaOnly = {
|
||||||
latLngBounds: BOSNIA_BOUNDS,
|
latLngBounds: BOSNIA_BOUNDS,
|
||||||
strictBounds: true,
|
strictBounds: true
|
||||||
};
|
};
|
||||||
const initialMapParams = {
|
const initialMapParams = {
|
||||||
center: SARAJEVO_COORDINATES,
|
center: SARAJEVO_COORDINATES,
|
||||||
@@ -87,38 +96,50 @@
|
|||||||
};
|
};
|
||||||
map = new google.maps.Map(mapElement, initialMapParams);
|
map = new google.maps.Map(mapElement, initialMapParams);
|
||||||
|
|
||||||
const inputElement = document.getElementById('autocompleteInput');
|
const inputElement = document.getElementById("autocompleteInput");
|
||||||
const restrictAutocompleteResultsToBosniaOnly = {'country': 'ba'};
|
const restrictAutocompleteResultsToBosniaOnly = { country: "ba" };
|
||||||
const initialAutocompleteParams = {
|
const initialAutocompleteParams = {
|
||||||
types: ['geocode'],
|
types: ["geocode"],
|
||||||
componentRestrictions: restrictAutocompleteResultsToBosniaOnly,
|
componentRestrictions: restrictAutocompleteResultsToBosniaOnly,
|
||||||
fields: ['geometry', 'types', 'address_components']
|
fields: ["geometry", "types", "address_components"]
|
||||||
};
|
};
|
||||||
|
|
||||||
autocomplete = new google.maps.places.Autocomplete(inputElement, initialAutocompleteParams);
|
autocomplete = new google.maps.places.Autocomplete(
|
||||||
autocomplete.bindTo('bounds', map);
|
inputElement,
|
||||||
autocomplete.addListener('place_changed', onPlaceChanged);
|
initialAutocompleteParams
|
||||||
|
);
|
||||||
|
autocomplete.bindTo("bounds", map);
|
||||||
|
autocomplete.addListener("place_changed", onPlaceChanged);
|
||||||
pacSelectFirst(inputElement);
|
pacSelectFirst(inputElement);
|
||||||
addLocateMeButton(map);
|
addLocateMeButton(map);
|
||||||
|
|
||||||
|
//After map initialization we check if area is already selected
|
||||||
|
//If yes we bound map to show already selected area
|
||||||
|
const boundsSelected = <%- boundsSelected %>;
|
||||||
|
const selectedLatLngBounds = <%- JSON.stringify(selectedLatLngBounds) %>;
|
||||||
|
|
||||||
|
if (boundsSelected) {
|
||||||
|
boundMapToSelected(map, selectedLatLngBounds);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function addLocateMeButton(map) {
|
function addLocateMeButton(map) {
|
||||||
var parent = document.createElement('div');
|
var parent = document.createElement("div");
|
||||||
parent.className = "locate-me-container";
|
parent.className = "locate-me-container";
|
||||||
|
|
||||||
var a = document.createElement('a');
|
var a = document.createElement("a");
|
||||||
a.id = "locateMe";
|
a.id = "locateMe";
|
||||||
a.className = "btn-floating";
|
a.className = "btn-floating";
|
||||||
|
|
||||||
var i = document.createElement('i');
|
var i = document.createElement("i");
|
||||||
i.innerText = "gps_fixed";
|
i.innerText = "gps_fixed";
|
||||||
i.className = "material-icons right";
|
i.className = "material-icons right";
|
||||||
|
|
||||||
a.appendChild(i)
|
a.appendChild(i);
|
||||||
a.addEventListener("click", locateMe);
|
a.addEventListener("click", locateMe);
|
||||||
parent.appendChild(a)
|
parent.appendChild(a);
|
||||||
|
|
||||||
map.controls[google.maps.ControlPosition.RIGHT_BOTTOM].push(parent)
|
map.controls[google.maps.ControlPosition.RIGHT_BOTTOM].push(parent);
|
||||||
}
|
}
|
||||||
|
|
||||||
function onPlaceChanged() {
|
function onPlaceChanged() {
|
||||||
@@ -133,33 +154,49 @@
|
|||||||
function pacSelectFirst(input) {
|
function pacSelectFirst(input) {
|
||||||
// store the original event binding function
|
// store the original event binding function
|
||||||
const _addEventListener = input.addEventListener
|
const _addEventListener = input.addEventListener
|
||||||
? input.addEventListener
|
? input.addEventListener
|
||||||
: input.attachEvent
|
: input.attachEvent;
|
||||||
|
|
||||||
function addEventListenerWrapper (type, listener) {
|
function addEventListenerWrapper(type, listener) {
|
||||||
// Simulate a 'down arrow' keypress on hitting 'return' when no pac suggestion is selected,
|
// Simulate a 'down arrow' keypress on hitting 'return' when no pac suggestion is selected,
|
||||||
// and then trigger the original listener.
|
// and then trigger the original listener.
|
||||||
if (type == 'keydown') {
|
if (type == "keydown") {
|
||||||
const originalListener = listener
|
const originalListener = listener;
|
||||||
listener = function (event) {
|
listener = function(event) {
|
||||||
const suggestionSelected = $('.pac-item-selected').length > 0
|
const suggestionSelected = $(".pac-item-selected").length > 0;
|
||||||
if (event.key == 'Enter' && !suggestionSelected) {
|
if (event.key == "Enter" && !suggestionSelected) {
|
||||||
const simulatedDownArrow = $.Event('keydown', {
|
const simulatedDownArrow = $.Event("keydown", {
|
||||||
keyCode: 40,
|
keyCode: 40,
|
||||||
which: 40
|
which: 40
|
||||||
})
|
});
|
||||||
originalListener.apply(input, [simulatedDownArrow])
|
originalListener.apply(input, [simulatedDownArrow]);
|
||||||
}
|
}
|
||||||
|
|
||||||
originalListener.apply(input, [event])
|
originalListener.apply(input, [event]);
|
||||||
}
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
_addEventListener.apply(input, [type, listener])
|
_addEventListener.apply(input, [type, listener]);
|
||||||
}
|
}
|
||||||
|
|
||||||
input.addEventListener = addEventListenerWrapper
|
input.addEventListener = addEventListenerWrapper;
|
||||||
input.attachEvent = addEventListenerWrapper
|
input.attachEvent = addEventListenerWrapper;
|
||||||
|
}
|
||||||
|
function boundMapToSelected(map, selectedLatLngBounds) {
|
||||||
|
|
||||||
|
const swBound = new google.maps.LatLng(
|
||||||
|
selectedLatLngBounds.swLat,
|
||||||
|
selectedLatLngBounds.swLng
|
||||||
|
);
|
||||||
|
const neBound = new google.maps.LatLng(
|
||||||
|
selectedLatLngBounds.neLat,
|
||||||
|
selectedLatLngBounds.neLng
|
||||||
|
);
|
||||||
|
let bounds = new google.maps.LatLngBounds();
|
||||||
|
bounds.extend(swBound);
|
||||||
|
bounds.extend(neBound);
|
||||||
|
|
||||||
|
map.fitBounds(bounds);
|
||||||
}
|
}
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
@@ -171,11 +208,16 @@
|
|||||||
$("#east").val(mapBounds.getNorthEast().lng());
|
$("#east").val(mapBounds.getNorthEast().lng());
|
||||||
$("#west").val(mapBounds.getSouthWest().lng());
|
$("#west").val(mapBounds.getSouthWest().lng());
|
||||||
|
|
||||||
$("#locationInput").val(document.getElementById('autocompleteInput').value);
|
$("#locationInput").val(
|
||||||
|
document.getElementById("autocompleteInput").value
|
||||||
|
);
|
||||||
|
|
||||||
$("#form-map-output").submit();
|
$("#form-map-output").submit();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAna8ohfV2HBMcxGk_29vqxU5Z_bDickqg&language=bs&libraries=places&callback=initMap" async
|
<script
|
||||||
defer></script>
|
src="https://maps.googleapis.com/maps/api/js?key=<%= process.env.API_MAP_KEY %>&language=bs&libraries=places&callback=initMap"
|
||||||
|
async
|
||||||
|
defer
|
||||||
|
></script>
|
||||||
|
|||||||
@@ -1,63 +1,20 @@
|
|||||||
|
<br>
|
||||||
<form id="filtersForm" method="POST">
|
<form id="filtersForm" method="POST">
|
||||||
<br>
|
|
||||||
|
|
||||||
<div class="row center-align">
|
|
||||||
<h5>Cijena</h5>
|
|
||||||
<br><br>
|
|
||||||
<div class="center-align no-ui-slider" id="priceFilter"></div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<br>
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col s5 m3 l3 push-m1 push-l2">
|
<div class="col s12">
|
||||||
<input class="sliderInputBox" type="number" id="priceMin" name="priceMin">
|
<ul class="tabs">
|
||||||
|
<li class="tab col s6"><a href="#standardFilters">Filteri</a></li>
|
||||||
|
<li class="tab col s6"><a href="#advancedFilters">Napredni filteri</a></li>
|
||||||
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="col s5 m3 l3 push-s1 push-m4 push-l4">
|
<div id="standardFilters" class="col s12">
|
||||||
<input class="sliderInputBox" type="number" id="priceMax" name="priceMax">
|
<%- include("./standardFilters.ejs") %>
|
||||||
|
</div>
|
||||||
|
<div id="advancedFilters" class="col s12">
|
||||||
|
<%- include("./advancedFilters.ejs") %>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<br>
|
|
||||||
|
|
||||||
<div class="row center-align">
|
|
||||||
<h5>Površina</h5>
|
|
||||||
<br><br>
|
|
||||||
<div class="center-align no-ui-slider" id="sizeFilter"></div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<br>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col s5 m3 l3 push-m1 push-l2">
|
|
||||||
<input class="sliderInputBox" type="number" id="sizeMin" name="sizeMin">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col s5 m3 l3 push-s1 push-m4 push-l4">
|
|
||||||
<input class="sliderInputBox" type="number" id="sizeMax" name="sizeMax">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<br>
|
|
||||||
|
|
||||||
<% if(hasGardenSize) { %>
|
|
||||||
<div class="row center-align">
|
|
||||||
<h5>Površina okućnice</h5>
|
|
||||||
<br><br>
|
|
||||||
<div class="center-align no-ui-slider" id="gardenSizeFilter"></div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<br>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col s5 m3 l3 push-m1 push-l2">
|
|
||||||
<input class="sliderInputBox" type="number" id="gardenSizeMin" name="gardenSizeMin">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="col s5 m3 l3 push-s1 push-m4 push-l4">
|
|
||||||
<input class="sliderInputBox" type="number" id="gardenSizeMax" name="gardenSizeMax">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<% } %>
|
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col s6 push-s3">
|
<div class="col s6 push-s3">
|
||||||
<a id="submit" href="#" class="welcome-center-button waves-effect waves-light btn">Dalje</a>
|
<a id="submit" href="#" class="welcome-center-button waves-effect waves-light btn">Dalje</a>
|
||||||
@@ -66,125 +23,7 @@
|
|||||||
</form>
|
</form>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
$(document).ready(function() {
|
$(document).ready(function(){
|
||||||
const priceSliderOptions = <%- priceSliderOptions %>;
|
$('.tabs').tabs();
|
||||||
const sizeSliderOptions = <%- sizeSliderOptions %>;
|
|
||||||
const priceStep = priceSliderOptions.step;
|
|
||||||
const sizeStep = sizeSliderOptions.step;
|
|
||||||
delete priceSliderOptions.step;
|
|
||||||
delete sizeSliderOptions.step;
|
|
||||||
|
|
||||||
function updatePriceInputs(values, handle, unencoded) {
|
|
||||||
$("#priceMin").val(Math.round(unencoded[0]/priceStep)*priceStep);
|
|
||||||
$("#priceMax").val(Math.round(unencoded[1]/priceStep)*priceStep);
|
|
||||||
}
|
|
||||||
function updateSizeInputs(values, handle, unencoded) {
|
|
||||||
$("#sizeMin").val(Math.round(unencoded[0]/sizeStep)*sizeStep);
|
|
||||||
$("#sizeMax").val(Math.round(unencoded[1]/sizeStep)*sizeStep);
|
|
||||||
}
|
|
||||||
|
|
||||||
const priceSlider = document.getElementById("priceFilter");
|
|
||||||
const sizeSlider = document.getElementById("sizeFilter");
|
|
||||||
|
|
||||||
const priceSliderObject = noUiSlider.create(priceSlider, priceSliderOptions);
|
|
||||||
const sizeSliderObject = noUiSlider.create(sizeSlider, sizeSliderOptions);
|
|
||||||
|
|
||||||
priceSliderObject.on('slide', updatePriceInputs);
|
|
||||||
sizeSliderObject.on('slide', updateSizeInputs);
|
|
||||||
|
|
||||||
function priceMinChangeHandler(element) {
|
|
||||||
if (element && element.currentTarget && element.currentTarget.value){
|
|
||||||
const currentValues = priceSliderObject.get();
|
|
||||||
const newValue = element.currentTarget.value;
|
|
||||||
const fixedNewValue = newValue > currentValues[1] ? currentValues[1] : newValue;
|
|
||||||
priceSliderObject.set([fixedNewValue, null]);
|
|
||||||
$("#priceMin").val(Math.round(priceSliderObject.get()[0]));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
function priceMaxChangeHandler(element) {
|
|
||||||
if (element && element.currentTarget && element.currentTarget.value){
|
|
||||||
const newValue = element.currentTarget.value;
|
|
||||||
priceSliderObject.set([null, newValue]);
|
|
||||||
$("#priceMax").val(Math.round(priceSliderObject.get()[1]));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
$("#priceMin").val(priceSliderOptions.start[0]);
|
|
||||||
$("#priceMax").val(priceSliderOptions.start[1]);
|
|
||||||
$("#priceMin").change(priceMinChangeHandler);
|
|
||||||
$("#priceMax").change(priceMaxChangeHandler);
|
|
||||||
|
|
||||||
function sizeMinChangeHandler(element) {
|
|
||||||
if (element && element.currentTarget && element.currentTarget.value){
|
|
||||||
const currentValues = sizeSliderObject.get();
|
|
||||||
const newValue = element.currentTarget.value;
|
|
||||||
const fixedNewValue = newValue > currentValues[1] ? currentValues[1] : newValue;
|
|
||||||
sizeSliderObject.set([fixedNewValue, null]);
|
|
||||||
$("#sizeMin").val(Math.round(sizeSliderObject.get()[0]));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
function sizeMaxChangeHandler(element) {
|
|
||||||
if (element && element.currentTarget && element.currentTarget.value){
|
|
||||||
const newValue = element.currentTarget.value;
|
|
||||||
sizeSliderObject.set([null, newValue]);
|
|
||||||
$("#sizeMax").val(Math.round(sizeSliderObject.get()[1]));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
$("#sizeMin").val(sizeSliderOptions.start[0]);
|
|
||||||
$("#sizeMax").val(sizeSliderOptions.start[1]);
|
|
||||||
$("#sizeMin").change(sizeMinChangeHandler);
|
|
||||||
$("#sizeMax").change(sizeMaxChangeHandler);
|
|
||||||
|
|
||||||
<% if(hasGardenSize) { %>
|
|
||||||
const gardenSizeSliderOptions = <%- gardenSizeSliderOptions %>;
|
|
||||||
const gardenSizeStep = gardenSizeSliderOptions.step;
|
|
||||||
delete gardenSizeSliderOptions.step;
|
|
||||||
|
|
||||||
function updateGardenSizeInputs(values, handle, unencoded) {
|
|
||||||
$("#gardenSizeMin").val(Math.round(unencoded[0]/gardenSizeStep)*gardenSizeStep);
|
|
||||||
$("#gardenSizeMax").val(Math.round(unencoded[1]/gardenSizeStep)*gardenSizeStep);
|
|
||||||
}
|
|
||||||
|
|
||||||
const gardenSizeSlider = document.getElementById("gardenSizeFilter");
|
|
||||||
const gardenSizeSliderObject = noUiSlider.create(gardenSizeSlider, gardenSizeSliderOptions);
|
|
||||||
gardenSizeSliderObject.on('slide', updateGardenSizeInputs);
|
|
||||||
function gardenSizeMinChangeHandler(element) {
|
|
||||||
if (element && element.currentTarget && element.currentTarget.value){
|
|
||||||
const currentValues = gardenSizeSliderObject.get();
|
|
||||||
const newValue = element.currentTarget.value;
|
|
||||||
const fixedNewValue = newValue > currentValues[1] ? currentValues[1] : newValue;
|
|
||||||
gardenSizeSliderObject.set([fixedNewValue, null]);
|
|
||||||
$("#gardenSizeMin").val(Math.round(gardenSizeSliderObject.get()[0]));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
function gardenSizeMaxChangeHandler(element) {
|
|
||||||
if (element && element.currentTarget && element.currentTarget.value){
|
|
||||||
const newValue = element.currentTarget.value;
|
|
||||||
gardenSizeSliderObject.set([null, newValue]);
|
|
||||||
$("#gardenSizeMin").val(Math.round(gardenSizeSliderObject.get()[0]));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
$("#gardenSizeMin").val(gardenSizeSliderOptions.start[0]);
|
|
||||||
$("#gardenSizeMax").val(gardenSizeSliderOptions.start[1]);
|
|
||||||
$("#gardenSizeMin").change("step", gardenSizeMinChangeHandler);
|
|
||||||
$("#gardenSizeMax").change("step", gardenSizeMaxChangeHandler);
|
|
||||||
<% } %>
|
|
||||||
|
|
||||||
$("#submit").click(function() {
|
|
||||||
const priceFilterValues = priceSlider.noUiSlider.get();
|
|
||||||
$("#priceFilterMin").val(priceFilterValues[0]);
|
|
||||||
$("#priceFilterMax").val(priceFilterValues[1]);
|
|
||||||
|
|
||||||
const sizeFilterValues = sizeSlider.noUiSlider.get();
|
|
||||||
$("#sizeFilterMin").val(sizeFilterValues[0]);
|
|
||||||
$("#sizeFilterMax").val(sizeFilterValues[1]);
|
|
||||||
|
|
||||||
<% if (hasGardenSize) { %>
|
|
||||||
const gardenSizeFilterValues = gardenSizeSlider.noUiSlider.get();
|
|
||||||
$("#gardenSizeFilterMin").val(gardenSizeFilterValues[0]);
|
|
||||||
$("#gardenSizeFilterMax").val(gardenSizeFilterValues[1]);
|
|
||||||
<% } %>
|
|
||||||
|
|
||||||
$("#filtersForm").submit();
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
195
app/views/standardFilters.ejs
Normal file
195
app/views/standardFilters.ejs
Normal file
@@ -0,0 +1,195 @@
|
|||||||
|
<br />
|
||||||
|
|
||||||
|
<div class="row center-align">
|
||||||
|
<h5>Cijena (KM)</h5>
|
||||||
|
<br /><br />
|
||||||
|
<div class="col s12">
|
||||||
|
<div class="center-align no-ui-slider" id="priceFilter"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<div class="row">
|
||||||
|
<div class="col s5 m3 l3 push-m1 push-l2">
|
||||||
|
<input class="sliderInputBox" type="number" id="priceMin" name="priceMin" />
|
||||||
|
</div>
|
||||||
|
<div class="col s5 m3 l3 push-s1 push-m4 push-l4">
|
||||||
|
<input class="sliderInputBox" type="number" id="priceMax" name="priceMax" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<div class="row center-align">
|
||||||
|
<h5>Površina (m<sup>2</sup>)</h5>
|
||||||
|
<br /><br />
|
||||||
|
<div class="col s12">
|
||||||
|
<div class="center-align no-ui-slider" id="sizeFilter"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<div class="row">
|
||||||
|
<div class="col s5 m3 l3 push-m1 push-l2">
|
||||||
|
<input class="sliderInputBox" type="number" id="sizeMin" name="sizeMin" />
|
||||||
|
</div>
|
||||||
|
<div class="col s5 m3 l3 push-s1 push-m4 push-l4">
|
||||||
|
<input class="sliderInputBox" type="number" id="sizeMax" name="sizeMax" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<% if(hasGardenSize) { %>
|
||||||
|
<div class="row center-align">
|
||||||
|
<h5>Površina okućnice (m<sup>2</sup>)</h5>
|
||||||
|
<br /><br />
|
||||||
|
<div class="col s12">
|
||||||
|
<div class="center-align no-ui-slider" id="gardenSizeFilter"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<div class="row">
|
||||||
|
<div class="col s5 m3 l3 push-m1 push-l2">
|
||||||
|
<input
|
||||||
|
class="sliderInputBox"
|
||||||
|
type="number"
|
||||||
|
id="gardenSizeMin"
|
||||||
|
name="gardenSizeMin"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="col s5 m3 l3 push-s1 push-m4 push-l4">
|
||||||
|
<input
|
||||||
|
class="sliderInputBox"
|
||||||
|
type="number"
|
||||||
|
id="gardenSizeMax"
|
||||||
|
name="gardenSizeMax"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<% } %>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
$(document).ready(function() {
|
||||||
|
const priceSliderOptions = <%- priceSliderOptions %>;
|
||||||
|
const sizeSliderOptions = <%- sizeSliderOptions %>;
|
||||||
|
const priceStep = priceSliderOptions.step;
|
||||||
|
const sizeStep = sizeSliderOptions.step;
|
||||||
|
delete priceSliderOptions.step;
|
||||||
|
delete sizeSliderOptions.step;
|
||||||
|
|
||||||
|
function updatePriceInputs(values, handle, unencoded) {
|
||||||
|
$("#priceMin").val(Math.round(unencoded[0]/priceStep)*priceStep);
|
||||||
|
$("#priceMax").val(Math.round(unencoded[1]/priceStep)*priceStep);
|
||||||
|
}
|
||||||
|
function updateSizeInputs(values, handle, unencoded) {
|
||||||
|
$("#sizeMin").val(Math.round(unencoded[0]/sizeStep)*sizeStep);
|
||||||
|
$("#sizeMax").val(Math.round(unencoded[1]/sizeStep)*sizeStep);
|
||||||
|
}
|
||||||
|
|
||||||
|
const priceSlider = document.getElementById("priceFilter");
|
||||||
|
const sizeSlider = document.getElementById("sizeFilter");
|
||||||
|
|
||||||
|
const priceSliderObject = noUiSlider.create(priceSlider, priceSliderOptions);
|
||||||
|
const sizeSliderObject = noUiSlider.create(sizeSlider, sizeSliderOptions);
|
||||||
|
|
||||||
|
priceSliderObject.on('slide', updatePriceInputs);
|
||||||
|
sizeSliderObject.on('slide', updateSizeInputs);
|
||||||
|
|
||||||
|
function priceMinChangeHandler(element) {
|
||||||
|
if (element && element.currentTarget && element.currentTarget.value){
|
||||||
|
const currentValues = priceSliderObject.get();
|
||||||
|
const newValue = element.currentTarget.value;
|
||||||
|
const fixedNewValue = newValue > currentValues[1] ? currentValues[1] : newValue;
|
||||||
|
priceSliderObject.set([fixedNewValue, null]);
|
||||||
|
$("#priceMin").val(Math.round(priceSliderObject.get()[0]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function priceMaxChangeHandler(element) {
|
||||||
|
if (element && element.currentTarget && element.currentTarget.value){
|
||||||
|
const newValue = element.currentTarget.value;
|
||||||
|
priceSliderObject.set([null, newValue]);
|
||||||
|
$("#priceMax").val(Math.round(priceSliderObject.get()[1]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$("#priceMin").val(priceSliderOptions.start[0]);
|
||||||
|
$("#priceMax").val(priceSliderOptions.start[1]);
|
||||||
|
$("#priceMin").change(priceMinChangeHandler);
|
||||||
|
$("#priceMax").change(priceMaxChangeHandler);
|
||||||
|
|
||||||
|
function sizeMinChangeHandler(element) {
|
||||||
|
if (element && element.currentTarget && element.currentTarget.value){
|
||||||
|
const currentValues = sizeSliderObject.get();
|
||||||
|
const newValue = element.currentTarget.value;
|
||||||
|
const fixedNewValue = newValue > currentValues[1] ? currentValues[1] : newValue;
|
||||||
|
sizeSliderObject.set([fixedNewValue, null]);
|
||||||
|
$("#sizeMin").val(Math.round(sizeSliderObject.get()[0]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function sizeMaxChangeHandler(element) {
|
||||||
|
if (element && element.currentTarget && element.currentTarget.value){
|
||||||
|
const newValue = element.currentTarget.value;
|
||||||
|
sizeSliderObject.set([null, newValue]);
|
||||||
|
$("#sizeMax").val(Math.round(sizeSliderObject.get()[1]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$("#sizeMin").val(sizeSliderOptions.start[0]);
|
||||||
|
$("#sizeMax").val(sizeSliderOptions.start[1]);
|
||||||
|
$("#sizeMin").change(sizeMinChangeHandler);
|
||||||
|
$("#sizeMax").change(sizeMaxChangeHandler);
|
||||||
|
|
||||||
|
<% if(hasGardenSize) { %>
|
||||||
|
const gardenSizeSliderOptions = <%- gardenSizeSliderOptions %>;
|
||||||
|
const gardenSizeStep = gardenSizeSliderOptions.step;
|
||||||
|
delete gardenSizeSliderOptions.step;
|
||||||
|
|
||||||
|
function updateGardenSizeInputs(values, handle, unencoded) {
|
||||||
|
$("#gardenSizeMin").val(Math.round(unencoded[0]/gardenSizeStep)*gardenSizeStep);
|
||||||
|
$("#gardenSizeMax").val(Math.round(unencoded[1]/gardenSizeStep)*gardenSizeStep);
|
||||||
|
}
|
||||||
|
|
||||||
|
const gardenSizeSlider = document.getElementById("gardenSizeFilter");
|
||||||
|
const gardenSizeSliderObject = noUiSlider.create(gardenSizeSlider, gardenSizeSliderOptions);
|
||||||
|
gardenSizeSliderObject.on('slide', updateGardenSizeInputs);
|
||||||
|
function gardenSizeMinChangeHandler(element) {
|
||||||
|
if (element && element.currentTarget && element.currentTarget.value){
|
||||||
|
const currentValues = gardenSizeSliderObject.get();
|
||||||
|
const newValue = element.currentTarget.value;
|
||||||
|
const fixedNewValue = newValue > currentValues[1] ? currentValues[1] : newValue;
|
||||||
|
gardenSizeSliderObject.set([fixedNewValue, null]);
|
||||||
|
$("#gardenSizeMin").val(Math.round(gardenSizeSliderObject.get()[0]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function gardenSizeMaxChangeHandler(element) {
|
||||||
|
if (element && element.currentTarget && element.currentTarget.value){
|
||||||
|
const newValue = element.currentTarget.value;
|
||||||
|
gardenSizeSliderObject.set([null, newValue]);
|
||||||
|
$("#gardenSizeMin").val(Math.round(gardenSizeSliderObject.get()[0]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$("#gardenSizeMin").val(gardenSizeSliderOptions.start[0]);
|
||||||
|
$("#gardenSizeMax").val(gardenSizeSliderOptions.start[1]);
|
||||||
|
$("#gardenSizeMin").change("step", gardenSizeMinChangeHandler);
|
||||||
|
$("#gardenSizeMax").change("step", gardenSizeMaxChangeHandler);
|
||||||
|
<% } %>
|
||||||
|
|
||||||
|
$("#submit").click(function() {
|
||||||
|
const priceFilterValues = priceSlider.noUiSlider.get();
|
||||||
|
$("#priceFilterMin").val(priceFilterValues[0]);
|
||||||
|
$("#priceFilterMax").val(priceFilterValues[1]);
|
||||||
|
|
||||||
|
const sizeFilterValues = sizeSlider.noUiSlider.get();
|
||||||
|
$("#sizeFilterMin").val(sizeFilterValues[0]);
|
||||||
|
$("#sizeFilterMax").val(sizeFilterValues[1]);
|
||||||
|
|
||||||
|
<% if (hasGardenSize) { %>
|
||||||
|
const gardenSizeFilterValues = gardenSizeSlider.noUiSlider.get();
|
||||||
|
$("#gardenSizeFilterMin").val(gardenSizeFilterValues[0]);
|
||||||
|
$("#gardenSizeFilterMax").val(gardenSizeFilterValues[1]);
|
||||||
|
<% } %>
|
||||||
|
|
||||||
|
$("#filtersForm").submit();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
@@ -14,6 +14,9 @@ MAX_REAL_ESTATES_IN_FIRST_EMAIL=Max number of real estates that will be shown in
|
|||||||
#=============== GOOGLE ANALYTICS =============#
|
#=============== GOOGLE ANALYTICS =============#
|
||||||
GA_ID=Google Analytics ID
|
GA_ID=Google Analytics ID
|
||||||
|
|
||||||
|
#=============== GOOGLE MAPS =============#
|
||||||
|
API_MAP_KEY=(your-key-here)
|
||||||
|
|
||||||
#=============== AWS SDK EMAIL SETTINGS =======#
|
#=============== AWS SDK EMAIL SETTINGS =======#
|
||||||
AWS_KEY_ID=(your-key-here)
|
AWS_KEY_ID=(your-key-here)
|
||||||
AWS_SECRET_ACCESS_KEY=(your-key-here)
|
AWS_SECRET_ACCESS_KEY=(your-key-here)
|
||||||
|
|||||||
26
package-lock.json
generated
26
package-lock.json
generated
@@ -1052,6 +1052,14 @@
|
|||||||
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
|
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
|
||||||
"integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ="
|
"integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ="
|
||||||
},
|
},
|
||||||
|
"eslint-plugin-prettier": {
|
||||||
|
"version": "3.1.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-3.1.2.tgz",
|
||||||
|
"integrity": "sha512-GlolCC9y3XZfv3RQfwGew7NnuFDKsfI4lbvRK+PIIo23SFH+LemGs4cKwzAaRa+Mdb+lQO/STaIayno8T5sJJA==",
|
||||||
|
"requires": {
|
||||||
|
"prettier-linter-helpers": "^1.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"etag": {
|
"etag": {
|
||||||
"version": "1.8.1",
|
"version": "1.8.1",
|
||||||
"resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
|
"resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
|
||||||
@@ -1271,6 +1279,11 @@
|
|||||||
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz",
|
||||||
"integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk="
|
"integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk="
|
||||||
},
|
},
|
||||||
|
"fast-diff": {
|
||||||
|
"version": "1.2.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz",
|
||||||
|
"integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w=="
|
||||||
|
},
|
||||||
"fast-json-stable-stringify": {
|
"fast-json-stable-stringify": {
|
||||||
"version": "2.0.0",
|
"version": "2.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz",
|
||||||
@@ -3179,6 +3192,19 @@
|
|||||||
"integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=",
|
"integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
|
"prettier": {
|
||||||
|
"version": "1.19.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/prettier/-/prettier-1.19.1.tgz",
|
||||||
|
"integrity": "sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew=="
|
||||||
|
},
|
||||||
|
"prettier-linter-helpers": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz",
|
||||||
|
"integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==",
|
||||||
|
"requires": {
|
||||||
|
"fast-diff": "^1.1.2"
|
||||||
|
}
|
||||||
|
},
|
||||||
"process-nextick-args": {
|
"process-nextick-args": {
|
||||||
"version": "2.0.0",
|
"version": "2.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz",
|
||||||
|
|||||||
@@ -35,6 +35,7 @@
|
|||||||
"compression": "^1.7.4",
|
"compression": "^1.7.4",
|
||||||
"dotenv": "^7.0.0",
|
"dotenv": "^7.0.0",
|
||||||
"ejs": "^2.6.1",
|
"ejs": "^2.6.1",
|
||||||
|
"eslint-plugin-prettier": "^3.1.2",
|
||||||
"express": "^4.16.4",
|
"express": "^4.16.4",
|
||||||
"express-ejs-layouts": "^2.5.0",
|
"express-ejs-layouts": "^2.5.0",
|
||||||
"express-layout": "^0.1.0",
|
"express-layout": "^0.1.0",
|
||||||
@@ -44,6 +45,7 @@
|
|||||||
"node-fetch": "^2.3.0",
|
"node-fetch": "^2.3.0",
|
||||||
"node-schedule": "^1.3.2",
|
"node-schedule": "^1.3.2",
|
||||||
"pg": "^7.10.0",
|
"pg": "^7.10.0",
|
||||||
|
"prettier": "^1.19.1",
|
||||||
"react-step-wizard": "^5.1.0",
|
"react-step-wizard": "^5.1.0",
|
||||||
"sequelize": "^5.18.4",
|
"sequelize": "^5.18.4",
|
||||||
"sequelize-cli": "^5.5.0"
|
"sequelize-cli": "^5.5.0"
|
||||||
|
|||||||
@@ -13,5 +13,5 @@ if (urlToScrape) {
|
|||||||
})();
|
})();
|
||||||
} else {
|
} else {
|
||||||
console.log("No URL to scrape. Use like this : ");
|
console.log("No URL to scrape. Use like this : ");
|
||||||
console.log("npm run test-olx-scraper -- URL_TO_SCRAPE");
|
console.log("npm run test-rental-scraper -- URL_TO_SCRAPE");
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user