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.
 
 
 
 
 
 

172 lines
4.6 KiB

import { AxisRange } from "@chartwerk/core/dist/types";
import { LinePod, LineTimeSerie } from "@chartwerk/line-pod";
import { SegmentsSet } from "@/types/segment_set";
import { ANALYTIC_UNIT_COLORS } from "@/types/colors"
import { Segment, SegmentId } from "@/types/segment";
export type TimeRange = { from: number, to: number };
export type UpdateDataCallback = (range: TimeRange) => Promise<LineTimeSerie[]>;
export type UpdateSegmentCallback = (segment: Segment) => Promise<SegmentId>;
export class HasticPod extends LinePod {
private _udc: UpdateDataCallback;
private _usc: UpdateSegmentCallback;
private _ctrlKeyIsDown: boolean;
private _ctrlBrush: boolean;
constructor(
el: HTMLElement, udc: UpdateDataCallback, usc: UpdateSegmentCallback,
private _segmentSet: SegmentsSet<Segment>
) {
super(el, undefined, {
renderLegend: false,
eventsCallbacks: {
zoomIn: range => { this._updateRange(range) },
zoomOut: ({x, y}) => { this._zoomOut({x, y}) },
panningEnd: range => { this._updateRange(range) }
}
});
this._usc = usc;
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 */ })
}
renderMetrics() {
super.renderMetrics();
console.log('render my metrics');
}
protected addEvents(): void {
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 async addLabeling(from: number, to: number) {
// TODO: implement
// TODO: persistance of the label
const id = this.getNewTempSegmentId();
from = Math.floor(from);
to = Math.ceil(to);
const segment = new Segment(id, from, to);
const storedId = await this._usc(segment);
segment.id = storedId;
this._segmentSet.addSegment(segment);
this.renderSegment(segment);
}
protected renderSegments() {
const segments = this._segmentSet.getSegments();
for (const s in segments) {
console.log(s);
}
}
protected renderSegment(segment: Segment) {
const x = this.xScale(segment.from);
const y = 0;
const w = this.xScale(segment.to) - x;
const h = this.height
const r = this.chartContainer
.append('rect')
.attr('x', x)
.attr('y', y)
.attr('width', w)
.attr('height', h)
.attr('fill', ANALYTIC_UNIT_COLORS[0])
.attr('opacity', '0.8')
}
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);
}
// TODO: move to "controller"
private _tempIdCounted = -1;
public getNewTempSegmentId(): SegmentId {
this._tempIdCounted--;
return this._tempIdCounted.toString();
}
}