mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-13 01:02:58 +00:00
164 lines
4.7 KiB
JavaScript
164 lines
4.7 KiB
JavaScript
import * as d3 from 'd3';
|
|
import { transition as d3transition } from 'd3-transition';
|
|
import _ from 'lodash';
|
|
|
|
|
|
export function Breathe() {
|
|
var duration = 800,
|
|
steps = 4,
|
|
selector = '.selected.shadow, .selected .shadow',
|
|
selected = d3.select(null),
|
|
classed = '',
|
|
params = {},
|
|
done = false,
|
|
timer;
|
|
|
|
|
|
// This is a workaround for a bug in rollup v0.36
|
|
// https://github.com/rollup/rollup/issues/984
|
|
// The symbol for this default export is not used anywhere, but it
|
|
// needs to be called in order to be included in the bundle.
|
|
var t = d3transition();
|
|
|
|
|
|
function ratchetyInterpolator(a, b, steps, units) {
|
|
a = parseFloat(a);
|
|
b = parseFloat(b);
|
|
var sample = d3.scaleQuantize()
|
|
.domain([0, 1])
|
|
.range(d3.quantize(d3.interpolateNumber(a, b), steps));
|
|
|
|
return function(t) {
|
|
return String(sample(t)) + (units || '');
|
|
};
|
|
}
|
|
|
|
|
|
function reset(selection) {
|
|
selection
|
|
.style('stroke-opacity', null)
|
|
.style('stroke-width', null)
|
|
.style('fill-opacity', null)
|
|
.style('r', null);
|
|
}
|
|
|
|
|
|
function setAnimationParams(transition, fromTo) {
|
|
var toFrom = (fromTo === 'from' ? 'to' : 'from');
|
|
|
|
transition
|
|
.styleTween('stroke-opacity', function(d) {
|
|
return ratchetyInterpolator(
|
|
params[d.id][toFrom].opacity,
|
|
params[d.id][fromTo].opacity,
|
|
steps
|
|
);
|
|
})
|
|
.styleTween('stroke-width', function(d) {
|
|
return ratchetyInterpolator(
|
|
params[d.id][toFrom].width,
|
|
params[d.id][fromTo].width,
|
|
steps,
|
|
'px'
|
|
);
|
|
})
|
|
.styleTween('fill-opacity', function(d) {
|
|
return ratchetyInterpolator(
|
|
params[d.id][toFrom].opacity,
|
|
params[d.id][fromTo].opacity,
|
|
steps
|
|
);
|
|
})
|
|
.styleTween('r', function(d) {
|
|
return ratchetyInterpolator(
|
|
params[d.id][toFrom].width,
|
|
params[d.id][fromTo].width,
|
|
steps,
|
|
'px'
|
|
);
|
|
});
|
|
}
|
|
|
|
|
|
function calcAnimationParams(selection) {
|
|
selection
|
|
.call(reset)
|
|
.each(function(d) {
|
|
var s = d3.select(this),
|
|
tag = s.node().tagName,
|
|
p = {'from': {}, 'to': {}},
|
|
opacity, width;
|
|
|
|
// determine base opacity and width
|
|
if (tag === 'circle') {
|
|
opacity = parseFloat(s.style('fill-opacity') || 0.5);
|
|
width = parseFloat(s.style('r') || 15.5);
|
|
} else {
|
|
opacity = parseFloat(s.style('stroke-opacity') || 0.7);
|
|
width = parseFloat(s.style('stroke-width') || 10);
|
|
}
|
|
|
|
// calculate from/to interpolation params..
|
|
p.tag = tag;
|
|
p.from.opacity = opacity * 0.6;
|
|
p.to.opacity = opacity * 1.25;
|
|
p.from.width = width * 0.9;
|
|
p.to.width = width * (tag === 'circle' ? 1.5 : 1.25);
|
|
params[d.id] = p;
|
|
});
|
|
}
|
|
|
|
|
|
function run(surface, fromTo) {
|
|
var toFrom = (fromTo === 'from' ? 'to' : 'from'),
|
|
currSelected = surface.selectAll(selector),
|
|
currClassed = surface.attr('class');
|
|
|
|
if (done || currSelected.empty()) {
|
|
selected.call(reset);
|
|
return;
|
|
}
|
|
|
|
if (!_.isEqual(currSelected.data(), selected.data()) || currClassed !== classed) {
|
|
selected.call(reset);
|
|
classed = currClassed;
|
|
selected = currSelected.call(calcAnimationParams);
|
|
}
|
|
|
|
selected
|
|
.transition()
|
|
.duration(duration)
|
|
.call(setAnimationParams, fromTo)
|
|
.on('end', function() {
|
|
surface.call(run, toFrom);
|
|
});
|
|
}
|
|
|
|
|
|
var breathe = function(surface) {
|
|
done = false;
|
|
timer = d3.timer(function() {
|
|
// wait for elements to actually become selected
|
|
if (surface.selectAll(selector).empty()) {
|
|
return false;
|
|
}
|
|
|
|
surface.call(run, 'from');
|
|
timer.stop();
|
|
return true;
|
|
}, 20);
|
|
};
|
|
|
|
|
|
breathe.off = function() {
|
|
done = true;
|
|
timer.stop();
|
|
selected
|
|
.interrupt()
|
|
.call(reset);
|
|
};
|
|
|
|
|
|
return breathe;
|
|
}
|