Hastic standalone https://hastic.io
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

143 lines
3.7 KiB

import { AxisRange } from "@chartwerk/core/dist/types";
3 years ago
import { LinePod, LineTimeSerie } from "@chartwerk/line-pod";
3 years ago
export type TimeRange = { from: number, to: number };
export type UpdateDataCallback = (range: TimeRange) => Promise<LineTimeSerie[]>;
3 years ago
export class HasticPod extends LinePod {
private _udc: UpdateDataCallback;
3 years ago
private _ctrlKeyIsDown: boolean;
private _ctrlBrush: boolean;
constructor(el: HTMLElement, udc: UpdateDataCallback) {
super(el, undefined, {
3 years ago
renderLegend: false,
eventsCallbacks: {
3 years ago
zoomIn: range => { this._updateRange(range) },
zoomOut: ({x, y}) => { this._zoomOut({x, y}) },
panningEnd: range => { this._updateRange(range) }
}
3 years ago
});
3 years ago
this._ctrlKeyIsDown = false;
this._ctrlBrush = false;
window.addEventListener("keydown", e => {
if(e.code == "ControlLeft") {
this._ctrlKeyIsDown = true;
}
});
window.addEventListener("keyup", (e) => {
if(e.code == "ControlLeft") {
this._ctrlKeyIsDown = false;
}
});
this._udc = udc;
// TODO: move to params
const to = Math.floor(Date.now() / 1000);
const from = to - 5000; // -5000 seconds
this._udc({ from, to })
.then(ts => { this.updateData(ts); })
.catch(() => { /* set "error" message */ })
3 years ago
}
renderMetrics() {
super.renderMetrics();
console.log('render my metrics');
}
3 years ago
protected addEvents(): void {
// TODO: refactor for a new mouse/scroll events
// const panKeyEvent = this.options.zoomEvents.mouse.pan.keyEvent;
// const isPanActive = this.options.zoomEvents.mouse.pan.isActive;
this.initBrush();
this.initPan();
this.chartContainer
.on('mouseover', this.onMouseOver.bind(this))
.on('mouseout', this.onMouseOut.bind(this))
.on('mousemove', this.onMouseMove.bind(this))
.on('dblclick.zoom', this.zoomOut.bind(this));
}
protected onBrushStart(): void {
if(this._ctrlKeyIsDown) {
this._ctrlBrush = true;
this.svg.select('.selection').attr('fill', 'red')
}
// this.in
// TODO: move to state
this.isBrushing === true;
const selection = this.d3.event.selection;
if(selection !== null && selection.length > 0) {
this.brushStartSelection = this.d3.event.selection[0];
}
this.onMouseOut();
}
protected onBrushEnd(): void {
if(!this._ctrlBrush) {
super.onBrushEnd();
} else {
const extent = this.d3.event.selection;
this.isBrushing === false;
this._ctrlBrush = false;
if(extent === undefined || extent === null || extent.length < 2) {
return;
}
this.chartContainer
.call(this.brush.move, null);
const startTimestamp = this.xScale.invert(extent[0]);
const endTimestamp = this.xScale.invert(extent[1]);
this.addLabeling(startTimestamp, endTimestamp);
}
}
protected addLabeling(from: number, to: number) {
// TODO: implement
// TODO: persistance of the label
const x = this.xScale(from);
const y = 0;
const w = this.xScale(to) - x;
const h = this.height
3 years ago
const r = this.chartContainer
.append('rect')
.attr('x', x)
.attr('y', y)
3 years ago
.attr('width', w)
.attr('height', h)
.attr('fill', 'red')
.attr('opacity', '0.8')
}
3 years ago
private async _updateRange(range: AxisRange[]) {
console.log('update range');
console.log(range);
const ts = await this._udc({ from: range[0][0], to: range[0][1] });
const options = { axis: { x: { range: range[0] } } };
this.updateData(ts, options);
}
private _zoomOut({x, y}) {
console.log(`${x} -- ${y}`);
}
private _renderSegments() {
const m = this.metricContainer;
console.log(m);
}
3 years ago
}