aboutsummaryrefslogtreecommitdiff
path: root/pages/present.tsx
blob: 97f48acc7cb3317299da68e60d8a795b8602e6b7 (plain)
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
import Button from '@material-ui/core/Button';
import { useEffect, useState } from 'react';

import ExitToAppRoundedIcon from '@material-ui/icons/ExitToAppRounded';
import PlayArrowRoundedIcon from '@material-ui/icons/PlayArrowRounded';
import SettingsRemoteRoundedIcon from '@material-ui/icons/SettingsRemoteRounded';
import SettingsRoundedIcon from '@material-ui/icons/SettingsRounded';

import CodeRoundedIcon from '@material-ui/icons/CodeRounded';
import MovieRoundedIcon from '@material-ui/icons/MovieRounded';

function previous() {
	console.log('previous slide');
}

function next() {
	console.log('next slide');
}

export default function Present() {
	useEffect(() => {
		setInterval(() => {
			document.getElementById('time').innerText = new Date().toLocaleTimeString();
		}, 500);
	}, []);

	var [videoSRC, setVideoSRC] = useState('');
	var [slides, setSlides] = useState();

	var precision = 3;
	var framerate = 60;

	useEffect(() => {
		var videoEL = document.getElementById('player') as HTMLVideoElement;
		videoEL.addEventListener('loadeddata', () => {
			console.log('initial load');
		});
		videoEL.addEventListener('canplaythrough', () => {
			videoEL.play();
		});

		setInterval(() => {
			if (videoEL.paused) return;
			var frame = Math.round((videoEL.currentTime * 1e3) / (1e3 / framerate));
			document.getElementById('frame').innerText = frame.toString();
			if (frame >= framerate) {
				videoEL.pause();
				console.log(videoEL.currentTime);
			}
		}, 1e3 / (precision * framerate));
	}, []);

	return <div className='presentation posfix a0 h100vh'>
		<div className='slideWrapper abscenterv posrel'>
			<div className='slide posrel'>
				<div className='innner posabs a0'>
					<video src={videoSRC} id='player' className='fullwidth' />
				</div>
			</div>
		</div>
		<div className='fullscreenControls posabs a0'>
			<div className='control previous' onClick={previous}>
				<span id='frame'>0</span>
			</div>
			<div
				className='control menu'
				onClick={() => {
					document.getElementById('menu').classList.add('active');
				}}
			/>
			<div className='control next' onClick={next} />
		</div>
		<div className='menu posabs a0' id='menu'>
			<div
				className='background posabs a0'
				onClick={() => {
					document.getElementById('menu').classList.remove('active');
				}}
			/>
			<div className='info sidebyside posabs h0 b0'>
				<div className='timetitle floatb'>
					<h3 className='time numbers nobr' id='time'>14:00:41</h3>
					<h1 className='title nobr'>PWS Presentatie</h1>
				</div>
				<div className='buttons floatb'>
					<div className='inner center'>
						{false && <Button
							variant='contained'
							color='default'
							className='bg-err'
							startIcon={<ExitToAppRoundedIcon />}
							children='Stop presentation'
						/>}
						<Button
							variant='contained'
							color='default'
							startIcon={<PlayArrowRoundedIcon />}
							children='Resume presentation'
							onClick={() => {
								document.getElementById('menu').classList.remove('active');
							}}
						/>
						<input
							type='file'
							id='vidUpload'
							accept='video/*'
							className='dispnone'
							onChange={event => {
								var file = event.target.files[0];
								console.log(event.target.files);
								if (!file) return;
								console.log('new fileReader!');
								var reader = new FileReader();
								reader.addEventListener('error', () => {
									console.log('reader error');
								});
								reader.addEventListener('abort', () => {
									console.log('reader abortus');
								});
								reader.addEventListener('load', ev => {
									console.log('reader done!');
									setVideoSRC(ev.target.result as string);
								});
								reader.addEventListener('progress', (progEv) => {
									console.log(progEv.loaded);
								});
								reader.readAsDataURL(file);
							}}
						/>
						<input
							type='file'
							id='jsonUpload'
							accept='application/json'
							className='dispnone'
							onChange={event => {
								var file = event.target.files[0];
								console.log(event.target.files);
								if (!file) return;
								console.log('new fileReader!');
								var reader = new FileReader();
								reader.addEventListener('error', () => {
									console.log('reader error');
								});
								reader.addEventListener('abort', () => {
									console.log('reader abortus');
								});
								reader.addEventListener('load', ev => {
									console.log('reader done!');
									setSlides(JSON.parse(ev.target.result as string));
								});
								reader.addEventListener('progress', (progEv) => {
									console.log(progEv.loaded);
								});
								reader.readAsText(file);
							}}
						/>
						{!videoSRC && <Button
							variant='contained'
							color='default'
							children='Load video'
							startIcon={<MovieRoundedIcon />}
							onClick={() => document.getElementById('vidUpload').click()}
						/>}
						{!slides && <Button
							variant='contained'
							color='default'
							children='Load json'
							startIcon={<CodeRoundedIcon />}
							onClick={() => document.getElementById('jsonUpload').click()}
						/>}
						{false && <Button
							variant='contained'
							color='default'
							startIcon={<SettingsRemoteRoundedIcon />}
							children='Connect remote'
						/>}
						{false && <Button
							variant='contained'
							color='default'
							startIcon={<SettingsRoundedIcon />}
							children='Settings'
						/>}
					</div>
				</div>
				<div className='slide posrel floatb'>
					<h3 className='time numbers nobr posrel'>slide 1/15</h3>
				</div>
			</div>
		</div>
	</div>;
}