Skip to content

Commit 065da17

Browse files
committed
Added comments to explain elements
1 parent 7bab374 commit 065da17

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

19-svgdots/src/components/Dots.vue

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<template>
22
<svg>
3+
<!-- v-for directive renders a list based on an array.
4+
in this case, an array of pairs. -->
35
<circle r="20"
46
v-for="(item, index) in dataset"
57
:cx="item[0]"

20-d3connectdots/src/components/ConnectDots.vue

+13-2
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,27 @@ export default {
2828
console.log('this is the item!', item)
2929
}
3030
},
31+
// computed is cached and re-evaluated based on reactive dependencies
3132
computed: {
3233
lineGenerator() {
3334
return d3
3435
.line()
35-
.x(v => v[0])
36-
.y(v => v[1])
36+
// These vars can be any letter as long as they are consistent (q, m, etc)
37+
// Defined at https://github.com/d3/d3-shape#lines
38+
.x(q => q[0])
39+
.y(q => q[1])
3740
},
3841
d() {
3942
return this.lineGenerator(this.dataset)
4043
}
4144
}
4245
}
46+
/* Arrow Functions:
47+
parameters => expression
48+
// is equivalent to:
49+
function (parameters){
50+
return expression;
51+
}
52+
https://codeburst.io/javascript-arrow-functions-for-beginners-926947fc0cdc
53+
*/
4354
</script>

20-d3connectdots/src/components/FancyConnectDots.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export default {
2222
data() {
2323
return {
2424
dataset,
25-
curve: 'curveStepAfter'
25+
curve: 'curveMonotoneY'
2626
}
2727
},
2828
methods: {

0 commit comments

Comments
 (0)