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] add setMapControlVisibility action to set mapControl visibility #1590

Merged
merged 4 commits into from
Aug 31, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ jobs:
run: xvfb-run --auto-servernum yarn cover

- name: Coveralls
uses: coverallsapp/github-action@v1.1.2
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
17 changes: 15 additions & 2 deletions src/actions/ui-state-actions.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,23 @@ export type ToggleMapControlUpdaterAction = {
};
};
export function toggleMapControl(
panelId,
index
panelId: string,
index: number
): Merge<ToggleMapControlUpdaterAction, {type: ActionTypes.TOGGLE_MAP_CONTROL}>;


/** SET_MAP_CONTROL_VISIBILITY */
export type setMapControlVisibilityUpdaterAction = {
payload: {
panelId: string;
show: boolean;
};
};
export function setMapControlVisibility(
panelId: string,
show: boolean
): Merge<setMapControlVisibilityUpdaterAction, {type: ActionTypes.SET_MAP_CONTROL_VISIBILITY}>;

/** OPEN_DELETE_MODAL */
export type OpenDeleteModalUpdaterAction = {
payload: string;
Expand Down
15 changes: 15 additions & 0 deletions src/actions/ui-state-actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,21 @@ export const toggleMapControl = createAction(ActionTypes.TOGGLE_MAP_CONTROL, (pa
index
}));

/**
* Toggle active map control panel
* @memberof uiStateActions
* @param panelId - map control panel id, one of the keys of: [`DEFAULT_MAP_CONTROLS`](#default_map_controls)
* @type {typeof import('./ui-state-actions').setMapControlVisibility}
* @public
*/
export const setMapControlVisibility = createAction(
ActionTypes.SET_MAP_CONTROL_VISIBILITY,
(panelId, show) => ({
panelId,
show
})
);

/**
* Toggle active map control panel
* @memberof uiStateActions
Expand Down
2 changes: 1 addition & 1 deletion src/components/map-container.js
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ export default function MapContainerFactory(MapPopover, MapControl, Editor, MapL
const isEdit = (mapControls.mapDraw || {}).active;

const hasGeocoderLayer = layers.find(l => l.id === GEOCODER_LAYER_ID);
const isSplit = Boolean(index);
const isSplit = Boolean(mapState.isSplit);

return (
<>
Expand Down
6 changes: 3 additions & 3 deletions src/components/map/locale-panel.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function LocalePanelFactory(MapControlTooltip, MapControlPanel, MapControlToolba
return null;
}
return (
<div style={{position: 'relative'}}>
<>
{isActive ? (
<MapControlToolbar show={isActive}>
{availableLocales.map(locale => (
Expand All @@ -77,10 +77,10 @@ function LocalePanelFactory(MapControlTooltip, MapControlPanel, MapControlToolba
data-for="locale"
disableClose={disableClose}
>
{currentLocal.toUpperCase()}
<span className="map-control-button__locale">{currentLocal.toUpperCase()}</span>
<MapControlTooltip id="locale" message="tooltip.selectLocale" />
</MapControlButton>
</div>
</>
);
}
);
Expand Down
1 change: 1 addition & 0 deletions src/constants/action-types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ export type ActionType = {
HIDE_EXPORT_DROPDOWN: string;
OPEN_DELETE_MODAL: string;
TOGGLE_MAP_CONTROL: string;
SET_MAP_CONTROL_VISIBILITY: string;
ADD_NOTIFICATION: string;
REMOVE_NOTIFICATION: string;
SET_LOCALE: string;
Expand Down
1 change: 1 addition & 0 deletions src/constants/action-types.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ const ActionTypes = {
HIDE_EXPORT_DROPDOWN: `${ACTION_PREFIX}HIDE_EXPORT_DROPDOWN`,
OPEN_DELETE_MODAL: `${ACTION_PREFIX}OPEN_DELETE_MODAL`,
TOGGLE_MAP_CONTROL: `${ACTION_PREFIX}TOGGLE_MAP_CONTROL`,
SET_MAP_CONTROL_VISIBILITY: `${ACTION_PREFIX}SET_MAP_CONTROL_VISIBILITY`,
ADD_NOTIFICATION: `${ACTION_PREFIX}ADD_NOTIFICATION`,
REMOVE_NOTIFICATION: `${ACTION_PREFIX}REMOVE_NOTIFICATION`,
SET_LOCALE: `${ACTION_PREFIX}SET_LOCALE`,
Expand Down
9 changes: 9 additions & 0 deletions src/constants/default-settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -884,3 +884,12 @@ export const DATASET_FORMATS = keyMirror({
csv: null,
keplergl: null
});

export const MAP_CONTROLS = keyMirror({
visibleLayers: null,
mapLegend: null,
toggle3d: null,
splitMap: null,
mapDraw: null,
mapLocale: null
});
3 changes: 2 additions & 1 deletion src/constants/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ export {
DEFAULT_TIME_FORMAT,
SPEED_CONTROL_RANGE,
RESOLUTIONS,
SORT_ORDER
SORT_ORDER,
MAP_CONTROLS
} from './default-settings';

export {BUG_REPORT_LINK, USER_GUIDE_DOC} from './user-guides';
Expand Down
4 changes: 4 additions & 0 deletions src/reducers/ui-state-updaters.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,10 @@ export function toggleMapControlUpdater(
state: UiState,
action: UiStateActions.ToggleMapControlUpdaterAction
): UiState;
export function setMapControlVisibilityUpdater(
state: UiState,
action: UiStateActions.setMapControlVisibilityUpdaterAction
): UiState;
export function openDeleteModalUpdater(
state: UiState,
action: UiStateActions.OpenDeleteModalUpdaterAction
Expand Down
39 changes: 30 additions & 9 deletions src/reducers/ui-state-updaters.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ import {
EXPORT_HTML_MAP_MODES,
EXPORT_IMG_RATIOS,
EXPORT_MAP_FORMATS,
RESOLUTIONS
RESOLUTIONS,
MAP_CONTROLS
} from 'constants/default-settings';
import {LOCALE_CODES} from 'localization/locales';
import {createNotification, errorNotification} from 'utils/notifications-utils';
Expand Down Expand Up @@ -99,14 +100,7 @@ const DEFAULT_MAP_CONTROLS_FEATURES = {
* @type {import('./ui-state-updaters').MapControls}
* @public
*/
export const DEFAULT_MAP_CONTROLS = [
'visibleLayers',
'mapLegend',
'toggle3d',
'splitMap',
'mapDraw',
'mapLocale'
].reduce(
export const DEFAULT_MAP_CONTROLS = Object.keys(MAP_CONTROLS).reduce(
(final, current) => ({
...final,
[current]: DEFAULT_MAP_CONTROLS_FEATURES
Expand Down Expand Up @@ -359,6 +353,33 @@ export const toggleMapControlUpdater = (state, {payload: {panelId, index = 0}})
}
});

/**
* Toggle map control visibility
* @memberof uiStateUpdaters
* @param state `uiState`
* @param action action
* @param action.payload map control panel id, one of the keys of: [`DEFAULT_MAP_CONTROLS`](#default_map_controls)
* @returns nextState
* @type {typeof import('./ui-state-updaters').setMapControlVisibilityUpdater}
* @public
*/
export const setMapControlVisibilityUpdater = (state, {payload: {panelId, show}}) => {
if (!state.mapControls?.[panelId]) {
return state;
}

return {
...state,
mapControls: {
...state.mapControls,
[panelId]: {
...state.mapControls[panelId],
show: Boolean(show)
}
}
};
};

/**
* Toggle active map control panel
* @memberof uiStateUpdaters
Expand Down
1 change: 1 addition & 0 deletions src/reducers/ui-state.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ const actionHandler = {
[ActionTypes.HIDE_EXPORT_DROPDOWN]: uiStateUpdaters.hideExportDropdownUpdater,
[ActionTypes.OPEN_DELETE_MODAL]: uiStateUpdaters.openDeleteModalUpdater,
[ActionTypes.TOGGLE_MAP_CONTROL]: uiStateUpdaters.toggleMapControlUpdater,
[ActionTypes.SET_MAP_CONTROL_VISIBILITY]: uiStateUpdaters.setMapControlVisibilityUpdater,
[ActionTypes.ADD_NOTIFICATION]: uiStateUpdaters.addNotificationUpdater,
[ActionTypes.REMOVE_NOTIFICATION]: uiStateUpdaters.removeNotificationUpdater,

Expand Down
101 changes: 73 additions & 28 deletions test/browser/components/map/map-control-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,48 +19,93 @@
// THE SOFTWARE.

import React from 'react';
import {shallow} from 'enzyme';
import sinon from 'sinon';
import test from 'tape';
import {IntlWrapper, mountWithTheme} from 'test/helpers/component-utils';

import MapControlFactory from 'components/map/map-control';
import {MapControlButton} from 'components/common/styled-components';

import {Cube3d, Split, Legend, DrawPolygon, Layers, Delete} from 'components/common/icons';

import {appInjector} from 'components';

const MapControl = appInjector.get(MapControlFactory);

test('MapControlFactory - display all options', t => {
test('MapControlFactory - display options', t => {
const onToggleSplitMap = sinon.spy();
const onTogglePerspective = sinon.spy();
const onToggleMapControl = sinon.spy();
const onSetEditorMode = sinon.spy();
const onToggleEditorVisibility = sinon.spy();
const onSetLocale = sinon.spy();

const $ = shallow(
<MapControl
mapControls={{
splitMap: {show: true},
visibleLayers: {show: true},
toggle3d: {show: true},
mapLegend: {show: true},
mapDraw: {show: true},
mapLocale: {show: true}
}}
datasets={{}}
layers={[]}
locale={'en'}
layersToRender={{}}
dragRotate={true}
mapIndex={0}
onToggleSplitMap={onToggleSplitMap}
onTogglePerspective={onTogglePerspective}
onToggleMapControl={onToggleMapControl}
onSetEditorMode={onSetEditorMode}
onToggleEditorVisibility={onToggleEditorVisibility}
onSetLocale={onSetLocale}
/>
);

t.equal($.find('.map-control-action').length, 6, 'Should show 6 action panels');
const defaultProps = {
mapControls: {
splitMap: {show: true},
visibleLayers: {show: true},
toggle3d: {show: true},
mapLegend: {show: true},
mapDraw: {show: true},
mapLocale: {show: true}
},
datasets: {},
layers: [],
locale: 'en',
layersToRender: {},
dragRotate: true,
mapIndex: 0,
onToggleSplitMap,
onTogglePerspective,
onToggleMapControl,
onSetEditorMode,
onToggleEditorVisibility,
onSetLocale
};

let wrapper;
t.doesNotThrow(() => {
wrapper = mountWithTheme(
<IntlWrapper>
<MapControl {...defaultProps} />{' '}
</IntlWrapper>
);
}, 'BottomWidget should not fail without props');

// layer selector is not active
t.equal(wrapper.find(MapControlButton).length, 5, 'Should show 5 MapControlButton');

t.equal(wrapper.find(Split).length, 1, 'Should show 1 split map button');
t.equal(wrapper.find(Cube3d).length, 1, 'Should show 1 toggle 3d button');
t.equal(wrapper.find(Legend).length, 1, 'Should show 1 map legend button');
t.equal(wrapper.find(DrawPolygon).length, 1, 'Should show 1 map draw button');
t.equal(wrapper.find('.map-control-button__locale').length, 1, 'Should show 1 locale button');

// with split map and active layer selector
const nextProps = {
...defaultProps,
isSplit: true,
mapControls: {
...defaultProps.mapControls,
visibleLayers: {show: true, active: false}
}
};

wrapper.setProps({
children: <MapControl {...nextProps} />
});

t.equal(wrapper.find(MapControlButton).length, 6, 'Should show 6 MapControlButton');
t.equal(wrapper.find(Split).length, 0, 'Should show 0 split map split button');
t.equal(wrapper.find(Delete).length, 1, 'Should show 1 split map delete button');
t.equal(wrapper.find(Layers).length, 1, 'Should show 1 Layer button');

// with 0 mapcontrols
wrapper.setProps({
children: <MapControl {...defaultProps} mapControls={{}} />
});

t.equal(wrapper.find(MapControlButton).length, 0, 'Should show 0 MapControlButton');

t.end();
});
31 changes: 31 additions & 0 deletions test/node/reducers/ui-state-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import {
openDeleteModal,
setExportImageSetting,
toggleMapControl,
setMapControlVisibility,
setExportSelectedDataset,
setExportDataType,
setExportFiltered,
Expand Down Expand Up @@ -181,6 +182,36 @@ test('#uiStateReducer -> TOGGLE_MAP_CONTROL', t => {
t.end();
});

test('#uiStateReducer -> SET_MAP_CONTROL_VISIBILITY', t => {
const newReducer = reducer(INITIAL_UI_STATE, setMapControlVisibility('mapLegend', false));

const expectedMapControl = {
...INITIAL_UI_STATE.mapControls,
mapLegend: {
...INITIAL_UI_STATE.mapControls.mapLegend,
show: false
}
};

t.deepEqual(newReducer.mapControls, expectedMapControl, 'should set map legend show to be false');

const newReducer1 = reducer(newReducer, setMapControlVisibility('mapLegend', true));

const expectedMapControl1 = {
...INITIAL_UI_STATE.mapControls,
mapLegend: {
...INITIAL_UI_STATE.mapControls.mapLegend,
show: true
}
};

t.deepEqual(newReducer1.mapControls, expectedMapControl1, 'should set map legend show to true');

const newReducer2 = reducer(newReducer1, setMapControlVisibility('something', true));
t.equal(newReducer1, newReducer2, 'should note update state');
t.end();
});

test('#uiStateReducer -> SET_EXPORT_SELECTED_DATASET', t => {
const newReducer = reducer(INITIAL_UI_STATE, setExportSelectedDataset('a'));

Expand Down