Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: OpenStreetMap initial widget #72

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@
"@types/google.maps": "^3.50.4",
"@types/jest": "^27.5.2",
"@types/json-schema": "^7.0.11",
"@types/leaflet": "^1.9.3",
"@types/react": "^17.0.47",
"@types/react-dom": "^17.0.17",
"babel-jest": "^27.5.1",
Expand All @@ -128,6 +129,7 @@
"jest-canvas-mock": "^2.4.0",
"jest-cli": "^27.5.1",
"joi": "17.4.2",
"leaflet": "^1.9.4",
"lodash.clonedeep": "4.5.0",
"lodash.debounce": "4.0.8",
"lodash.get": "4.4.2",
Expand All @@ -143,6 +145,7 @@
"react-error-boundary": "^3.1.4",
"react-jss": "^10.9.0",
"react-hook-form": "7.33.1",
"react-leaflet": "^4.2.1",
"react-redux": "^7.2.8",
"react-router": "^5.3.3",
"react-router-dom": "^5.3.3",
Expand Down
3 changes: 2 additions & 1 deletion src/components/Card/input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ import Json from '../Json';
import Component from '../Component';
import {CHANGE} from './const';
import Controller from '../Controller';
import LeafletMap from './inputs/LeafletMap';

const getFieldClass = (index, classes, name, className) =>
name === '' ? className : clsx(
Expand Down Expand Up @@ -594,7 +595,7 @@ function useInput(
case 'label': return (field?.name || title) ? <Field label={label} inputClass={widgetClassName}>{field?.name ? field?.value : title}</Field> : null;
case 'icon': return (field?.name || title) ? <i className={clsx('pi', field?.name ? field?.value : title, widgetClassName)}/> : null;
case 'gps': return <Field {...{label, error, inputClass}}>
<GMap {...field} {...props} />
{props.mapType === 'leaflet' ? <LeafletMap {...field} {...props} /> : <GMap {...field} {...props} />}
</Field>;
default: return <Field {...{label, error, inputClass}}>
<InputText
Expand Down
18 changes: 18 additions & 0 deletions src/components/Card/inputs/LeafletMap/LMap.types.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import React from 'react';
import { type MapContainerProps } from 'react-leaflet';

interface GPSValue {
lat: number;
lng: number;
}

export type LMapOptions = MapContainerProps;

export interface Props {
options?: LMapOptions;
onChange: (params: object) => void;
value?: GPSValue;
disabled?: boolean;
}

export type ComponentProps = React.FC<Props>;
112 changes: 112 additions & 0 deletions src/components/Card/inputs/LeafletMap/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
import merge from 'ut-function.merge';
import * as React from 'react';
import L from 'leaflet';
import icon from 'leaflet/dist/images/marker-icon.png';
import iconShadow from 'leaflet/dist/images/marker-shadow.png';
import { MapContainer, TileLayer, Marker, useMapEvents } from 'react-leaflet';

import Context from '../../../Text/context';
import { Props } from './LMap.types';

import 'leaflet/dist/leaflet.css';

const DefaultIcon = L.icon({
iconUrl: icon,
shadowUrl: iconShadow,
iconSize: [24, 36],
iconAnchor: [12, 36]
});

L.Marker.prototype.options.icon = DefaultIcon;

const defaultOptions = {
center: { lat: 42.69641881321328, lng: 23.323133750607305 },
zoom: 12,
dragging: true,
touchZoom: false,
doubleClickZoom: false,
scrollWheelZoom: false,
zoomControl: true,
attributionControl: false
};

const Handlers = ({onMapClick, disabled, mapOptions}) => {
const map = useMapEvents({
click(e) {
return onMapClick(e, map);
}
});
React.useEffect(() => {
if (!map) return;
if (!disabled) {
Object.entries(mapOptions).forEach(([k, v]) => {
if (map[k] && v === true) {
if (k === 'zoomControl') {
map.addControl(map.zoomControl);
return;
}
map[k].enable();
}
});
} else {
Object.entries(mapOptions).forEach(([k, v]) => {
if (map[k] && v === false) {
if (k === 'zoomControl') {
map.removeControl(map.zoomControl);
return;
}
map[k].disable();
}
});
}
}, [disabled, map, mapOptions]);
return null;
};

export default React.forwardRef<object, Props>(function LeafletMap(props, ref) {
if (typeof ref === 'function') ref({});
const { options = {}, onChange, value = null, disabled = false } = props;
const [selectedPosition, setSelectedPosition] = React.useState(value);
const { configuration: { 'portal.utPrime.LMap': coreConfig = {} } = {} } = React.useContext(Context);

const mapOptions = React.useMemo(() => {
return merge(
[
{},
defaultOptions,
typeof coreConfig === 'string' ? JSON.parse(coreConfig) : coreConfig,
options,
selectedPosition && { center: selectedPosition },
disabled && { dragging: false, touchZoom: false, doubleClickZoom: false, scrollWheelZoom: false, boxZoom: false, keyboard: false, zoomControl: false }
].filter(Boolean)
);
}, [options, selectedPosition, coreConfig, disabled]);

const onMapClick = React.useCallback(
(event, map) => {
if (disabled) return;
map.flyTo(event.latlng, map.getZoom());
const position = event.latlng;
setSelectedPosition(position);
onChange({ value: position });
},
[disabled, onChange]
);

return (
<div className="w-full">
<MapContainer style={{width: '100%', maxWidth: '100%', minHeight: '320px'}} {...(({zoomControl, ...rest}) => rest)(mapOptions)}>
<Handlers onMapClick={onMapClick} disabled={disabled} mapOptions={mapOptions} />
<TileLayer
url="https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
/>
{selectedPosition && <Marker position={selectedPosition} />}
</MapContainer>
{selectedPosition && (
<div style={{ marginTop: 'var(--inline-spacing)' }}>
{[selectedPosition.lat, selectedPosition.lng].join(', ')}
</div>
)}
</div>
);
});
2 changes: 2 additions & 0 deletions src/components/Text/context.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import React from 'react';
import type { GMapOptions } from '../prime/googlemap/GMap.types';
import type { LMapOptions } from '../Card/inputs/LeafletMap/LMap.types';
import type { FormatOptions } from '../Gate/Gate.types';

export interface PortalConfiguration {
'portal.utPrime.GMap'?: string | GMapOptions;
'portal.utPrime.LMap'?: string | LMapOptions;
'portal.utPrime.formatOptions'?: string | FormatOptions;
}

Expand Down
7 changes: 7 additions & 0 deletions src/components/test/input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,12 @@ const properties: Properties = {
type: 'gps'
}
},
gpsLeaflet: {
widget: {
type: 'gps',
mapType: 'leaflet'
}
},
image: {
widget: {
type: 'image'
Expand Down Expand Up @@ -344,6 +350,7 @@ export const input: {
className: 'xl:col-4',
widgets: [
'input.gps',
'input.gpsLeaflet',
'input.image',
'input.imageUpload',
'input.file',
Expand Down
1 change: 1 addition & 0 deletions src/components/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ export interface PropertyEditor {
fieldClass?: string,
labelClass?: string,
translation?: boolean,
mapType?: 'leaflet' | 'google'
[editorProperties: string]: unknown
}

Expand Down