Compare commits
1 Commits
main
...
some-tests
Author | SHA1 | Date |
---|---|---|
vargburz | 9aa94a104c | 3 years ago |
32 changed files with 4007 additions and 3968 deletions
@ -1,43 +1,2 @@ |
|||||||
# Chartwerk Line Pod |
# Chartwerk Line Pod |
||||||
## Including |
|
||||||
|
|
||||||
### Browser |
|
||||||
|
|
||||||
#### Script tag |
|
||||||
```html |
|
||||||
<script src="https://unpkg.com/@chartwerk/line-pod@latest/dist/index.dev.js" type="text/javascript"></script> |
|
||||||
``` |
|
||||||
|
|
||||||
#### Example |
|
||||||
```html |
|
||||||
<div id="line-chart" class="chart-block" style="width: 100%; height: 400px;"></div> |
|
||||||
|
|
||||||
<script src="https://unpkg.com/@chartwerk/line-pod@latest/dist/index.dev.js" type="text/javascript"></script> |
|
||||||
<script> |
|
||||||
new LinePod(document.getElementById('yourDivId', yourData, yourOptions)).render(); |
|
||||||
</script> |
|
||||||
``` |
|
||||||
|
|
||||||
#### Other examples |
|
||||||
* [Basic](https://code.corpglory.net/chartwerk/line-pod/src/branch/main/examples/basic.html) |
|
||||||
* [Live](https://code.corpglory.net/chartwerk/line-pod/src/branch/main/examples/live.html) |
|
||||||
* [Vertical](https://code.corpglory.net/chartwerk/line-pod/src/branch/main/examples/vertical.html) |
|
||||||
* [Segments](https://code.corpglory.net/chartwerk/line-pod/src/branch/main/examples/segments.html) |
|
||||||
* [Markers](https://code.corpglory.net/chartwerk/line-pod/src/branch/main/examples/markers.html) |
|
||||||
|
|
||||||
### Development |
|
||||||
|
|
||||||
If you want to link `core` then clone it to same directory and then run |
|
||||||
|
|
||||||
``` |
|
||||||
yarn link ../core |
|
||||||
``` |
|
||||||
|
|
||||||
but don't add `resolutions` logic to `package.json` |
|
||||||
|
|
||||||
then run |
|
||||||
|
|
||||||
``` |
|
||||||
yarn install |
|
||||||
yarn dev |
|
||||||
``` |
|
@ -1,42 +0,0 @@ |
|||||||
<!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> |
|
@ -1,51 +0,0 @@ |
|||||||
<!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 markersData1 = [3, 6, 9].map(el => ({ |
|
||||||
x: startTime + el * 1000, |
|
||||||
color: 'red', |
|
||||||
alwaysDisplay: false, |
|
||||||
html: new Date(startTime).toISOString(), |
|
||||||
})); |
|
||||||
const markersData2 = [4, 11].map(el => ({ |
|
||||||
x: startTime + el * 1000, |
|
||||||
color: 'blue', |
|
||||||
alwaysDisplay: true, |
|
||||||
html: new Date(startTime).toISOString(), |
|
||||||
})); |
|
||||||
let options = { |
|
||||||
renderLegend: false, |
|
||||||
axis: { |
|
||||||
y: { range: [0, 10] }, |
|
||||||
x: { format: 'time' } |
|
||||||
}, |
|
||||||
} |
|
||||||
var pod = new LinePod( |
|
||||||
document.getElementById('chart'), |
|
||||||
[ |
|
||||||
{ datapoints: timeSerieData, color: 'black' }, |
|
||||||
], |
|
||||||
options, |
|
||||||
{ |
|
||||||
series: [ |
|
||||||
{ data: markersData1 }, |
|
||||||
{ data: markersData2 }, |
|
||||||
] |
|
||||||
} |
|
||||||
); |
|
||||||
pod.render(); |
|
||||||
</script> |
|
||||||
</body> |
|
||||||
</html> |
|
@ -1,47 +0,0 @@ |
|||||||
<!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 markersData = [3, 6, 9].map(el => ({ |
|
||||||
x: startTime + el * 1000, |
|
||||||
payload: el, |
|
||||||
color: 'red', |
|
||||||
})); |
|
||||||
let options = { |
|
||||||
renderLegend: false, |
|
||||||
axis: { |
|
||||||
y: { range: [0, 10] }, |
|
||||||
x: { format: 'time' } |
|
||||||
}, |
|
||||||
} |
|
||||||
var pod = new LinePod( |
|
||||||
document.getElementById('chart'), |
|
||||||
[ |
|
||||||
{ datapoints: timeSerieData, color: 'black' }, |
|
||||||
], |
|
||||||
options, |
|
||||||
{ |
|
||||||
series: [ |
|
||||||
{ data: markersData }, |
|
||||||
], |
|
||||||
events: { |
|
||||||
onMouseMove: (el) => { console.log(el); }, |
|
||||||
onMouseOut: () => { console.log('mouse out'); } |
|
||||||
} |
|
||||||
} |
|
||||||
); |
|
||||||
pod.render(); |
|
||||||
</script> |
|
||||||
</body> |
|
||||||
</html> |
|
@ -1,33 +0,0 @@ |
|||||||
<!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: { mouseClick: console.log } |
|
||||||
} |
|
||||||
var pod = new LinePod( |
|
||||||
document.getElementById('chart'), |
|
||||||
[{ datapoints: data }], |
|
||||||
options |
|
||||||
); |
|
||||||
pod.render(); |
|
||||||
</script> |
|
||||||
</body> |
|
||||||
</html> |
|
@ -1,29 +0,0 @@ |
|||||||
<!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] } }, |
|
||||||
eventsCallbacks: { mouseMove: console.log } |
|
||||||
} |
|
||||||
var pod = new LinePod( |
|
||||||
document.getElementById('chart'), |
|
||||||
[{ datapoints: data }], |
|
||||||
options |
|
||||||
); |
|
||||||
pod.render(); |
|
||||||
</script> |
|
||||||
</body> |
|
||||||
</html> |
|
@ -1,33 +0,0 @@ |
|||||||
<!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> |
|
@ -1,41 +0,0 @@ |
|||||||
<!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' |
|
||||||
} |
|
||||||
] |
|
||||||
); |
|
||||||
pod.render(); |
|
||||||
</script> |
|
||||||
</body> |
|
||||||
</html> |
|
@ -1,46 +0,0 @@ |
|||||||
<!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> |
|
@ -1,37 +0,0 @@ |
|||||||
<!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> |
|
@ -1,37 +1,29 @@ |
|||||||
{ |
{ |
||||||
"name": "@chartwerk/line-pod", |
"name": "@chartwerk/line-pod", |
||||||
"version": "0.7.8", |
"version": "0.5.1", |
||||||
"description": "Chartwerk line chart", |
"description": "Chartwerk line chart", |
||||||
"main": "dist/index.js", |
"main": "dist/index.js", |
||||||
"files": [ |
|
||||||
"/dist" |
|
||||||
], |
|
||||||
"scripts": { |
"scripts": { |
||||||
"build": "rm -rf dist && cd react && yarn build && cd .. && webpack --config build/webpack.prod.conf.js && webpack --config build/webpack.dev.conf.js", |
"build": "webpack --config build/webpack.prod.conf.js && webpack --config build/webpack.dev.conf.js", |
||||||
"dev": "webpack --watch --config build/webpack.dev.conf.js", |
"dev": "webpack --watch --config build/webpack.dev.conf.js", |
||||||
"test": "echo \"Error: no test specified\" && exit 1", |
"test": "echo \"Error: no test specified\" && exit 1" |
||||||
"update-core": "yarn up @chartwerk/core && yarn up @chartwerk/core@latest" |
|
||||||
}, |
}, |
||||||
"repository": { |
"repository": { |
||||||
"type": "git", |
"type": "git", |
||||||
"url": "http://code.corpglory.net/chartwerk/line-pod.git" |
"url": "https://gitlab.com/chartwerk/line-pod.git" |
||||||
}, |
}, |
||||||
"author": "CorpGlory", |
"author": "CorpGlory", |
||||||
"license": "ISC", |
"license": "ISC", |
||||||
"dependencies": { |
"dependencies": { |
||||||
"@chartwerk/core": "^0.6.26" |
"@chartwerk/core": "latest" |
||||||
}, |
}, |
||||||
"devDependencies": { |
"devDependencies": { |
||||||
"copy-webpack-plugin": "^11.0.0", |
"css-loader": "^3.4.2", |
||||||
"css-loader": "^6.8.1", |
"style-loader": "^1.1.3", |
||||||
"style-loader": "^3.3.3", |
"ts-loader": "^6.2.1", |
||||||
"ts-loader": "^9.4.3", |
"typescript": "^3.8.3", |
||||||
"typescript": "^5.1.3", |
"webpack": "^4.42.0", |
||||||
"webpack": "^5.87.0", |
"webpack-cli": "^3.3.11" |
||||||
"webpack-cli": "^5.1.4" |
|
||||||
}, |
}, |
||||||
"packageManager": "yarn@3.2.1", |
"packageManager": "yarn@3.2.1" |
||||||
"workspaces": [ |
|
||||||
"react/*" |
|
||||||
] |
|
||||||
} |
} |
||||||
|
@ -1,26 +0,0 @@ |
|||||||
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' |
|
||||||
] |
|
||||||
}; |
|
@ -1,8 +0,0 @@ |
|||||||
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; |
|
@ -1,6 +0,0 @@ |
|||||||
const baseWebpackConfig = require('./webpack.base.conf'); |
|
||||||
|
|
||||||
var conf = baseWebpackConfig; |
|
||||||
conf.mode = 'production'; |
|
||||||
|
|
||||||
module.exports = baseWebpackConfig; |
|
@ -1,23 +0,0 @@ |
|||||||
{ |
|
||||||
"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" |
|
||||||
} |
|
||||||
} |
|
@ -1,74 +0,0 @@ |
|||||||
import { LineTimeSerie, LineOptions, LinePod } from '@chartwerk/line-pod'; |
|
||||||
import { MarkersConf } from '@chartwerk/line-pod/dist/models/marker'; |
|
||||||
import { SegmentSerie } from '@chartwerk/line-pod/dist/models/segment'; |
|
||||||
|
|
||||||
import React, { useEffect, useRef, useState } from 'react'; |
|
||||||
|
|
||||||
import _ from 'lodash'; |
|
||||||
|
|
||||||
|
|
||||||
export type ChartwerkLinePodProps = { |
|
||||||
id?: string; |
|
||||||
series: LineTimeSerie[]; |
|
||||||
options?: LineOptions; |
|
||||||
markersConf?: MarkersConf, |
|
||||||
segments?: SegmentSerie[], |
|
||||||
className?: string; |
|
||||||
} |
|
||||||
|
|
||||||
export function ChartwerkLinePod(props: ChartwerkLinePodProps) { |
|
||||||
|
|
||||||
const [pod, setPod] = useState<LinePod | null>(null); |
|
||||||
const [hack, setHack] = useState<number | null>(null); |
|
||||||
|
|
||||||
const chartRef = useRef(null); |
|
||||||
const chart = chartRef.current; |
|
||||||
|
|
||||||
useEffect(() => { |
|
||||||
// this function will be called on component unmount
|
|
||||||
return () => { |
|
||||||
if(pod === null) { return; } |
|
||||||
// @ts-ignore
|
|
||||||
pod.removeEventListeners(); |
|
||||||
} |
|
||||||
}, []); |
|
||||||
|
|
||||||
useEffect(() => { |
|
||||||
if(chart === null) { return; } |
|
||||||
if(pod === null) { |
|
||||||
const newPod = new LinePod( |
|
||||||
// @ts-ignore
|
|
||||||
chart, |
|
||||||
props.series, |
|
||||||
props.options, |
|
||||||
props.markersConf, |
|
||||||
props.segments |
|
||||||
); |
|
||||||
setPod(newPod); |
|
||||||
newPod.render(); |
|
||||||
} else { |
|
||||||
if(props.markersConf) { |
|
||||||
pod.updateMarkers(props.markersConf); |
|
||||||
} |
|
||||||
if(props.segments) { |
|
||||||
pod.updateSegments(props.segments); |
|
||||||
} |
|
||||||
// TODO: actually it's wrong logic with updates
|
|
||||||
// because it creates new pod anyway
|
|
||||||
pod.updateData(props.series, props.options); |
|
||||||
} |
|
||||||
}, [chart, props.id, props.options, props.markersConf, props.segments]); |
|
||||||
|
|
||||||
// TODO: it's a hack to render the LinePod right after the div appears in DOM
|
|
||||||
setTimeout(() => { |
|
||||||
if(hack === null) { |
|
||||||
setHack(1); |
|
||||||
} |
|
||||||
}, 1); |
|
||||||
|
|
||||||
return ( |
|
||||||
<div id={props.id} className={props.className} ref={chartRef}></div> |
|
||||||
); |
|
||||||
} |
|
||||||
|
|
||||||
export default ChartwerkLinePod; |
|
@ -1,23 +0,0 @@ |
|||||||
{ |
|
||||||
"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,139 +0,0 @@ |
|||||||
import { MarkerElem, MarkersConf, MarkerSerie } from '../models/marker'; |
|
||||||
import { LineTimeSerie, LineOptions } from '../types'; |
|
||||||
|
|
||||||
import { Margin, PodState } from '@chartwerk/core'; |
|
||||||
|
|
||||||
import d3 from 'd3'; |
|
||||||
|
|
||||||
export class Markers { |
|
||||||
private _layerContainer = null; |
|
||||||
private _chartHeight = 0; |
|
||||||
|
|
||||||
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>, chartHeight: number) { |
|
||||||
this._chartHeight = chartHeight; |
|
||||||
this._layerContainer = metricContainer |
|
||||||
.append('g') |
|
||||||
.attr('class', 'markers-layer'); |
|
||||||
for(const serie of this._markerConf.series) { |
|
||||||
this.renderSerie(serie); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
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((marker: MarkerElem) => { |
|
||||||
this._renderLine(marker); |
|
||||||
this._renderCircle(marker); |
|
||||||
this._renderTooltip(marker); |
|
||||||
}); |
|
||||||
} |
|
||||||
} |
|
@ -1,73 +0,0 @@ |
|||||||
import { SegmentSerie, SegmentElement } from "../models/segment"; |
|
||||||
import { PodState } from "@chartwerk/core"; |
|
||||||
import { LineTimeSerie, LineOptions } from "../types"; |
|
||||||
|
|
||||||
import * as d3 from "d3"; |
|
||||||
|
|
||||||
const OPACITY = 0.3; |
|
||||||
const OPACITY_SELECT = 0.3; |
|
||||||
|
|
||||||
export class Segments { |
|
||||||
// TODO: more semantic name
|
|
||||||
private _d3Holder = null; |
|
||||||
private _metricCon = null; |
|
||||||
|
|
||||||
constructor( |
|
||||||
private _series: SegmentSerie[], |
|
||||||
private _state: PodState<LineTimeSerie, LineOptions> |
|
||||||
) { |
|
||||||
} |
|
||||||
|
|
||||||
render(metricContainer: d3.Selection<SVGGElement, unknown, null, undefined>, chartContainer: d3.Selection<SVGGElement, unknown, null, undefined>) { |
|
||||||
if(this._d3Holder !== null) { |
|
||||||
this._d3Holder.remove(); |
|
||||||
} |
|
||||||
this._d3Holder = metricContainer.append('g').attr('class', 'markers-layer'); |
|
||||||
for (const s of this._series) { |
|
||||||
this.renderSerie(chartContainer, s); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
protected renderSerie(chartContainer: d3.Selection<SVGGElement, unknown, null, undefined>, serie: SegmentSerie) { |
|
||||||
// TODO: it's hack with core, need to find a better way
|
|
||||||
const overlay = chartContainer.select('.overlay'); |
|
||||||
serie.data.forEach((d) => { |
|
||||||
// @ts-ignore
|
|
||||||
const startPositionX = this._state.xScale(d[0]) as number; |
|
||||||
// @ts-ignore
|
|
||||||
const endPositionX = this._state.xScale(d[1]) as number; |
|
||||||
const width = endPositionX - startPositionX // Math.max(endPositionX - startPositionX, MIMIMUM_SEGMENT_WIDTH);
|
|
||||||
const opacity = serie.opacity || OPACITY; |
|
||||||
const opacitySelect = serie.opacitySelect || OPACITY_SELECT; |
|
||||||
this._d3Holder.append('rect') |
|
||||||
.attr('class', 'segment') |
|
||||||
.attr('x', startPositionX) |
|
||||||
.attr('y', 0) |
|
||||||
.attr('width', width) |
|
||||||
// @ts-ignore // TODO: remove ignore but boxParams are protected
|
|
||||||
.attr('height', this._state.boxParams.height) |
|
||||||
.attr('opacity', opacity) |
|
||||||
.style('fill', serie.color) |
|
||||||
.on('mouseover', function() { |
|
||||||
if(serie.select === true) { |
|
||||||
d3.select(this).attr('opacity', opacitySelect); |
|
||||||
if(serie.onSelect) { |
|
||||||
serie.onSelect(d); |
|
||||||
} |
|
||||||
} |
|
||||||
}) |
|
||||||
.on('mouseout', function(e) { |
|
||||||
if(serie.select === true) { |
|
||||||
d3.select(this).attr('opacity', opacity); |
|
||||||
if(serie.onUnselect) { |
|
||||||
serie.onUnselect(d); |
|
||||||
} |
|
||||||
} |
|
||||||
}) |
|
||||||
.on('mousemove', function(e) { |
|
||||||
var event = new MouseEvent('mousemove', d3.event); |
|
||||||
overlay.node().dispatchEvent(event) |
|
||||||
}) |
|
||||||
}); |
|
||||||
} |
|
||||||
} |
|
@ -1,21 +0,0 @@ |
|||||||
import { CoreSeries, yAxisOrientation } from '@chartwerk/core'; |
|
||||||
import { LineTimeSerie, AreaType } from '../types'; |
|
||||||
|
|
||||||
import * as _ from 'lodash'; |
|
||||||
|
|
||||||
|
|
||||||
const LINE_SERIE_DEFAULTS = { |
|
||||||
maxLength: undefined, |
|
||||||
renderDots: false, |
|
||||||
renderLines: true, |
|
||||||
dashArray: '0', |
|
||||||
class: '', |
|
||||||
renderArea: AreaType.NONE, |
|
||||||
yOrientation: yAxisOrientation.LEFT, |
|
||||||
}; |
|
||||||
|
|
||||||
export class LineSeries extends CoreSeries<LineTimeSerie> { |
|
||||||
constructor(series: LineTimeSerie[]) { |
|
||||||
super(series, _.clone(LINE_SERIE_DEFAULTS)); |
|
||||||
} |
|
||||||
} |
|
@ -1,19 +0,0 @@ |
|||||||
export type MarkerElem = { |
|
||||||
x: number; |
|
||||||
color: string; |
|
||||||
html?: string; |
|
||||||
alwaysDisplay?: boolean; |
|
||||||
payload?: any; |
|
||||||
} |
|
||||||
|
|
||||||
export type MarkerSerie = { |
|
||||||
data: MarkerElem[]; |
|
||||||
} |
|
||||||
|
|
||||||
export type MarkersConf = { |
|
||||||
series: MarkerSerie[], |
|
||||||
events?: { |
|
||||||
onMouseMove?: (el: MarkerElem) => void; |
|
||||||
onMouseOut?: () => void; |
|
||||||
} |
|
||||||
} |
|
@ -1,11 +0,0 @@ |
|||||||
export type SegmentElement = [number, number, any?]; |
|
||||||
|
|
||||||
export type SegmentSerie = { |
|
||||||
color: string; |
|
||||||
data: SegmentElement[] // [from, to, payload?] payload is any data for tooltip,
|
|
||||||
select?: boolean, |
|
||||||
opacity?: number, |
|
||||||
opacitySelect?: number, |
|
||||||
onSelect?: (SegmentElement) => void |
|
||||||
onUnselect?: (SegmentElement) => void |
|
||||||
} |
|
@ -1,41 +1,19 @@ |
|||||||
import { Serie, Options } from '@chartwerk/core'; |
import { TimeSerie, Options } from '@chartwerk/core'; |
||||||
import { AxisRange } from '@chartwerk/core/dist/types'; |
|
||||||
|
|
||||||
type LineTimeSerieParams = { |
type LineTimeSerieParams = { |
||||||
maxLength: number; |
confidence: number, |
||||||
renderDots: boolean; |
mode: Mode, |
||||||
renderLines: boolean; // TODO: refactor same as scatter-pod
|
maxLength: number, |
||||||
|
renderDots: boolean, |
||||||
|
renderLines: boolean, // TODO: refactor same as scatter-pod
|
||||||
|
useOutOfRange: boolean, // It's temporary hack. Need to refactor getValueInterval() method
|
||||||
dashArray: string; // dasharray attr, only for lines
|
dashArray: string; // dasharray attr, only for lines
|
||||||
class: string; // option to add custom class to each serie element
|
class: string; // option to add custom class to each serie element
|
||||||
renderArea: AreaType; // default is none
|
renderArea: boolean; // TODO: move to render type
|
||||||
} |
} |
||||||
|
export enum Mode { |
||||||
export enum AreaType { |
STANDARD = 'Standard', |
||||||
NONE = 'None', |
CHARGE = 'Charge' |
||||||
ABOVE = 'Above', |
|
||||||
BELOW = 'Below', |
|
||||||
} |
|
||||||
|
|
||||||
export type LineTimeSerie = Serie & Partial<LineTimeSerieParams>; |
|
||||||
export type LineOptions = Options & { |
|
||||||
events? : { |
|
||||||
zoomOut?: (centers: { |
|
||||||
x: number; |
|
||||||
y: number; |
|
||||||
}, range: AxisRange[]) => void; |
|
||||||
contextMenu?: (position: { |
|
||||||
x: number; |
|
||||||
y: number; |
|
||||||
}) => void; |
|
||||||
} |
|
||||||
} |
} |
||||||
|
export type LineTimeSerie = TimeSerie & Partial<LineTimeSerieParams>; |
||||||
export type MouseObj = { |
export type LineOptions = Options; |
||||||
x: number, |
|
||||||
y: number, |
|
||||||
xVal: number, |
|
||||||
yVal: number, |
|
||||||
series: { value: [number, number], color: string, label: string }[], |
|
||||||
chartX: number, |
|
||||||
chartWidth: number |
|
||||||
} |
|
||||||
|
Loading…
Reference in new issue