mirror of
https://github.com/bellingcat/ukraine-timemap.git
synced 2026-06-12 13:28:36 +03:00
47 lines
1.6 KiB
JavaScript
47 lines
1.6 KiB
JavaScript
import React from 'react';
|
|
|
|
import SitesIcon from './presentational/Icons/SitesIcon.js';
|
|
import RefreshIcon from './presentational/Icons/RefreshIcon.js';
|
|
import CoeventIcon from './presentational/Icons/CoeventIcon.js';
|
|
import RouteIcon from './presentational/Icons/RouteIcon.js';
|
|
|
|
function ToolbarBottomActions (props) {
|
|
function renderMapActions() {
|
|
return (
|
|
<div className="bottom-action-block">
|
|
{/* <RouteIcon */}
|
|
{/* onClick={(view) => this.toggleMapViews(view)} */}
|
|
{/* isEnabled={this.props.viewFilters.routes} */}
|
|
{/* /> */}
|
|
{process.env.features.USE_SITES ? <SitesIcon
|
|
isActive={props.sites.enabled}
|
|
onClickHandler={props.sites.toggle}
|
|
/> : null}
|
|
{/* <CoeventIcon */}
|
|
{/* onClick={(view) => this.toggleMapViews(view)} */}
|
|
{/* isEnabled={this.props.viewFilters.coevents} */}
|
|
{/* /> */}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="bottom-actions">
|
|
{renderMapActions()}
|
|
<div className="bottom-action-block">
|
|
{/* <button className="action-button tiny default" onClick={() => { toggleLanguage()}}> */}
|
|
{/* {(props.language === 'es-MX') ? 'ES' : 'EN' } */}
|
|
{/* </button> */}
|
|
{/* <button className="action-button info tiny default" onClick={() => { this.toggleInfoPopup()}}> */}
|
|
{/* i */}
|
|
{/* </button> */}
|
|
{/* <button className="action-button tiny" onClick={() => this.resetAllFilters()}> */}
|
|
{/* <RefreshIcon /> */}
|
|
{/* </button> */}
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default ToolbarBottomActions;
|