-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
124 lines (122 loc) · 3.71 KB
/
index.html
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
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="theme-color" content="#000000"/>
<link rel="manifest" href="%PUBLIC_URL%/manifest.json"/>
<title>React App</title>
<style>
html, body {
margin: 0;
height: 100vh;
}
</style>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<main></main>
</body>
<script>
const minimal = function() {
return ({
appname: 'Modia basic'
});
};
const enhetAware = function() {
return ({
appname: 'Modia enhet',
enhet: {
initialValue: '0604',
onChange: function(enhet) {
console.warn('ENHET onChange', enhet);
},
display: 'ENHET_VALG'
},
toggles: {
visEnhetVelger: true
}
});
};
const fnrAware = function() {
return ({
appname: 'Modia enhet',
fnr: {
initialValue: '10108000398',
onChange: function(enhet) {
console.warn('FNR onChange', enhet);
},
display: 'SOKEFELT'
},
toggles: {
visSokefelt: true
}
});
};
const controlled = function(fnrValue, enhetValue) {
return ({
appname: 'Modia controlled',
fnr: {
value: fnrValue,
display: 'SOKEFELT',
onChange: function(fnr) {
console.warn("FNR onChange", fnr);
renderDecorator(fnr, enhetValue);
}
},
enhet: {
value: enhetValue,
display: 'ENHET_VALG',
onChange: function(enhet) {
console.warn("ENHET onChange", enhet);
renderDecorator(fnrValue, enhet);
}
},
toggles: {
visVeileder: true
},
markup: {
etterSokefelt: '<button>Min knapp</button>',
}
});
};
const complete = function() {
return ({
appname: 'Modia maximum',
fnr: {
initialValue: '',
display: 'SOKEFELT',
onChange: function(fnr) {
console.warn('FNR onChange', fnr);
}
},
enhet: {
initialValue: null,
display: 'ENHET_VALG',
onChange: function(enhet) {
console.warn('ENHET onChange', enhet);
}
},
toggles: {
visVeileder: true,
visHotkeys: true,
},
markup: {
etterSokefelt: '<button>Min knapp</button>',
},
hotkeys: [
{ key: { char: 'A', altKey: true }, description: 'Test description', action() { alert('ALT+A pressed')} },
{ key: { char: 'B', altKey: true }, description: 'Test description', action() { alert('ALT+B pressed')} },
{ key: { char: 'C', altKey: true }, description: 'Test description', documentationOnly: true },
]
});
};
function renderDecorator(fnr, enhet) {
const config = complete(fnr, enhet);
NAVSPA.internarbeidsflatefs(document.getElementById('root'), config);
}
setTimeout(function() { renderDecorator('', null); }, 1000);
</script>
</html>