master
Wilco Kruijer 4 years ago
parent 3f1425a080
commit 836abda730
  1. 1
      frontend/src/App.tsx
  2. 78
      frontend/src/components/Feed.tsx
  3. 4
      frontend/src/components/Lobby.tsx
  4. 1
      frontend/src/components/NextShot.tsx
  5. BIN
      frontend/src/img/beer.png
  6. BIN
      frontend/src/img/shot.png
  7. BIN
      frontend/src/img/song.png
  8. BIN
      frontend/src/img/talk.png
  9. BIN
      frontend/src/img/time.png

@ -18,6 +18,7 @@ const App = () => {
setStarted(true);
await player.current.play();
player.current.volume = 0;
});
socket.on('seek', async (sec: number) => {

@ -1,26 +1,46 @@
import React, {useEffect, useState} from 'react';
import {Col, Row} from "antd"
import {Col, Timeline} from "antd"
import socket from "../util/socket";
import {Tick} from "../types/types";
import {Tick, TimestampEvent} from "../types/types";
import shot from "../img/shot.png";
import song from "../img/song.png";
import talk from "../img/talk.png";
import time from "../img/time.png";
const images = {
shot, song, talk, time
};
interface Event extends TimestampEvent {
key: number
}
const Feed = () => {
const [count, setCount] = useState(0);
const [feedItems, setFeedItems] = useState([{
title: "Ha1", body: "Doei", key: -1
}]);
const [feedItems, setFeedItems] = useState<Event[]>([]);
useEffect(() => {
socket.on("tick_event", (tick: Tick) => {
if (!tick.next) {
return;
}
if (tick.current === tick.next.timestamp) {
const newItems = tick.next.events as Event[];
const limit = Math.min(8, feedItems.length)
for (let i = 0; i < limit; i++) {
newItems.push(feedItems[i]);
}
// console.log("Shot:", tick.nextShot?.timestamp, tick.nextShot?.count)
// setCount(c => c + 1);
// const newItems = feedItems;
// newItems.push({
// title: "Ha1", body: "Doei", key: count
// });
//
// setFeedItems(newItems);
for (let j = 0; j < newItems.length; j++) {
newItems[j].key = j;
}
setFeedItems(newItems);
console.log(newItems)
}
console.log(feedItems)
});
return () => {
@ -29,15 +49,27 @@ const Feed = () => {
});
return (
<Col className="feed" span={16}>
{feedItems.map(o =>
<Row key={o.key} className="feed-item">
<Col span={4}>Tijd</Col>
<Col span={3} offset={5}>{o.title}</Col>
<Col span={3}>Icoon</Col>
<Col span={3}>{o.body}</Col>
</Row>
)}
// <Col className="feed" span={16}>
// {feedItems.map(o =>
// <Row key={o.key} className="feed-item">
// <Col span={4}>Tijd</Col>
// <Col span={3} offset={5}>{o.title}</Col>
// <Col span={3}>Icoon</Col>
// <Col span={3}>{o.body}</Col>
// </Row>
// )}
// </Col>
<Col className="time-feed" span={16}>
<Timeline mode="alternate">
{feedItems.map(item =>
<Timeline.Item>
{/*dot={<img src={images[item.type]} alt="logo"/>}>*/}
{/*{item.text[0]} - {item.text[1]}*/}
{item}
</Timeline.Item>
)}
</Timeline>
</Col>
);
};

@ -2,7 +2,7 @@ import React, {useEffect, useState} from 'react';
import {Card, Col, InputNumber, Row} from "antd"
import socket, {emit} from "../util/socket";
import "../css/lobby.css";
import beer1 from "../img/beer1.png"
import beer from "../img/beer.png"
const Lobby = () => {
const [lobbyId, setLobbyId] = useState<number | undefined>(undefined);
@ -42,7 +42,7 @@ const Lobby = () => {
<div className="lobby">
<Row>
<Col span={24}>
<h1 id="centurion-title">Centurion! <img src={beer1} className="beer" alt="beer"/></h1>
<h1 id="centurion-title">Centurion! <img src={beer} className="beer" alt="beer"/></h1>
</Col>
</Row>
<Row>

@ -11,7 +11,6 @@ const NextShot = () => {
useEffect(() => {
socket.on("tick_event", (tick: Tick) => {
console.log("TICK EVENT?", tick);
if (!tick.nextShot || !tick.next) {
setRemaining(0);
return;

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Loading…
Cancel
Save