mirror of
https://github.com/System-End/site.git
synced 2026-04-19 19:45:07 +00:00
Fixed some more stuff
This commit is contained in:
parent
34be57090c
commit
b6149defb8
3 changed files with 21 additions and 65 deletions
|
|
@ -19,8 +19,9 @@ export default async function handler(req, res) {
|
|||
|
||||
try {
|
||||
|
||||
const { authorization} = req.headers;
|
||||
const { rank1, rank2, rank3 } = req.body;
|
||||
const authorization = req.headers['authorization']?.replace('Bearer ', '').replace(/[^a-zA-Z0-9-]/g, '');
|
||||
|
||||
const { Overall, Technical, Creative } = req.body;
|
||||
|
||||
const pointsDistribution = [5, 4, 3, 2, 1];
|
||||
|
||||
|
|
@ -36,33 +37,33 @@ export default async function handler(req, res) {
|
|||
|
||||
let jobs = []
|
||||
|
||||
for (let i = 0; i < rank1.length; i++) {
|
||||
const project = rank1[i];
|
||||
for (let i = 0; i < Overall.length; i++) {
|
||||
const project = Overall[i];
|
||||
const points = pointsDistribution[i];
|
||||
|
||||
jobs.push(addVote(project, points, userID))
|
||||
jobs.push(addVote(project, points, userID, "Overall"))
|
||||
}
|
||||
|
||||
await Promise.all(jobs)
|
||||
|
||||
jobs = []
|
||||
|
||||
for (let i = 0; i < rank2.length; i++) {
|
||||
const project = rank2[i];
|
||||
for (let i = 0; i < Technical.length; i++) {
|
||||
const project = Technical[i];
|
||||
const points = pointsDistribution[i];
|
||||
|
||||
await addVote(project, points, userID);
|
||||
await addVote(project, points, userID, "Technical");
|
||||
}
|
||||
|
||||
await Promise.all(jobs)
|
||||
|
||||
jobs = []
|
||||
|
||||
for (let i = 0; i < rank3.length; i++) {
|
||||
const project = rank3[i];
|
||||
for (let i = 0; i < Creative.length; i++) {
|
||||
const project = Creative[i];
|
||||
const points = pointsDistribution[i];
|
||||
|
||||
await addVote(project, points, userID);
|
||||
await addVote(project, points, userID, "Creative");
|
||||
}
|
||||
|
||||
await Promise.all(jobs)
|
||||
|
|
@ -74,7 +75,7 @@ export default async function handler(req, res) {
|
|||
}
|
||||
}
|
||||
|
||||
const addVote = async (projectId, points, userID) => {
|
||||
const addVote = async (projectId, points, userID, type) => {
|
||||
if (!userID || !points || !projectId) {
|
||||
return res.status(400).json({ error: 'Missing required headers' });
|
||||
}
|
||||
|
|
@ -82,7 +83,8 @@ const addVote = async (projectId, points, userID) => {
|
|||
const vote = await votesTable.create({
|
||||
Points: parseInt(points, 10),
|
||||
Voter: [userID],
|
||||
Showcase: [projectId]
|
||||
Showcase: [projectId],
|
||||
Type: type
|
||||
});
|
||||
|
||||
}
|
||||
|
|
@ -1,46 +0,0 @@
|
|||
import React, { useEffect } from 'react';
|
||||
|
||||
const Test = () => {
|
||||
|
||||
|
||||
const submitVote = async (rank1, rank2, rank3) => {
|
||||
const authToken = window.localStorage.getItem('arcade.authToken');
|
||||
|
||||
try {
|
||||
const response = await fetch('/api/arcade/showcase/vote', {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
'Authorization': authToken,
|
||||
},
|
||||
body: JSON.stringify({
|
||||
rank1,
|
||||
rank2,
|
||||
rank3,
|
||||
}),
|
||||
})
|
||||
|
||||
|
||||
const data = await response.json();
|
||||
return data;
|
||||
} catch (error) {
|
||||
console.error('Error submitting vote:', error);
|
||||
throw error;
|
||||
}
|
||||
};
|
||||
|
||||
useEffect(() => {
|
||||
|
||||
const rank1 = ["recnSpjM91mCKJjlo", "recnSpjM91mCKJjlo", "recnSpjM91mCKJjlo", "recnSpjM91mCKJjlo", "recnSpjM91mCKJjlo"];
|
||||
const rank2 = ["recnSpjM91mCKJjlo", "recnSpjM91mCKJjlo", "recnSpjM91mCKJjlo", "recnSpjM91mCKJjlo", "recnSpjM91mCKJjlo"];
|
||||
const rank3 = ["recnSpjM91mCKJjlo", "recnSpjM91mCKJjlo", "recnSpjM91mCKJjlo", "recnSpjM91mCKJjlo", "recnSpjM91mCKJjlo"];
|
||||
|
||||
submitVote(rank1, rank2, rank3);
|
||||
}, []);
|
||||
|
||||
return (
|
||||
<div>test</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default Test;
|
||||
|
|
@ -471,7 +471,7 @@ const My = () => {
|
|||
setEndPage(true)
|
||||
}
|
||||
|
||||
const submitVote = async (rank1, rank2, rank3) => {
|
||||
const submitVote = async (overall, technical, creative) => {
|
||||
const authToken = window.localStorage.getItem('arcade.authToken');
|
||||
|
||||
try {
|
||||
|
|
@ -479,12 +479,12 @@ const My = () => {
|
|||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
'Authorization': authToken,
|
||||
'Authorization': "Bearer "+ authToken,
|
||||
},
|
||||
body: JSON.stringify({
|
||||
rank1,
|
||||
rank2,
|
||||
rank3,
|
||||
overall,
|
||||
technical,
|
||||
creative,
|
||||
}),
|
||||
})
|
||||
|
||||
|
|
@ -505,7 +505,7 @@ const My = () => {
|
|||
console.log(technical)
|
||||
console.log(overall)
|
||||
|
||||
submitVote(creative, technical, overall)
|
||||
submitVote(overall, technical, creative)
|
||||
}, [endPage])
|
||||
|
||||
return endPage == true ? (
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue