UNPKG

mapeo-id-bmf

Version:

iD Editor for osm-p2p & mapeo-desktop changed to meet requirements of Bruno Manser Fonds

23 lines (20 loc) 807 B
import { select as d3_select } from 'd3-selection'; // toggles the visibility of ui elements, using a combination of the // hide class, which sets display=none, and a d3 transition for opacity. // this will cause blinking when called repeatedly, so check that the // value actually changes between calls. export function uiToggle(show, callback) { return function(selection) { selection .style('opacity', show ? 0 : 1) .classed('hide', false) .transition() .style('opacity', show ? 1 : 0) .on('end', function() { d3_select(this) .classed('hide', !show) .style('opacity', null); if (callback) callback.apply(this); }); }; }