homeflowjs 0.10.9 → 0.10.10
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.
|
@@ -13,7 +13,7 @@ import ReactLeafletGoogleLayer from 'react-leaflet-google-layer';
|
|
|
13
13
|
import 'leaflet/dist/leaflet.css';
|
|
14
14
|
|
|
15
15
|
const BranchesMap = ({
|
|
16
|
-
CustomPopup, google, gmapsKey, iconConfig, fallbackLatLng,
|
|
16
|
+
CustomPopup, google, gmapsKey, iconConfig, fallbackLatLng, scrollWheelZoom
|
|
17
17
|
}) => {
|
|
18
18
|
let branches = Homeflow.get('branches');
|
|
19
19
|
let showMarkers = true;
|
|
@@ -30,12 +30,24 @@ const BranchesMap = ({
|
|
|
30
30
|
shadowUrl: '/assets/marker-shadow.png',
|
|
31
31
|
};
|
|
32
32
|
|
|
33
|
-
|
|
33
|
+
let icon = L.icon(iconConfig || defaultIconConfig);
|
|
34
34
|
|
|
35
35
|
const bounds = latLngBounds([branches[0].lat, branches[0].lng]);
|
|
36
36
|
|
|
37
37
|
const markers = branches.map((branch) => {
|
|
38
38
|
bounds.extend([branch.lat, branch.lng]);
|
|
39
|
+
// check if branch object have mapIcon payload, example:
|
|
40
|
+
// mapIcon: {
|
|
41
|
+
// iconUrl: 'specific-path.png' || 'data:image/svg+xml;utf8,<svg></svg>',
|
|
42
|
+
// iconSize: [149, 66],
|
|
43
|
+
// }
|
|
44
|
+
if ('mapIcon' in branch) icon = L.icon(branch.mapIcon);
|
|
45
|
+
// check if branch object have mapDivIcon payload, example:
|
|
46
|
+
// mapDivIcon: {
|
|
47
|
+
// html: 'html string',
|
|
48
|
+
// iconSize: [149, 66],
|
|
49
|
+
// }
|
|
50
|
+
if ('mapDivIcon' in branch) icon = L.divIcon(branch.mapDivIcon);
|
|
39
51
|
|
|
40
52
|
return (
|
|
41
53
|
<Marker
|
|
@@ -77,7 +89,7 @@ const BranchesMap = ({
|
|
|
77
89
|
<MapContainer
|
|
78
90
|
center={[branches[0].lat, branches[0].lng]}
|
|
79
91
|
bounds={bounds}
|
|
80
|
-
scrollWheelZoom={
|
|
92
|
+
scrollWheelZoom={scrollWheelZoom}
|
|
81
93
|
style={{ height: '100%' }}
|
|
82
94
|
>
|
|
83
95
|
{google ? (
|
|
@@ -99,6 +111,7 @@ BranchesMap.propTypes = {
|
|
|
99
111
|
gmapsKey: PropTypes.string,
|
|
100
112
|
iconConfig: PropTypes.object,
|
|
101
113
|
fallbackLatLng: PropTypes.object,
|
|
114
|
+
scrollWheelZoom: PropTypes.bool,
|
|
102
115
|
};
|
|
103
116
|
|
|
104
117
|
BranchesMap.defaultProps = {
|
|
@@ -107,6 +120,7 @@ BranchesMap.defaultProps = {
|
|
|
107
120
|
gmapsKey: null,
|
|
108
121
|
iconConfig: null,
|
|
109
122
|
fallbackLatLng: { lat: 51.509865, lng: -0.118092 },
|
|
123
|
+
scrollWheelZoom: false,
|
|
110
124
|
};
|
|
111
125
|
|
|
112
126
|
const mapStateToProps = (state) => ({
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@ import './stamp-duty-calculator.styles.scss';
|
|
|
7
7
|
|
|
8
8
|
const StampDutyCalculator = ({ scotland, themePreferences }) => {
|
|
9
9
|
const [type, setType] = useState('residential');
|
|
10
|
-
const [purchaseType, setPurchaseType] = useState('
|
|
10
|
+
const [purchaseType, setPurchaseType] = useState('firstTimeBuyer')
|
|
11
11
|
const [purchasePrice, setPurchasePrice] = useState();
|
|
12
12
|
|
|
13
13
|
const renderCalculator = () => {
|
|
@@ -62,19 +62,19 @@ const StampDutyCalculator = ({ scotland, themePreferences }) => {
|
|
|
62
62
|
<div className="form-group">
|
|
63
63
|
<button
|
|
64
64
|
type="button"
|
|
65
|
-
className={`stamp-duty-cal__type ${purchaseType === '
|
|
66
|
-
onClick={() => setPurchaseType('
|
|
65
|
+
className={`stamp-duty-cal__type ${purchaseType === 'firstTimeBuyer' ? 'selected' : ''}`}
|
|
66
|
+
onClick={() => setPurchaseType('firstTimeBuyer')}
|
|
67
67
|
>
|
|
68
|
-
|
|
68
|
+
First Time Buyer
|
|
69
69
|
</button>
|
|
70
70
|
</div>
|
|
71
71
|
<div className="form-group">
|
|
72
72
|
<button
|
|
73
73
|
type="button"
|
|
74
|
-
className={`stamp-duty-cal__type ${purchaseType === '
|
|
75
|
-
onClick={() => setPurchaseType('
|
|
74
|
+
className={`stamp-duty-cal__type ${purchaseType === 'additional' ? 'selected' : ''}`}
|
|
75
|
+
onClick={() => setPurchaseType('additional')}
|
|
76
76
|
>
|
|
77
|
-
|
|
77
|
+
Additional Property
|
|
78
78
|
</button>
|
|
79
79
|
</div>
|
|
80
80
|
</div>
|