forked from apertureless/vue-chartjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor: Extract identical code into a function
- Loading branch information
1 parent
b80b07e
commit 96adf9e
Showing
22 changed files
with
126 additions
and
739 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
import Chart from 'chart.js' | ||
|
||
function generateChart (chartId, chartType) { | ||
return { | ||
render: function (createElement) { | ||
return createElement( | ||
'div', { | ||
style: this.styles, | ||
class: this.cssClasses | ||
}, | ||
[ | ||
createElement( | ||
'canvas', { | ||
attrs: { | ||
id: this.chartId, | ||
width: this.width, | ||
height: this.height | ||
}, | ||
ref: 'canvas' | ||
} | ||
) | ||
] | ||
) | ||
}, | ||
|
||
props: { | ||
chartId: { | ||
default: chartId, | ||
type: String | ||
}, | ||
width: { | ||
default: 400, | ||
type: Number | ||
}, | ||
height: { | ||
default: 400, | ||
type: Number | ||
}, | ||
cssClasses: { | ||
type: String, | ||
default: '' | ||
}, | ||
styles: { | ||
type: Object | ||
}, | ||
plugins: { | ||
type: Array, | ||
default () { | ||
return [] | ||
} | ||
} | ||
}, | ||
|
||
data () { | ||
return { | ||
_chart: null, | ||
_plugins: this.plugins | ||
} | ||
}, | ||
|
||
methods: { | ||
addPlugin (plugin) { | ||
this.$data._plugins.push(plugin) | ||
}, | ||
renderChart (data, options) { | ||
this.$data._chart = new Chart( | ||
this.$refs.canvas.getContext('2d'), { | ||
type: chartType, | ||
data: data, | ||
options: options, | ||
plugins: this.$data._plugins | ||
} | ||
) | ||
} | ||
}, | ||
beforeDestroy () { | ||
if (this.$data._chart) { | ||
this.$data._chart.destroy() | ||
} | ||
} | ||
} | ||
} | ||
|
||
export const Bar = generateChart('bar-chart', 'bar') | ||
export const HorizontalBar = generateChart('horizontalbar-chart', 'horizontalBar') | ||
export const Doughnut = generateChart('doughnut-chart', 'doughnut') | ||
export const Line = generateChart('line-chart', 'line') | ||
export const Pie = generateChart('pie-chart', 'pie') | ||
export const PolarArea = generateChart('polar-chart', 'polarArea') | ||
export const Radar = generateChart('radar-chart', 'radar') | ||
export const Bubble = generateChart('bubble-chart', 'bubble') | ||
export const Scatter = generateChart('scatter-chart', 'scatter') | ||
|
||
export default { | ||
Bar, | ||
HorizontalBar, | ||
Doughnut, | ||
Line, | ||
Pie, | ||
PolarArea, | ||
Radar, | ||
Bubble, | ||
Scatter | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.