-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskjema.js
120 lines (107 loc) · 3.27 KB
/
skjema.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
// skjema.js
import React, {useState} from "react";
import Highcharts from 'highcharts';
import HighchartsReact from 'highcharts-react-official';
export default function skjema() {
//input field data
const [input, setInput] = useState('');
//pie chart data
const [pie, setPie] = useState([{
name: '7',
y: 7
}, {
name: '8',
y: 2
}, {
name: '3',
y: 3
}]);
//options used in piechart
const [options, setOptions] = useState({
chart: {
type: 'pie',
margin: [0, 0, 0, 0]
},
series: [
{
data: pie // initilize with pie's data
}
],
credits: {
enabled: false
},
title: false,
plotOptions:{
pie:{
dataLabels:{
distance:-20, // places the label in the center of the pie slice
color:'black',
style:{
textOutline:false
}
}
}
},
responsive: {
rules: [{
condition: {
maxWidth: 200
}
}]
}
});
const handleChange = event => {
const { value } = event.target;
setInput(value)
}
const submitForm = () => {
var found = false;
// only 1-9 is allowed to be stored in pie
if(input > 0 && input < 10){
//check for number in pie
pie.map(obj => {
if(obj.name === input){
found = true;
obj.y += 1;
console.log(obj.y)
obj = {...obj, y:obj.y}
}
})
// checks if number was new or not and adds it to pie state accordingly
if(found){
setPie(pie)
}else{
setPie(prev => [
...prev,
{
name:input,
y: 1,
}
])
}
// updates options data
setOptions(prev => ({
...prev,
series: {
data:pie
}
}))
}
}
return (
<div>
<h1 className="font">Hva er folks favoritt tall?</h1>
<div className="boxleft">
<div className="topText">skjema</div>
<div id="boxRightText" className="boxText">Ditt tall</div>
<input className="input" id="inNr" type="text" pattern="[1-9]" placeholder="1-9" value={input} onChange={handleChange} ></input>
<div className="button" onClick={submitForm}>Send inn</div>
</div>
<div className="boxright" >
<div className="topText">graf</div>
<HighchartsReact containerProps={{ style: { height: "70%" } }} highcharts={Highcharts} options={options} />
<div className="boxText" id="graftext">Resultat av avstemning</div>
</div>
</div>
);
};