PromucFlow_constructor/app/client/src/widgets/MapWidget.tsx
2020-07-10 13:05:27 +05:30

200 lines
5.2 KiB
TypeScript

import React from "react";
import BaseWidget, { WidgetProps, WidgetState } from "./BaseWidget";
import { WidgetType } from "constants/WidgetConstants";
import MapComponent from "components/designSystems/appsmith/MapComponent";
import { WidgetPropertyValidationType } from "utils/ValidationFactory";
import { VALIDATION_TYPES } from "constants/WidgetValidation";
import { EventType } from "constants/ActionConstants";
import { TriggerPropertiesMap } from "utils/WidgetFactory";
import { getAppsmithConfigs } from "configs";
import styled from "styled-components";
const { google } = getAppsmithConfigs();
const DisabledContainer = styled.div`
background-color: white;
height: 100%;
text-align: center;
display: flex;
flex-direction: column;
h1 {
margin-top: 15%;
margin-bottom: 10%;
color: #7c7c7c;
}
p {
color: #0a0b0e;
}
`;
class MapWidget extends BaseWidget<MapWidgetProps, WidgetState> {
static getPropertyValidationMap(): WidgetPropertyValidationType {
return {
defaultMarkers: VALIDATION_TYPES.MARKERS,
isDisabled: VALIDATION_TYPES.BOOLEAN,
isVisible: VALIDATION_TYPES.BOOLEAN,
enableSearch: VALIDATION_TYPES.BOOLEAN,
enablePickLocation: VALIDATION_TYPES.BOOLEAN,
allowZoom: VALIDATION_TYPES.BOOLEAN,
zoomLevel: VALIDATION_TYPES.NUMBER,
};
}
static getTriggerPropertyMap(): TriggerPropertiesMap {
return {
onMarkerClick: true,
onCreateMarker: true,
};
}
static getDefaultPropertiesMap(): Record<string, string> {
return {
markers: "defaultMarkers",
center: "mapCenter",
};
}
static getMetaPropertiesMap(): Record<string, undefined> {
return {
center: undefined,
markers: undefined,
};
}
updateCenter = (lat: number, long: number) => {
this.updateWidgetMetaProperty("center", { lat, long });
};
updateMarker = (lat: number, long: number, index: number) => {
const markers: Array<MarkerProps> = [...this.props.markers];
this.disableDrag(false);
this.updateWidgetMetaProperty(
"markers",
markers.map((marker, i) => {
if (index === i) {
marker.lat = lat;
marker.long = long;
}
return marker;
}),
);
};
onCreateMarker = (lat: number, long: number) => {
this.disableDrag(true);
this.updateWidgetMetaProperty("selectedMarker", {
lat: lat,
long: long,
});
if (this.props.onCreateMarker) {
super.executeAction({
dynamicString: this.props.onCreateMarker,
event: {
type: EventType.ON_CREATE_MARKER,
},
});
}
};
onMarkerClick = (lat: number, long: number, title: string) => {
this.updateWidgetMetaProperty("selectedMarker", {
lat: lat,
long: long,
title: title,
});
this.disableDrag(true);
if (this.props.onMarkerClick) {
super.executeAction({
dynamicString: this.props.onMarkerClick,
event: {
type: EventType.ON_MARKER_CLICK,
},
});
}
};
getPageView() {
return (
<>
{!google.enabled && (
<DisabledContainer>
<h1>{"Map Widget disabled"}</h1>
<p>
{"Map widget requires a Google Maps "}
<a
target="_blank"
rel="noopener noreferrer"
href="https://developers.google.com/maps/documentation/javascript/get-api-key"
>
API Key
</a>
</p>
<p>{"Refer our Docs to configure API Keys"}</p>
</DisabledContainer>
)}
{google.enabled && (
<MapComponent
apiKey={google.apiKey}
widgetId={this.props.widgetId}
isVisible={this.props.isVisible}
zoomLevel={this.props.zoomLevel}
allowZoom={this.props.allowZoom}
center={this.props.center || this.props.mapCenter}
enableCreateMarker
selectedMarker={this.props.selectedMarker}
updateCenter={this.updateCenter}
isDisabled={this.props.isDisabled}
enableSearch={this.props.enableSearch}
enablePickLocation={this.props.enablePickLocation}
saveMarker={this.onCreateMarker}
updateMarker={this.updateMarker}
selectMarker={this.onMarkerClick}
markers={this.props.markers || []}
disableDrag={() => {
this.disableDrag(false);
}}
/>
)}
</>
);
}
getWidgetType(): WidgetType {
return "MAP_WIDGET";
}
}
export interface MarkerProps {
lat: number;
long: number;
title?: string;
description?: string;
}
export interface MapWidgetProps extends WidgetProps {
isDisabled?: boolean;
isVisible?: boolean;
enableSearch: boolean;
zoomLevel: number;
allowZoom: boolean;
enablePickLocation: boolean;
mapCenter: {
lat: number;
long: number;
};
center?: {
lat: number;
long: number;
};
defaultMarkers?: Array<MarkerProps>;
markers?: Array<MarkerProps>;
selectedMarker?: {
lat: number;
long: number;
title?: string;
};
onMarkerClick?: string;
onCreateMarker?: string;
}
export default MapWidget;