// Copyright (c) 2022 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. import React from 'react'; import {FileType} from 'components/common/icons'; import {StyledModalContent, StyledType, CheckMark} from 'components/common/styled-components'; import {EXPORT_MAP_FORMATS, EXPORT_MAP_FORMAT_OPTIONS} from 'constants/default-settings'; import {StyledExportMapSection} from './components'; import ExportHtmlMapFactory from './export-html-map'; import ExportJsonMapFactory from './export-json-map'; import {FormattedMessage} from 'localization'; import {ActionHandler, setExportHTMLMapMode, setUserMapboxAccessToken} from 'actions'; interface ExportMapModalFactoryProps { options?: {format: string}; config: any; onEditUserMapboxAccessToken: ActionHandler; onChangeExportMapHTMLMode?: ActionHandler; onChangeExportMapFormat?: (format: string) => any; mapFormat?: string; } const style = {width: '100%'}; const NO_OP = (...args: any[]) => ({} as any); ExportMapModalFactory.deps = [ExportHtmlMapFactory, ExportJsonMapFactory]; function ExportMapModalFactory( ExportHtmlMap: ReturnType, ExportJsonMap: ReturnType ) { const ExportMapModalUnmemoized = ({ config = {}, onChangeExportMapFormat = NO_OP, onChangeExportMapHTMLMode = NO_OP, onEditUserMapboxAccessToken = NO_OP, options = {format: ''} }: ExportMapModalFactoryProps) => (
{EXPORT_MAP_FORMAT_OPTIONS.map(op => ( op.available && onChangeExportMapFormat(op.id)} > {options.format === op.id && } ))}
{ { [EXPORT_MAP_FORMATS.HTML]: ( ), [EXPORT_MAP_FORMATS.JSON]: }[ // @ts-ignore options.format ] }
); ExportMapModalUnmemoized.displayName = 'ExportMapModal'; const ExportMapModal = React.memo(ExportMapModalUnmemoized); return ExportMapModal; } export default ExportMapModalFactory;