Merge pull request #15 from jcreek/2-add-image-querystring-functionality-for-centre-of-spinner

feat(#2): Add image customisation for mid-spinner
This commit is contained in:
Josh Creek
2022-10-08 22:36:41 +01:00
committed by GitHub
3 changed files with 40 additions and 10 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "SelectionWheel", "name": "SelectionWheel",
"version": "1.3.1", "version": "1.4.0",
"description": "A fun and simple selection wheel.", "description": "A fun and simple selection wheel.",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
+35 -9
View File
@@ -26,6 +26,8 @@ const color = d3.scaleOrdinal(d3.schemeCategory10);
let data = []; let data = [];
const testData = ['Person 1', 'Person 2', 'Person 3', 'Person 4']; const testData = ['Person 1', 'Person 2', 'Person 3', 'Person 4'];
let imageUrlForSpinner = '';
// eslint-disable-next-line no-unused-vars // eslint-disable-next-line no-unused-vars
function rotTween(to) { function rotTween(to) {
const i = d3.interpolate(oldrotation % 360, rotation); const i = d3.interpolate(oldrotation % 360, rotation);
@@ -57,22 +59,41 @@ function makeArrowAndCircle(
.attr('d', `M-${r * 0.15},0L0,${r * 0.05}L0,-${r * 0.05}Z`) .attr('d', `M-${r * 0.15},0L0,${r * 0.05}L0,-${r * 0.05}Z`)
.style('fill', 'black'); .style('fill', 'black');
// draw spin circle // draw spin circle
if (imageUrlForSpinner.length > 0) {
const defs = svg.append('svg:defs');
defs.append('svg:pattern')
.attr('id', 'image')
.attr('width', 1)
.attr('height', 1)
.attr('patternContentUnits', 'objectBoundingBox')
.append('svg:image')
.attr('xlink:href', imageUrlForSpinner)
.attr('width', 1)
.attr('height', 1)
.attr('x', 0)
.attr('y', 0)
.attr('preserveAspectRatio', 'xMaxYMax slice');
}
container container
.append('circle') .append('circle')
.attr('cx', 0) .attr('cx', 0)
.attr('cy', 0) .attr('cy', 0)
.attr('r', 60) .attr('r', 60)
.style('fill', 'white') .style('fill', 'white')
.style('fill', 'url(#image)')
.style('cursor', 'pointer'); .style('cursor', 'pointer');
// spin text if (imageUrlForSpinner.length === 0) {
container // spin text
.append('text') container
.attr('x', 0) .append('text')
.attr('y', 10) .attr('x', 0)
.attr('text-anchor', 'middle') .attr('y', 10)
.text('SPIN') .attr('text-anchor', 'middle')
.style('font-weight', 'bold') .text('SPIN')
.style('font-size', '30px'); .style('font-weight', 'bold')
.style('font-size', '30px');
}
} }
function drawWheel() { function drawWheel() {
@@ -237,6 +258,11 @@ textArea.addEventListener('keyup', () => {
window.localStorage.TextEditorData = textArea.value; window.localStorage.TextEditorData = textArea.value;
}); });
const urlParams = new URLSearchParams(window.location.search);
if (urlParams.has('imgUrl')) {
imageUrlForSpinner = urlParams.get('imgUrl');
}
if (process.env.NODE_ENV === 'production') { if (process.env.NODE_ENV === 'production') {
loadServiceWorker(); loadServiceWorker();
} }
+4
View File
@@ -176,6 +176,10 @@ text{
margin-bottom: 50px; margin-bottom: 50px;
} }
#image{
width: 100%;
}
/* Buttons */ /* Buttons */
.button { .button {