blob: 16d413d89ff624bd7c98bae0c4f9c282035bcac7 (
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
|
import Head from "next/head";
import { ReactElement, useEffect, useState } from "react";
import { io } from "socket.io-client";
import * as config from "../config";
import styles from "../styles/Home.module.css";
const socket = io(config.backendUrl);
const Home = (): ReactElement => {
const [value, setValue] = useState<number | undefined>(undefined);
useEffect(() => {
socket.on("connect", () => {
console.log("connected:", socket.id);
});
socket.on("disconnect", (reason: string) => {
console.log("disconnected, reason:", reason);
});
socket.on("update", (arg: number) => {
console.log("update:", arg);
setValue(arg);
});
});
const increment = () => {
socket.emit("increment");
};
const rotateDeg = value !== undefined ? 10 * value : 0;
return (
<div className={styles.container}>
<Head>
<title>tomi.science</title>
<meta name="description" content="Tomi Koskinen's academic portfolio" />
<link rel="icon" href="/tomi_sq.png" />
</Head>
<button onClick={increment} className={styles.tomiBtn} style={{
transform: `rotate(${rotateDeg}deg)`,
}}>
<div className={styles.btnInner}>
<span className={styles.counter}>{value}</span>
{ /* eslint-disable-next-line @next/next/no-img-element */ }
<img src="/tomi_sq.png" alt="" />
</div>
</button>
</div>
);
};
export default Home;
|