3
apps/frontend/.dockerignore
Normal file
@ -0,0 +1,3 @@
|
||||
node_modules
|
||||
.next
|
||||
.turbo
|
7
apps/frontend/.env-example
Normal file
@ -0,0 +1,7 @@
|
||||
NEXT_PUBLIC_SITE_URL=http://localhost:3000
|
||||
NEXT_PUBLIC_TRIGGER_PUBLIC_API_KEY=
|
||||
|
||||
TRIGGER_API_KEY=
|
||||
TRIGGER_API_URL=https://trigger.example.com
|
||||
MONGO_URI=mongodb://127.0.0.1:27017
|
||||
SENTRY_AUTH_TOKEN=
|
9
apps/frontend/.eslintrc.json
Normal file
@ -0,0 +1,9 @@
|
||||
{
|
||||
"extends": ["next/core-web-vitals", "next/typescript"],
|
||||
"rules": {
|
||||
"@typescript-eslint/no-unused-vars": "off",
|
||||
"@typescript-eslint/no-unused-expressions": "off",
|
||||
"@typescript-eslint/no-explicit-any": "off",
|
||||
"@typescript-eslint/no-empty-object-type": "off"
|
||||
}
|
||||
}
|
41
apps/frontend/.gitignore
vendored
Normal file
@ -0,0 +1,41 @@
|
||||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
||||
|
||||
# dependencies
|
||||
/node_modules
|
||||
/.pnp
|
||||
.pnp.js
|
||||
.yarn/install-state.gz
|
||||
|
||||
# testing
|
||||
/coverage
|
||||
|
||||
# next.js
|
||||
/.next/
|
||||
/out/
|
||||
|
||||
# production
|
||||
/build
|
||||
|
||||
# misc
|
||||
.DS_Store
|
||||
*.pem
|
||||
|
||||
# debug
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# local env files
|
||||
.env*.local
|
||||
|
||||
# vercel
|
||||
.vercel
|
||||
|
||||
# typescript
|
||||
*.tsbuildinfo
|
||||
next-env.d.ts
|
||||
|
||||
.idea
|
||||
|
||||
# Sentry Config File
|
||||
.env.sentry-build-plugin
|
12
apps/frontend/.prettierrc.json
Normal file
@ -0,0 +1,12 @@
|
||||
{
|
||||
"semi": true,
|
||||
"tabWidth": 2,
|
||||
"useTabs": false,
|
||||
"singleQuote": false,
|
||||
"trailingComma": "es5",
|
||||
"printWidth": 120,
|
||||
"bracketSpacing": true,
|
||||
"arrowParens": "avoid",
|
||||
"jsxSingleQuote": false,
|
||||
"jsxBracketSameLine": false
|
||||
}
|
20
apps/frontend/Dockerfile
Normal file
@ -0,0 +1,20 @@
|
||||
FROM fascinated/docker-images:nodejs_20_with_pnpm
|
||||
|
||||
WORKDIR /app
|
||||
COPY . .
|
||||
|
||||
RUN pnpm install
|
||||
|
||||
ENV NEXT_TELEMETRY_DISABLED 1
|
||||
|
||||
RUN pnpm i -g turbo@^2
|
||||
RUN turbo prune frontend --docker
|
||||
RUN turbo run build
|
||||
|
||||
# Add the commit hash
|
||||
ARG GIT_REV
|
||||
ENV GIT_REV=${GIT_REV}
|
||||
|
||||
EXPOSE 3000
|
||||
|
||||
CMD node apps/frontend/server.js
|
65
apps/frontend/Dockerfile - Copy
Normal file
@ -0,0 +1,65 @@
|
||||
FROM fascinated/docker-images:nodejs_20_with_pnpm AS base
|
||||
|
||||
FROM base AS builder
|
||||
RUN apk update
|
||||
RUN apk add --no-cache libc6-compat
|
||||
# Set working directory
|
||||
WORKDIR /app
|
||||
|
||||
RUN pnpm i -g turbo@^2
|
||||
COPY . .
|
||||
|
||||
# Generate a partial monorepo with a pruned lockfile for a target workspace.
|
||||
# Assuming "frontend" is the name entered in the project's package.json: { name: "frontend" }
|
||||
RUN turbo prune frontend --docker
|
||||
|
||||
# Add lockfile and package.json's of isolated subworkspace
|
||||
FROM base AS installer
|
||||
WORKDIR /app
|
||||
|
||||
# Add the commit hash
|
||||
ARG GIT_REV
|
||||
ENV GIT_REV=${GIT_REV}
|
||||
|
||||
# Add the sentry auth token
|
||||
ARG SENTRY_AUTH_TOKEN
|
||||
ENV SENTRY_AUTH_TOKEN=${SENTRY_AUTH_TOKEN}
|
||||
|
||||
ENV NODE_ENV=production
|
||||
ENV NEXT_TELEMETRY_DISABLED=1
|
||||
|
||||
RUN pnpm i -g turbo@^2
|
||||
|
||||
# First install the dependencies (as they change less often)
|
||||
COPY --from=builder /app/out/json/ .
|
||||
RUN pnpm install
|
||||
|
||||
# Build the project
|
||||
COPY --from=builder /app/out/full/ .
|
||||
|
||||
RUN ls -la
|
||||
|
||||
RUN pnpm turbo run build --filter=frontend...
|
||||
|
||||
FROM base AS runner
|
||||
WORKDIR /app
|
||||
|
||||
ENV NODE_ENV=production
|
||||
ENV NEXT_TELEMETRY_DISABLED=1
|
||||
|
||||
# Add the commit hash
|
||||
ARG GIT_REV
|
||||
ENV GIT_REV=${GIT_REV}
|
||||
|
||||
# Don't run production as root
|
||||
RUN addgroup --system --gid 1001 nodejs
|
||||
RUN adduser --system --uid 1001 nextjs
|
||||
USER nextjs
|
||||
|
||||
# Automatically leverage output traces to reduce image size
|
||||
# https://nextjs.org/docs/advanced-features/output-file-tracing
|
||||
COPY --from=installer --chown=nextjs:nodejs /app/apps/frontend/.next/standalone ./
|
||||
COPY --from=installer --chown=nextjs:nodejs /app/apps/frontend/.next/static ./apps/frontend/.next/static
|
||||
COPY --from=installer --chown=nextjs:nodejs /app/apps/frontend/public ./apps/frontend/public
|
||||
|
||||
CMD node apps/frontend/server.js
|
20
apps/frontend/components.json
Normal file
@ -0,0 +1,20 @@
|
||||
{
|
||||
"$schema": "https://ui.shadcn.com/schema.json",
|
||||
"style": "new-york",
|
||||
"rsc": true,
|
||||
"tsx": true,
|
||||
"tailwind": {
|
||||
"config": "tailwind.config.ts",
|
||||
"css": "src/app/globals.css",
|
||||
"baseColor": "stone",
|
||||
"cssVariables": true,
|
||||
"prefix": ""
|
||||
},
|
||||
"aliases": {
|
||||
"components": "@/app/components",
|
||||
"utils": "@/app/common/utils",
|
||||
"ui": "@/app/components/ui",
|
||||
"lib": "@/app/common",
|
||||
"hooks": "@/app/hooks"
|
||||
}
|
||||
}
|
3
apps/frontend/config.ts
Normal file
@ -0,0 +1,3 @@
|
||||
export const config = {
|
||||
siteUrl: process.env.NEXT_PUBLIC_SITE_URL || "https://ssr.fascinated.cc",
|
||||
};
|
55
apps/frontend/next.config.mjs
Normal file
@ -0,0 +1,55 @@
|
||||
import { format } from "@formkit/tempo";
|
||||
|
||||
/** @type {import('next').NextConfig} */
|
||||
const nextConfig = {
|
||||
experimental: {
|
||||
webpackMemoryOptimizations: true,
|
||||
},
|
||||
images: {
|
||||
remotePatterns: [
|
||||
{
|
||||
protocol: "https",
|
||||
hostname: "cdn.scoresaber.com",
|
||||
port: "",
|
||||
pathname: "/**",
|
||||
},
|
||||
],
|
||||
},
|
||||
env: {
|
||||
NEXT_PUBLIC_BUILD_ID: process.env.GIT_REV || "bob",
|
||||
NEXT_PUBLIC_BUILD_TIME: new Date().toLocaleDateString("en-US", {
|
||||
year: "numeric",
|
||||
month: "long",
|
||||
day: "numeric",
|
||||
hour: "numeric",
|
||||
minute: "numeric",
|
||||
timeZoneName: "short",
|
||||
}),
|
||||
NEXT_PUBLIC_BUILD_TIME_SHORT: format(new Date(), {
|
||||
date: "short",
|
||||
time: "short",
|
||||
}),
|
||||
},
|
||||
};
|
||||
|
||||
export default nextConfig;
|
||||
|
||||
// export default withSentryConfig(nextConfig, {
|
||||
// org: "scoresaber-reloaded",
|
||||
// project: "frontend",
|
||||
// sentryUrl: "https://glitchtip.fascinated.cc/",
|
||||
// silent: !process.env.CI,
|
||||
// reactComponentAnnotation: {
|
||||
// enabled: true,
|
||||
// },
|
||||
// tunnelRoute: "/monitoring",
|
||||
// hideSourceMaps: true,
|
||||
// disableLogger: true,
|
||||
// sourcemaps: {
|
||||
// disable: true,
|
||||
// },
|
||||
// release: {
|
||||
// create: false,
|
||||
// finalize: false,
|
||||
// },
|
||||
// });
|
64
apps/frontend/package.json
Normal file
@ -0,0 +1,64 @@
|
||||
{
|
||||
"name": "frontend",
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "next dev",
|
||||
"build": "next build",
|
||||
"start": "next start",
|
||||
"lint": "next lint"
|
||||
},
|
||||
"dependencies": {
|
||||
"@formkit/tempo": "^0.1.2",
|
||||
"@heroicons/react": "^2.1.5",
|
||||
"@hookform/resolvers": "^3.9.0",
|
||||
"@radix-ui/react-avatar": "^1.1.0",
|
||||
"@radix-ui/react-icons": "^1.3.0",
|
||||
"@radix-ui/react-label": "^2.1.0",
|
||||
"@radix-ui/react-scroll-area": "^1.1.0",
|
||||
"@radix-ui/react-slot": "^1.1.0",
|
||||
"@radix-ui/react-toast": "^1.2.1",
|
||||
"@radix-ui/react-tooltip": "^1.1.2",
|
||||
"@sentry/nextjs": "8",
|
||||
"@tanstack/react-query": "^5.55.4",
|
||||
"@trigger.dev/nextjs": "^3.0.8",
|
||||
"@trigger.dev/react": "^3.0.8",
|
||||
"@trigger.dev/sdk": "^3.0.8",
|
||||
"@uidotdev/usehooks": "^2.4.1",
|
||||
"chart.js": "^4.4.4",
|
||||
"class-variance-authority": "^0.7.0",
|
||||
"clsx": "^2.1.1",
|
||||
"comlink": "^4.4.1",
|
||||
"dexie": "^4.0.8",
|
||||
"dexie-react-hooks": "^1.1.7",
|
||||
"framer-motion": "^11.5.4",
|
||||
"js-cookie": "^3.0.5",
|
||||
"ky": "^1.7.2",
|
||||
"lucide-react": "^0.446.0",
|
||||
"mongoose": "^8.7.0",
|
||||
"next": "15.0.0-rc.0",
|
||||
"next-build-id": "^3.0.0",
|
||||
"next-themes": "^0.3.0",
|
||||
"react": "19.0.0-rc-3edc000d-20240926",
|
||||
"react-chartjs-2": "^5.2.0",
|
||||
"react-dom": "19.0.0-rc-3edc000d-20240926",
|
||||
"react-hook-form": "^7.53.0",
|
||||
"tailwind-merge": "^2.5.2",
|
||||
"tailwindcss-animate": "^1.0.7",
|
||||
"zod": "^3.23.8"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/js-cookie": "^3.0.6",
|
||||
"@types/node": "^20",
|
||||
"@types/react": "^18",
|
||||
"@types/react-dom": "^18",
|
||||
"eslint": "^8",
|
||||
"eslint-config-next": "14.2.13",
|
||||
"postcss": "^8",
|
||||
"tailwindcss": "^3.4.1",
|
||||
"typescript": "^5"
|
||||
},
|
||||
"trigger.dev": {
|
||||
"endpointId": "scoresaber-reloaded-KB0Z"
|
||||
}
|
||||
}
|
7567
apps/frontend/pnpm-lock.yaml
generated
Normal file
8
apps/frontend/postcss.config.mjs
Normal file
@ -0,0 +1,8 @@
|
||||
/** @type {import('postcss-load-config').Config} */
|
||||
const config = {
|
||||
plugins: {
|
||||
tailwindcss: {},
|
||||
},
|
||||
};
|
||||
|
||||
export default config;
|
BIN
apps/frontend/public/assets/background.jpg
Normal file
After Width: | Height: | Size: 1.4 MiB |
BIN
apps/frontend/public/assets/flags/ad.png
Normal file
After Width: | Height: | Size: 841 B |
BIN
apps/frontend/public/assets/flags/ae.png
Normal file
After Width: | Height: | Size: 132 B |
BIN
apps/frontend/public/assets/flags/af.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
apps/frontend/public/assets/flags/ag.png
Normal file
After Width: | Height: | Size: 766 B |
BIN
apps/frontend/public/assets/flags/ai.png
Normal file
After Width: | Height: | Size: 659 B |
BIN
apps/frontend/public/assets/flags/al.png
Normal file
After Width: | Height: | Size: 604 B |
BIN
apps/frontend/public/assets/flags/am.png
Normal file
After Width: | Height: | Size: 121 B |
BIN
apps/frontend/public/assets/flags/ao.png
Normal file
After Width: | Height: | Size: 522 B |
BIN
apps/frontend/public/assets/flags/aq.png
Normal file
After Width: | Height: | Size: 445 B |
BIN
apps/frontend/public/assets/flags/ar.png
Normal file
After Width: | Height: | Size: 320 B |
BIN
apps/frontend/public/assets/flags/as.png
Normal file
After Width: | Height: | Size: 909 B |
BIN
apps/frontend/public/assets/flags/at.png
Normal file
After Width: | Height: | Size: 109 B |
BIN
apps/frontend/public/assets/flags/au.png
Normal file
After Width: | Height: | Size: 554 B |
BIN
apps/frontend/public/assets/flags/aw.png
Normal file
After Width: | Height: | Size: 311 B |
BIN
apps/frontend/public/assets/flags/ax.png
Normal file
After Width: | Height: | Size: 179 B |
BIN
apps/frontend/public/assets/flags/az.png
Normal file
After Width: | Height: | Size: 214 B |
BIN
apps/frontend/public/assets/flags/ba.png
Normal file
After Width: | Height: | Size: 339 B |
BIN
apps/frontend/public/assets/flags/bb.png
Normal file
After Width: | Height: | Size: 324 B |
BIN
apps/frontend/public/assets/flags/bd.png
Normal file
After Width: | Height: | Size: 282 B |
BIN
apps/frontend/public/assets/flags/be.png
Normal file
After Width: | Height: | Size: 127 B |
BIN
apps/frontend/public/assets/flags/bf.png
Normal file
After Width: | Height: | Size: 254 B |
BIN
apps/frontend/public/assets/flags/bg.png
Normal file
After Width: | Height: | Size: 105 B |
BIN
apps/frontend/public/assets/flags/bh.png
Normal file
After Width: | Height: | Size: 326 B |
BIN
apps/frontend/public/assets/flags/bi.png
Normal file
After Width: | Height: | Size: 651 B |
BIN
apps/frontend/public/assets/flags/bj.png
Normal file
After Width: | Height: | Size: 127 B |
BIN
apps/frontend/public/assets/flags/bl.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
apps/frontend/public/assets/flags/bm.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
apps/frontend/public/assets/flags/bn.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
apps/frontend/public/assets/flags/bo.png
Normal file
After Width: | Height: | Size: 132 B |
BIN
apps/frontend/public/assets/flags/bq.png
Normal file
After Width: | Height: | Size: 810 B |
BIN
apps/frontend/public/assets/flags/br.png
Normal file
After Width: | Height: | Size: 792 B |
BIN
apps/frontend/public/assets/flags/bs.png
Normal file
After Width: | Height: | Size: 287 B |
BIN
apps/frontend/public/assets/flags/bt.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
apps/frontend/public/assets/flags/bv.png
Normal file
After Width: | Height: | Size: 206 B |
BIN
apps/frontend/public/assets/flags/bw.png
Normal file
After Width: | Height: | Size: 139 B |
BIN
apps/frontend/public/assets/flags/by.png
Normal file
After Width: | Height: | Size: 377 B |
BIN
apps/frontend/public/assets/flags/bz.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
apps/frontend/public/assets/flags/ca.png
Normal file
After Width: | Height: | Size: 359 B |
BIN
apps/frontend/public/assets/flags/cc.png
Normal file
After Width: | Height: | Size: 561 B |
BIN
apps/frontend/public/assets/flags/cd.png
Normal file
After Width: | Height: | Size: 523 B |
BIN
apps/frontend/public/assets/flags/cf.png
Normal file
After Width: | Height: | Size: 286 B |
BIN
apps/frontend/public/assets/flags/cg.png
Normal file
After Width: | Height: | Size: 344 B |
BIN
apps/frontend/public/assets/flags/ch.png
Normal file
After Width: | Height: | Size: 135 B |
BIN
apps/frontend/public/assets/flags/ci.png
Normal file
After Width: | Height: | Size: 123 B |
BIN
apps/frontend/public/assets/flags/ck.png
Normal file
After Width: | Height: | Size: 717 B |
BIN
apps/frontend/public/assets/flags/cl.png
Normal file
After Width: | Height: | Size: 263 B |
BIN
apps/frontend/public/assets/flags/cm.png
Normal file
After Width: | Height: | Size: 215 B |
BIN
apps/frontend/public/assets/flags/cn.png
Normal file
After Width: | Height: | Size: 286 B |
BIN
apps/frontend/public/assets/flags/co.png
Normal file
After Width: | Height: | Size: 135 B |
BIN
apps/frontend/public/assets/flags/cr.png
Normal file
After Width: | Height: | Size: 419 B |
BIN
apps/frontend/public/assets/flags/cu.png
Normal file
After Width: | Height: | Size: 362 B |
BIN
apps/frontend/public/assets/flags/cv.png
Normal file
After Width: | Height: | Size: 444 B |
BIN
apps/frontend/public/assets/flags/cw.png
Normal file
After Width: | Height: | Size: 260 B |
BIN
apps/frontend/public/assets/flags/cx.png
Normal file
After Width: | Height: | Size: 641 B |
BIN
apps/frontend/public/assets/flags/cy.png
Normal file
After Width: | Height: | Size: 486 B |
BIN
apps/frontend/public/assets/flags/cz.png
Normal file
After Width: | Height: | Size: 361 B |
BIN
apps/frontend/public/assets/flags/de.png
Normal file
After Width: | Height: | Size: 105 B |
BIN
apps/frontend/public/assets/flags/dj.png
Normal file
After Width: | Height: | Size: 530 B |
BIN
apps/frontend/public/assets/flags/dk.png
Normal file
After Width: | Height: | Size: 163 B |
BIN
apps/frontend/public/assets/flags/dm.png
Normal file
After Width: | Height: | Size: 501 B |
BIN
apps/frontend/public/assets/flags/do.png
Normal file
After Width: | Height: | Size: 459 B |
BIN
apps/frontend/public/assets/flags/dz.png
Normal file
After Width: | Height: | Size: 368 B |
BIN
apps/frontend/public/assets/flags/ec.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
apps/frontend/public/assets/flags/ee.png
Normal file
After Width: | Height: | Size: 106 B |
BIN
apps/frontend/public/assets/flags/eg.png
Normal file
After Width: | Height: | Size: 323 B |
BIN
apps/frontend/public/assets/flags/eh.png
Normal file
After Width: | Height: | Size: 358 B |
BIN
apps/frontend/public/assets/flags/er.png
Normal file
After Width: | Height: | Size: 533 B |
BIN
apps/frontend/public/assets/flags/es.png
Normal file
After Width: | Height: | Size: 828 B |
BIN
apps/frontend/public/assets/flags/et.png
Normal file
After Width: | Height: | Size: 559 B |
BIN
apps/frontend/public/assets/flags/fi.png
Normal file
After Width: | Height: | Size: 160 B |
BIN
apps/frontend/public/assets/flags/fj.png
Normal file
After Width: | Height: | Size: 991 B |
BIN
apps/frontend/public/assets/flags/fk.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
apps/frontend/public/assets/flags/fm.png
Normal file
After Width: | Height: | Size: 259 B |
BIN
apps/frontend/public/assets/flags/fo.png
Normal file
After Width: | Height: | Size: 192 B |
BIN
apps/frontend/public/assets/flags/fr.png
Normal file
After Width: | Height: | Size: 123 B |
BIN
apps/frontend/public/assets/flags/ga.png
Normal file
After Width: | Height: | Size: 106 B |
BIN
apps/frontend/public/assets/flags/gb-eng.png
Normal file
After Width: | Height: | Size: 134 B |
BIN
apps/frontend/public/assets/flags/gb-nir.png
Normal file
After Width: | Height: | Size: 566 B |
BIN
apps/frontend/public/assets/flags/gb-sct.png
Normal file
After Width: | Height: | Size: 428 B |
BIN
apps/frontend/public/assets/flags/gb-wls.png
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
apps/frontend/public/assets/flags/gb.png
Normal file
After Width: | Height: | Size: 384 B |
BIN
apps/frontend/public/assets/flags/gd.png
Normal file
After Width: | Height: | Size: 615 B |
BIN
apps/frontend/public/assets/flags/ge.png
Normal file
After Width: | Height: | Size: 307 B |
BIN
apps/frontend/public/assets/flags/gf.png
Normal file
After Width: | Height: | Size: 533 B |
BIN
apps/frontend/public/assets/flags/gg.png
Normal file
After Width: | Height: | Size: 222 B |
BIN
apps/frontend/public/assets/flags/gh.png
Normal file
After Width: | Height: | Size: 294 B |