{
const players = generatePlayers(),
colors = color( players )
const svg = d3.create('svg')
.attr('width', 300)
.attr('height', 310)
while(true) {
svg.selectAll('g')
.data( players.slice(0,11), d => d.name )
.join(
enter => enterRects(enter),
update => updateRects(update),
exit => exitRects(exit)
)
yield svg.node()
updateScores(players)
await Promises.tick(3000)
}
function enterRects(enter) {
enter.append('g')
.attr('transform', (d,i) => `translate(${ 10 },${ 350 })`)
.style('opacity', 0)
.call(g => g
.transition().duration(1000)
.attr('transform', (d,i) => `translate(${ 10 },${ 10 + i * 30 })`)
.style('opacity', 1)
)
.call(g =>
g.append('rect')
.attr('width', 280)
.attr('height', 25)
.style('fill', (d,i) => {
if( i == 0 ) return 'gold'
else if( i == 1 ) return 'silver'
else if ( i == 2 ) return '#cd7f32'
else return colors( d.name )
})
.style('opacity', 0.8)
.attr('rx', 3)
)
.call(g =>
g.append('text')
.attr('x', 5)
.attr('dy', '1.2em')
.style('font-size', 14)
.style('font-family', 'sans-serif')
.text(d => `${ d.name } - ${ d.score }`)
.raise()
)
}
function updateRects(update) {
update
.call(g => g
.transition().duration(1000)
.attr('transform', (d,i) => `translate(${ 10 },${ 10 + i * 30 })`)
)
.call(g => g.select('text')
.text(d => `${ d.name } - ${ d.score }`)
)
.call(g => g.select('rect')
.transition().duration(1000)
.style('fill', (d,i) => {
if( i == 0 ) return 'gold'
else if( i == 1 ) return 'silver'
else if ( i == 2 ) return '#cd7f32'
else return colors( d.name )
})
)
}
function exitRects(exit) {
exit
.call(g =>
g.transition().duration(1000)
.attr('transform', (d,i) => `translate(${ 10 },${ 350 })`)
.style('opacity', 0)
.remove()
)
}
}