blob: 301e0358eda155778f1cbb49329e4af3850e89dc (
plain) (
blame)
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
|
import React, { useEffect, useRef, useState } from 'react';
import { useLocation, Link } from "react-router-dom";
import "./games.css"
export default function GameEntry({ gameInfo }) {
const [gameEntry, setGameEntry] = React.useState(null);
const location = useLocation();
const gameInfoCats = gameInfo.category_portals;
useEffect(() => {
gameInfoCats.forEach(catInfo => {
const itemBody = document.createElement("div");
const itemTitle = document.createElement("span");
const spacing = document.createElement("br");
const itemNum = document.createElement("span");
itemTitle.innerText = catInfo.category.name;
itemNum.innerText = catInfo.portal_count;
itemTitle.classList.add("games-page-item-body-item-title");
itemNum.classList.add("games-page-item-body-item-num");
itemBody.appendChild(itemTitle);
itemBody.appendChild(spacing);
itemBody.appendChild(itemNum);
itemBody.className = "games-page-item-body-item";
// itemBody.innerHTML = `
// <span className='games-page-item-body-item-title'>${catInfo.category.name}</span><br />
// <span className='games-page-item-body-item-num'>${catInfo.portal_count}</span>`
document.getElementById(`${gameInfo.id}`).appendChild(itemBody);
});
})
return (
<Link to={"/games/" + gameInfo.id}><div className='games-page-item'>
<div className='games-page-item-header'>
<div style={{backgroundImage: `url(${gameInfo.image})`}} className='games-page-item-header-img'></div>
<span><b>{gameInfo.name}</b></span>
</div>
<div id={gameInfo.id} className='games-page-item-body'>
</div>
</div></Link>
)
}
|