Compare commits

..

No commits in common. "19a94f927e9c5406d3b0111357c5dd940be2d762" and "379dcdcd512d4fe45292da0d2ff3ca90d4c316a8" have entirely different histories.

33 changed files with 79 additions and 3774 deletions

2
.gitignore vendored
View File

@ -35,5 +35,3 @@ yarn-error.log*
# prisma data # prisma data
/prisma/migrations /prisma/migrations
/prisma/borders.db /prisma/borders.db
/public/images

View File

@ -1,43 +0,0 @@
import Image from "next/image";
import styles from "../styles/Components.module.css";
export default function Select(props) {
const { data, onSelect, selected = {} } = props;
console.log("data", data, "selected", selected);
return (
<div className={styles.select}>
{data &&
data.map((border, index) => {
return (
<div
className={[
styles.borderKeeper,
selected == border.id ? styles.selected : undefined,
].join(" ")}
key={border.id}>
<Image
className={styles.userImage}
src="/user.png"
alt="user image"
width={128}
height={128}
onClick={(ev) => {
onSelect(border.id);
}}
/>
<Image
className={styles.borderImage}
src={`/images/${border.imageName}`}
alt={`border with id ${border.id}`}
width={132}
height={132}
onClick={(ev) => {
onSelect(border.id);
}}
/>
</div>
);
})}
</div>
);
}

View File

@ -2,23 +2,44 @@ import { useSession, signIn, signOut } from "next-auth/react";
import { useEffect, useState } from "react"; import { useEffect, useState } from "react";
import styles from "../styles/Components.module.css"; import styles from "../styles/Components.module.css";
export default function UserInfo(props) { export default function UserInfo(borderInfo) {
const { data: session } = useSession(); const { data: session } = useSession();
const { borderData } = props; const [isLoading, setLoading] = useState(false);
const [borderData, setBorderData] = useState(undefined);
useEffect(async () => {
setLoading(true);
const res = await fetch('api/user/border/@me');
const data = await res.json();
setBorderData(data);
setLoading(false);
}, []);
return ( return (
<div> <div>{
<p className={styles.description}> isLoading ?
{session <p>Loading...</p>
? `Signed in as ${session.user.name} (${borderData?.discordId})` :
: "Not signed in"} <div>
<br /> <p className={styles.description}>
{session ? ( {session ? `Signed in as ${session.user.name} (${borderData.discordId})` : "Not signed in"}
<button onClick={() => signOut()}>Sign Out</button> <br />
) : ( {session ? (
<button onClick={() => signIn()}>Sign In</button> <button onClick={() => signOut()}>Sign Out</button>
)} ) : (
</p> <button onClick={() => signIn()}>Sign In</button>
)}
</p>
{
!!borderData ?
(<div>
<img src={session.user.image} />
<img src={`/api/border/${borderData.imageId ?? '0'}`} />
</div>)
: undefined
}
</div>
}
</div> </div>
); );
} }

View File

@ -4,14 +4,10 @@ import prisma from "./prisma";
export const getBorderById = async (id) => { export const getBorderById = async (id) => {
return await prisma.borderImage.findFirst({ return await prisma.borderImage.findFirst({
where: { where: {
id: parseInt(id), id: parseInt(id)
}, }
}); });
}; }
export const getAllBorders = async () => {
return await prisma.borderImage.findMany();
};
export const getUserBorders = async (req) => { export const getUserBorders = async (req) => {
const session = await getSession({ req }); const session = await getSession({ req });

View File

@ -1,8 +1,14 @@
import { getBorderById } from "../../../lib/borders"; import { getBorderById } from "../../../lib/borders";
export default function handler(req, res) { export default function handler(req, res) {
const id = req.query.id; const id = req.query.id;
getBorderById(id).then((result) => {
return res.status(200).json(result); console.log(id);
});
} getBorderById(id).then((result) => {
const imageName = result?.imageName ?? "default.png";
// return res.status(200).json(result);
return res.redirect(301, `/images/${imageName}`)
});
}

View File

@ -1,7 +0,0 @@
import { getAllBorders } from "../../../lib/borders";
export default function handler(req, res) {
getAllBorders().then((result) => {
return res.status(200).json(result);
});
}

View File

@ -2,29 +2,8 @@ import Head from "next/head";
import Image from "next/image"; import Image from "next/image";
import styles from "../styles/Home.module.css"; import styles from "../styles/Home.module.css";
import UserInfo from "../components/userInfo"; import UserInfo from "../components/userInfo";
import Select from "../components/select";
import { useEffect, useState } from "react";
export default function Home() { export default function Home() {
const [data, setData] = useState(null);
const [borderData, setBorderData] = useState(null);
const [selected, setSelected] = useState(0);
useEffect(() => {
fetch("api/border/all")
.then((res) => res.json())
.then((data) => setData(data));
}, []);
useEffect(() => {
fetch("api/user/border/@me")
.then((res) => res.json())
.then((data) => {
setBorderData(data);
setSelected(data?.borderId || 0);
});
}, []);
return ( return (
<div className={styles.container}> <div className={styles.container}>
<Head> <Head>
@ -32,14 +11,10 @@ export default function Home() {
<meta name="description" content="Generated by create next app" /> <meta name="description" content="Generated by create next app" />
<link rel="icon" href="/favicon.ico" /> <link rel="icon" href="/favicon.ico" />
</Head> </Head>
<header>
<main className={styles.main}>
<h1 className={styles.title}>Steam Borders</h1> <h1 className={styles.title}>Steam Borders</h1>
<div className={styles.userinfo}> <UserInfo />
<UserInfo borderData={borderData} />
</div>
</header>
<main>
<Select data={data} onSelect={setSelected} selected={selected} />
</main> </main>
</div> </div>
); );

Binary file not shown.

After

Width:  |  Height:  |  Size: 526 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 897 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 573 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 236 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 622 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 588 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 653 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 569 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 346 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 686 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 140 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 938 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 470 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 566 B

View File

@ -1,40 +0,0 @@
.select {
min-height: 90vh;
max-height: 90vh;
max-width: 50vw;
left: 45vw;
position: relative;
overflow-y: scroll;
display: flex;
flex-wrap: wrap;
}
.borderKeeper {
width: 132px !important;
height: 132px !important;
padding: 4px;
}
.borderKeeper > span {
display: inline-table !important;
}
.userImage,
.borderImage {
position: relative;
left: 0;
}
.userImage {
z-index: -1;
top: 0;
}
.borderImage {
z-index: 3;
top: -256px !important;
}
.selected {
border: 1px solid black;
}

View File

@ -12,19 +12,6 @@
align-items: center; align-items: center;
} }
.userinfo {
position: absolute;
display: flex;
flex-direction: column;
justify-content: end;
align-items: flex-end;
text-align: right;
width: 50vw;
top: 0;
left: 50vw;
padding-right: 32px;
}
.footer { .footer {
display: flex; display: flex;
flex: 1; flex: 1;
@ -56,12 +43,11 @@
margin: 0; margin: 0;
line-height: 1.15; line-height: 1.15;
font-size: 4rem; font-size: 4rem;
width: 50vw;
} }
.title, .title,
.description { .description {
text-align: left; text-align: center;
} }
.description { .description {

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
console.log("a"); console.log("a");
const fs = require("fs"); const fs = require('fs');
const path = require("path"); const path = require('path');
const Prisma = require("@prisma/client"); const Prisma = require("@prisma/client");
const prisma = new Prisma.PrismaClient(); const prisma = new Prisma.PrismaClient();
@ -9,41 +9,32 @@ console.log("processing new border images");
const cwd = process.cwd(); const cwd = process.cwd();
const folder = path.join( const folder = path.join(cwd, cwd.includes("util") ? ".." : "", "public/images");
cwd,
cwd.includes("util") ? ".." : "",
"public/images"
);
const list = fs.readdirSync(folder); const list = fs.readdirSync(folder);
(async () => { (async () => {
let numAdded = 0; let numAdded = 0;
for (let item of list) { for (let item of list) {
// console.log(item); // console.log(item);
const result = await prisma.borderImage.findFirst({ const result = await prisma.borderImage.findFirst(
where: { {
imageName: item, where: {
}, imageName: item
}); }
if (!result && item == "default.png") { }
const added = await prisma.borderImage.create({ );
data: { if (!result) {
id: 0, const added = await prisma.borderImage.create(
imageName: item, {
}, data: {
}); imageName: item
numAdded++; },
console.log(added); }
} else if (!result) { );
const added = await prisma.borderImage.create({ numAdded++;
data: { console.log(added);
imageName: item, }
},
});
numAdded++;
console.log(added);
} }
} console.log(`Processed ${numAdded} new images.`);
console.log(`Processed ${numAdded} new images.`); })();
})();