Compare commits
42 Commits
vue-folder
...
main
Author | SHA1 | Date |
---|---|---|
vargburz | b3e7f943ad | 2 months ago |
vargburz | a8408a748c | 3 months ago |
vargburz | 6e6fa7dc8e | 3 months ago |
rozetko | f67ce313dd | 3 months ago |
rozetko | c1c3b77dac | 3 months ago |
rozetko | 53c233b969 | 3 months ago |
vargburz | ebcb3185cd | 3 months ago |
vargburz | 6422b49bf0 | 3 months ago |
vargburz | 3f9342b5e1 | 3 months ago |
vargburz | bb46fe79be | 3 months ago |
rozetko | 0c3b404155 | 4 months ago |
rozetko | 85cd952b9f | 4 months ago |
rozetko | 701feaaf2f | 4 months ago |
rozetko | ebb49adf82 | 4 months ago |
rozetko | f38829787c | 4 months ago |
rozetko | 6549415feb | 4 months ago |
rozetko | 117c0af469 | 4 months ago |
rozetko | aac8f6f5ac | 4 months ago |
rozetko | f4354d7a77 | 4 months ago |
rozetko | 529f439ac9 | 5 months ago |
rozetko | 121f7a0305 | 5 months ago |
rozetko | 7e721ab880 | 5 months ago |
rozetko | 3663d3eaaa | 5 months ago |
Coin de Gamma | bd598d6a0b | 6 months ago |
glitch4347 | 4620ef7aa9 | 6 months ago |
rozetko | 44a4e6ce74 | 6 months ago |
glitch4347 | 04a01b75a1 | 6 months ago |
glitch4347 | bf3aab2db1 | 6 months ago |
Coin de Gamma | 348a289f1a | 8 months ago |
glitch4347 | 17a2fdf94e | 8 months ago |
Coin de Gamma | dc89f6cbb9 | 8 months ago |
glitch4347 | 547c15c0b6 | 8 months ago |
glitch4347 | 32d122ba4d | 8 months ago |
glitch4347 | 9c165f4e1f | 8 months ago |
Coin de Gamma | ec2bd27acd | 8 months ago |
glitch4347 | 815144d209 | 8 months ago |
glitch4347 | 1a80ca2cab | 8 months ago |
Coin de Gamma | ee08db2f54 | 8 months ago |
glitch4347 | 884fed6582 | 8 months ago |
glitch4347 | 8aca72ce04 | 9 months ago |
Coin de Gamma | c62a1c386f | 9 months ago |
glitch4347 | de6237891c | 9 months ago |
31 changed files with 1963 additions and 185 deletions
@ -0,0 +1,42 @@
|
||||
<!DOCTYPE html> |
||||
<html> |
||||
<head> |
||||
<meta content="text/html;charset=utf-8" http-equiv="Content-Type"> |
||||
<meta content="utf-8" http-equiv="encoding"> |
||||
|
||||
<script src="../dist/index.dev.js" type="text/javascript"></script> |
||||
</head> |
||||
<body> |
||||
<div id="chart" style="width: 50%; height: 500px;"></div> |
||||
|
||||
<script type="text/javascript"> |
||||
let options = { |
||||
renderLegend: false, usePanning: false, |
||||
axis: { |
||||
x: { format: 'numeric', range: [0, 100] }, |
||||
y: { invert: true, range: [0, 100] }, |
||||
y1: { isActive: true, format: 'numeric', range: [0, 1000] }, |
||||
}, |
||||
zoomEvents: { |
||||
mouse: { zoom: { isActive: false, orientation: 'horizontal' } }, |
||||
scroll: { zoom: { isActive: false, orientation: 'horizontal' } } |
||||
}, |
||||
} |
||||
const data1 = [[0,0], [35, 40], [65, 60], [100, 100]]; |
||||
const data2 = [[0,0], [35, 50], [65, 65], [80, 100]]; |
||||
const data3 = [[0,0], [35, 20], [65, 50], [100, 80]]; |
||||
const data4 = [[0,900], [35, 800], [65, 700], [100, 600]]; |
||||
var pod = new LinePod( |
||||
document.getElementById('chart'), |
||||
[ |
||||
{ target: 'test1', datapoints: data1, color: 'green', renderArea: 'Above' }, |
||||
{ target: 'test2', datapoints: data2, color: 'blue', renderArea: 'Below' }, |
||||
{ target: 'test3', datapoints: data3, color: 'orange', renderArea: 'Below', yOrientation: 'right' }, |
||||
{ target: 'test4', datapoints: data4, color: 'purple', renderArea: 'Above', yOrientation: 'right' }, |
||||
], |
||||
options |
||||
); |
||||
pod.render(); |
||||
</script> |
||||
</body> |
||||
</html> |
@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html> |
||||
<html> |
||||
<head> |
||||
<meta content="text/html;charset=utf-8" http-equiv="Content-Type"> |
||||
<meta content="utf-8" http-equiv="encoding"> |
||||
<script src="../dist/index.dev.js" type="text/javascript"></script> |
||||
</head> |
||||
<body> |
||||
<div id="chart" style="width: 50%; height: 500px;"></div> |
||||
<script type="text/javascript"> |
||||
const startTime = 1590590148; |
||||
const data = Array.from( |
||||
{ length: 20 }, |
||||
(el, idx) => [startTime + idx * 10000, Math.floor(Math.random() * 30)] |
||||
); |
||||
let options = { |
||||
renderLegend: false, usePanning: false, |
||||
axis: { y: { range: [0, 50] } }, |
||||
zoomEvents: { mouse: { |
||||
zoom: { isActive: false }, |
||||
pan: { isActive: false }, |
||||
} }, |
||||
eventsCallbacks: { contextMenu: (position) => console.log('contextMenu', position) } |
||||
} |
||||
var pod = new LinePod( |
||||
document.getElementById('chart'), |
||||
[{ datapoints: data }], |
||||
options |
||||
); |
||||
pod.render(); |
||||
</script> |
||||
</body> |
||||
</html> |
@ -0,0 +1,46 @@
|
||||
<!DOCTYPE html> |
||||
<html> |
||||
<head> |
||||
<meta content="text/html;charset=utf-8" http-equiv="Content-Type"> |
||||
<meta content="utf-8" http-equiv="encoding"> |
||||
|
||||
<script src="../dist/index.dev.js" type="text/javascript"></script> |
||||
</head> |
||||
<body> |
||||
<div id="chart" style="width: 100%; height: 500px;"></div> |
||||
|
||||
<script type="text/javascript"> |
||||
const startTime = 1701790172908; |
||||
const timeSerieData = [5, 6, 3, 7, 5, 6, 8, 4, 5, 6, 4, 3, 5, 7, 8] |
||||
.map((el, idx) => [startTime + idx * 1000, el]); |
||||
const segmentsData = [3, 6, 9].map(el => [startTime + el * 1000, startTime + (el + 1) * 1100]); |
||||
let options = { |
||||
renderLegend: false, |
||||
axis: { |
||||
y: { range: [0, 10] }, |
||||
x: { format: 'time' } |
||||
}, |
||||
} |
||||
var pod = new LinePod( |
||||
document.getElementById('chart'), |
||||
[ |
||||
{ datapoints: timeSerieData, color: 'black' }, |
||||
], |
||||
options, |
||||
undefined, |
||||
[ |
||||
{ |
||||
data: segmentsData, |
||||
color:'#FFE545', |
||||
select: true, |
||||
opacity: 0.4, |
||||
opacitySelect: 0.8, |
||||
onSelect: console.log, |
||||
onUnselect: console.log |
||||
} |
||||
] |
||||
); |
||||
pod.render(); |
||||
</script> |
||||
</body> |
||||
</html> |
@ -0,0 +1,37 @@
|
||||
<!DOCTYPE html> |
||||
<html> |
||||
<head> |
||||
<meta content="text/html;charset=utf-8" http-equiv="Content-Type"> |
||||
<meta content="utf-8" http-equiv="encoding"> |
||||
<script src="../dist/index.dev.js" type="text/javascript"></script> |
||||
</head> |
||||
<body> |
||||
<div id="chart" style="width: 50%; height: 500px;"></div> |
||||
<script type="text/javascript"> |
||||
const startTime = 1590590148; |
||||
const data = Array.from( |
||||
{ length: 20 }, |
||||
(el, idx) => [startTime + idx * 10000, Math.floor(Math.random() * 30)] |
||||
); |
||||
let options = { |
||||
renderLegend: false, usePanning: false, |
||||
axis: { y: { range: [0, 50] } }, |
||||
zoomEvents: { mouse: { |
||||
zoom: { isActive: true, orientation: "horizontal" }, |
||||
pan: { isActive: false }, |
||||
}}, |
||||
events: { |
||||
zoomOut: function(centers, ranges) { |
||||
console.log('zoomOut', centers, ranges); |
||||
} |
||||
} |
||||
} |
||||
var pod = new LinePod( |
||||
document.getElementById('chart'), |
||||
[{ datapoints: data }], |
||||
options |
||||
); |
||||
pod.render(); |
||||
</script> |
||||
</body> |
||||
</html> |
@ -0,0 +1,26 @@
|
||||
const path = require('path'); |
||||
|
||||
module.exports = { |
||||
entry: './src/index.tsx', |
||||
module: { |
||||
rules: [ |
||||
{ |
||||
test: /\.tsx?$/, |
||||
use: 'ts-loader', |
||||
exclude: /node_modules/, |
||||
}, |
||||
], |
||||
}, |
||||
resolve: { |
||||
extensions: ['.tsx', '.ts', '.js'], |
||||
}, |
||||
output: { |
||||
filename: 'index.js', |
||||
path: path.resolve(__dirname, '../dist'), |
||||
libraryTarget: 'umd', |
||||
umdNamedDefine: true, |
||||
}, |
||||
externals: [ |
||||
'@chartwerk/line-pod', 'react' |
||||
] |
||||
}; |
@ -0,0 +1,8 @@
|
||||
const baseWebpackConfig = require('./webpack.base.conf'); |
||||
|
||||
var conf = baseWebpackConfig; |
||||
conf.devtool = 'inline-source-map'; |
||||
conf.mode = 'development'; |
||||
conf.output.filename = 'index.dev.js'; |
||||
|
||||
module.exports = conf; |
@ -0,0 +1,6 @@
|
||||
const baseWebpackConfig = require('./webpack.base.conf'); |
||||
|
||||
var conf = baseWebpackConfig; |
||||
conf.mode = 'production'; |
||||
|
||||
module.exports = baseWebpackConfig; |
@ -0,0 +1,23 @@
|
||||
{ |
||||
"name": "line-pod-react", |
||||
"version": "0.0.1", |
||||
"description": "React wrapper around line-pod", |
||||
"main": "dist/index.js", |
||||
"repository": "http://code.corpglory.net/chartwerk/line-pod.git", |
||||
"author": "CorpGlory Inc.", |
||||
"license": "ISC", |
||||
"scripts": { |
||||
"build": "webpack --config build/webpack.prod.conf.js", |
||||
"dev": "webpack --config build/webpack.dev.conf.js" |
||||
}, |
||||
"dependencies": { |
||||
"@chartwerk/line-pod": "workspace:*", |
||||
"react": "^18.2.0", |
||||
"react-dom": "^18.2.0" |
||||
}, |
||||
"devDependencies": { |
||||
"ts-loader": "^9.5.1", |
||||
"typescript": "^5.4.3", |
||||
"webpack": "^5.87.0" |
||||
} |
||||
} |
@ -0,0 +1,23 @@
|
||||
{ |
||||
"compilerOptions": { |
||||
"target": "es5", |
||||
"rootDir": "./src", |
||||
"module": "esnext", |
||||
"moduleResolution": "node", |
||||
"declaration": true, |
||||
"declarationDir": "dist", |
||||
"allowSyntheticDefaultImports": true, |
||||
"inlineSourceMap": false, |
||||
"sourceMap": true, |
||||
"noEmitOnError": false, |
||||
"emitDecoratorMetadata": false, |
||||
"experimentalDecorators": true, |
||||
"noImplicitReturns": true, |
||||
"noImplicitThis": false, |
||||
"noImplicitUseStrict": false, |
||||
"noImplicitAny": false, |
||||
"noUnusedLocals": false, |
||||
"baseUrl": "./src", |
||||
"jsx": "react" |
||||
} |
||||
} |
@ -1,59 +1,139 @@
|
||||
import { MarkersConf, MarkerSerie } from "../models/marker"; |
||||
import { PodState } from "@chartwerk/core"; |
||||
import { LineTimeSerie, LineOptions } from "../types"; |
||||
import { MarkerElem, MarkersConf, MarkerSerie } from '../models/marker'; |
||||
import { LineTimeSerie, LineOptions } from '../types'; |
||||
|
||||
import d3 from "d3"; |
||||
import { Margin, PodState } from '@chartwerk/core'; |
||||
|
||||
import d3 from 'd3'; |
||||
|
||||
export class Markers { |
||||
// TODO: more semantic name
|
||||
private _d3Holder = null; |
||||
private _layerContainer = null; |
||||
private _chartHeight = 0; |
||||
|
||||
constructor(private _markerConf: MarkersConf, private _state: PodState<LineTimeSerie, LineOptions>) { |
||||
constructor( |
||||
private _chartContainer: d3.Selection<HTMLElement, unknown, null, undefined>, |
||||
private _markerConf: MarkersConf, |
||||
private _state: PodState<LineTimeSerie, LineOptions>, |
||||
private _margin: Margin, |
||||
) { } |
||||
|
||||
clear() { |
||||
if(this._layerContainer !== null) { |
||||
this._layerContainer.remove(); |
||||
} |
||||
this._chartContainer.selectAll('.marker-content').remove(); |
||||
} |
||||
|
||||
render(metricContainer: d3.Selection<SVGGElement, unknown, null, undefined>) { |
||||
if(this._d3Holder !== null) { |
||||
this._d3Holder.remove(); |
||||
render(metricContainer: d3.Selection<SVGGElement, unknown, null, undefined>, chartHeight: number) { |
||||
this._chartHeight = chartHeight; |
||||
this._layerContainer = metricContainer |
||||
.append('g') |
||||
.attr('class', 'markers-layer'); |
||||
for(const serie of this._markerConf.series) { |
||||
this.renderSerie(serie); |
||||
} |
||||
this._d3Holder = metricContainer.append('g').attr('class', 'markers-layer'); |
||||
for (const ms of this._markerConf.series) { |
||||
this.renderSerie(ms); |
||||
} |
||||
|
||||
private _getLinePosition(marker: MarkerElem): number { |
||||
return this._state.xScale(marker.x); |
||||
} |
||||
|
||||
private _renderCircle(marker: MarkerElem) { |
||||
const linePosition = this._getLinePosition(marker); |
||||
|
||||
let circle = this._layerContainer.append('circle') |
||||
.attr('class', 'gap-circle') |
||||
.attr('stroke', marker.color) |
||||
.attr('stroke-width', '2px') |
||||
.attr('r', 4) |
||||
.attr('cx', linePosition) |
||||
.attr('cy', 5) |
||||
|
||||
circle |
||||
.attr('pointer-events', 'all') |
||||
.style('cursor', 'pointer') |
||||
.on('mousemove', () => { |
||||
const onMouseMove = this._markerConf.events?.onMouseMove; |
||||
if(onMouseMove) { |
||||
onMouseMove(marker); |
||||
return |
||||
} |
||||
if(marker.alwaysDisplay) { |
||||
return; |
||||
} |
||||
this._chartContainer |
||||
.selectAll(`.marker-content-${marker.x}`) |
||||
.style('visibility', 'visible') |
||||
.style('z-index', 9999); |
||||
}) |
||||
.on('mouseout', () => { |
||||
const onMouseOut = this._markerConf.events?.onMouseOut; |
||||
if(onMouseOut) { |
||||
onMouseOut() |
||||
return |
||||
} |
||||
if(marker.alwaysDisplay) { |
||||
return; |
||||
} |
||||
this._chartContainer |
||||
.selectAll(`.marker-content-${marker.x}`) |
||||
.style('visibility', 'hidden') |
||||
.style('z-index', 1); |
||||
}); |
||||
} |
||||
|
||||
private _renderLine(marker: MarkerElem) { |
||||
const linePosition = this._getLinePosition(marker); |
||||
|
||||
this._layerContainer.append('line') |
||||
.attr('class', 'gap-line') |
||||
.attr('stroke', marker.color) |
||||
.attr('stroke-width', '1px') |
||||
.attr('stroke-opacity', '0.3') |
||||
.attr('stroke-dasharray', '4') |
||||
.attr('x1', linePosition) |
||||
.attr('x2', linePosition) |
||||
.attr('y1', 0) |
||||
// @ts-ignore // TODO: remove ignore but boxParams are protected
|
||||
.attr('y2', this._state.boxParams.height) |
||||
.attr('pointer-events', 'none'); |
||||
} |
||||
|
||||
private _renderTooltip(marker: MarkerElem) { |
||||
if(marker.html === undefined) { |
||||
return; |
||||
} |
||||
|
||||
const linePosition = this._getLinePosition(marker); |
||||
|
||||
const div = this._chartContainer |
||||
.append('div') |
||||
.attr('class', `marker-content marker-content-${marker.x}`) |
||||
// @ts-ignore // TODO: remove ignore but boxParams are protected
|
||||
.style('top', `${this._state.boxParams.height - this._chartHeight}px`) |
||||
.style('visibility', marker.alwaysDisplay ? 'visible' : 'hidden') |
||||
.style('position', 'absolute') |
||||
.style('border', '1px solid black') |
||||
.style('background-color', 'rgb(33, 37, 41)') |
||||
.style('color', 'rgb(255, 255, 255)') |
||||
.style('line-height', '1.55') |
||||
.style('font-size', '0.875rem') |
||||
.style('border-radius', '0.5rem') |
||||
.style('padding', 'calc(0.3125rem) 0.625rem') |
||||
.style('position', 'absolute') |
||||
.style('white-space', 'nowrap') |
||||
.style('pointer-events', 'none') |
||||
.style('z-index', 1) |
||||
.html(marker.html); |
||||
|
||||
// align tooltip: center (we need it to be rendered first)
|
||||
div.style('left', `${linePosition + this._margin.left - div.node().getBoundingClientRect().width / 2}px`) |
||||
} |
||||
|
||||
protected renderSerie(serie: MarkerSerie) { |
||||
serie.data.forEach((d) => { |
||||
let linePosition = this._state.xScale(d[0]) as number; |
||||
this._d3Holder.append('line') |
||||
.attr('class', 'gap-line') |
||||
.attr('stroke', serie.color) |
||||
.attr('stroke-width', '1px') |
||||
.attr('stroke-opacity', '0.3') |
||||
.attr('stroke-dasharray', '4') |
||||
.attr('x1', linePosition) |
||||
.attr('x2', linePosition) |
||||
.attr('y1', 0) |
||||
// @ts-ignore // TODO: remove ignore but boxParams are protected
|
||||
.attr('y2', this._state.boxParams.height) |
||||
.attr('pointer-events', 'none'); |
||||
let circle = this._d3Holder.append('circle') |
||||
.attr('class', 'gap-circle') |
||||
.attr('stroke', serie.color) |
||||
.attr('stroke-width', '2px') |
||||
.attr('r', 4) |
||||
.attr('cx', linePosition) |
||||
.attr('cy', 5) |
||||
|
||||
if(this._markerConf !== undefined) { |
||||
circle |
||||
.attr('pointer-events', 'all') |
||||
.style('cursor', 'pointer') |
||||
.on('mousemove', () => this._markerConf.events.onMouseMove(d)) |
||||
.on('mouseout', () => this._markerConf.events.onMouseOut()) |
||||
} |
||||
|
||||
serie.data.forEach((marker: MarkerElem) => { |
||||
this._renderLine(marker); |
||||
this._renderCircle(marker); |
||||
this._renderTooltip(marker); |
||||
}); |
||||
|
||||
} |
||||
} |
||||
} |
||||
|
@ -1,4 +1,11 @@
|
||||
export type SegmentElement = [number, number, any?]; |
||||
|
||||
export type SegmentSerie = { |
||||
color: string; |
||||
data: [number, number, any?][] // [from, to, payload?] payload is any data for tooltip
|
||||
data: SegmentElement[] // [from, to, payload?] payload is any data for tooltip,
|
||||
select?: boolean, |
||||
opacity?: number, |
||||
opacitySelect?: number, |
||||
onSelect?: (SegmentElement) => void |
||||
onUnselect?: (SegmentElement) => void |
||||
} |
@ -1,33 +0,0 @@
|
||||
import { LinePod } from '..'; |
||||
import { VueChartwerkPodMixin } from '@chartwerk/core'; |
||||
|
||||
// it is used with Vue.component, e.g.: Vue.component('chartwerk-line-pod', VueChartwerkLinePod)
|
||||
export const ChartwerkLinePod = { |
||||
// alternative to `template: '<div class="chartwerk-line-pod" :id="id" />'`
|
||||
render(createElement) { |
||||
return createElement( |
||||
'div', |
||||
{ |
||||
class: { 'chartwerk-line-pod': true }, |
||||
attrs: { id: this.id } |
||||
} |
||||
); |
||||
}, |
||||
mixins: [VueChartwerkPodMixin], |
||||
methods: { |
||||
render() { |
||||
if(this.pod === undefined) { |
||||
this.pod = new LinePod(document.getElementById(this.id), this.series, this.options); |
||||
this.pod.render(); |
||||
} else { |
||||
this.pod.updateData(this.series, this.options); |
||||
} |
||||
}, |
||||
renderSharedCrosshair(values) { |
||||
this.pod.renderSharedCrosshair(values); |
||||
}, |
||||
hideSharedCrosshair() { |
||||
this.pod.hideSharedCrosshair(); |
||||
} |
||||
} |
||||
}; |
Loading…
Reference in new issue