-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
33 changed files
with
621 additions
and
8,120 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
node_modules | ||
build | ||
./apps/web/.env | ||
./packages/db/.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: Continuous Deployment | ||
on: | ||
push: | ||
branches: [ main ] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Docker login | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Build and push | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: . | ||
file: ./Dockerfile.prod | ||
push: true | ||
tags: 100xdevs/dailycode-staging:${{ github.sha }} | ||
build-args: | | ||
DATABASE_URL=${{ secrets.STAGING_DATABASE }} | ||
- name: Clone staging-ops repo, update, and push | ||
env: | ||
PAT: ${{ secrets.PAT }} | ||
run: | | ||
git clone https://github.com/code100x/staging-ops.git | ||
cd staging-ops | ||
sed -i 's|image: 100xdevs/dailycode-staging:.*|image: 100xdevs/dailycode-staging:${{ github.sha }}|' staging/dailycode/deployment.yml | ||
git config user.name "GitHub Actions Bot" | ||
git config user.email "[email protected]" | ||
git add staging/dailycode/deployment.yml | ||
git commit -m "Update dailycode image to ${{ github.sha }}" | ||
git push https://${PAT}@github.com/code100x/staging-ops.git main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: Continuous Deployment (Prod) | ||
on: | ||
push: | ||
branches: [ production ] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Docker login | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Build and push | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: . | ||
file: ./Dockerfile.prod | ||
push: true | ||
tags: 100xdevs/dailycode:${{ github.sha }} | ||
build-args: | | ||
DATABASE_URL=${{ secrets.PROD_DATABASE }} | ||
- name: Clone staging-ops repo, update, and push | ||
env: | ||
PAT: ${{ secrets.PAT }} | ||
run: | | ||
git clone https://github.com/code100x/staging-ops.git | ||
cd staging-ops | ||
sed -i 's|image: 100xdevs/dailycode:.*|image: 100xdevs/dailycode:${{ github.sha }}|' prod/dailycode/deployment.yml | ||
git config user.name "GitHub Actions Bot" | ||
git config user.email "[email protected]" | ||
git add prod/dailycode/deployment.yml | ||
git commit -m "Update dailycode image to ${{ github.sha }}" | ||
git push https://${PAT}@github.com/code100x/staging-ops.git main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
{ | ||
"singleQuote": false, | ||
"printWidth":120, | ||
"printWidth": 120, | ||
"bracketSpacing": true, | ||
"tabWidth": 2, | ||
"trailingComma": "es5", | ||
"semi": true | ||
} | ||
"semi": true, | ||
"plugins": ["prettier-plugin-tailwindcss"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,61 @@ | ||
"use client"; | ||
import { useRecoilValue } from "recoil"; | ||
|
||
import { Problem, Track } from "@prisma/client"; | ||
import { isLegacyViewMode } from "@repo/store"; | ||
|
||
import { BlogAppbar } from "./BlogAppbar"; | ||
import { NotionRenderer } from "./NotionRenderer"; | ||
import useMountStatus from "../hooks/useMountStatus"; | ||
import TrackTools from "./TrackTools"; | ||
import CustomPagination from "./CustomPagination"; | ||
|
||
export const Blog = ({ | ||
problem, | ||
track, | ||
showAppBar, | ||
showPagination, | ||
isPdfRequested, | ||
problemIndex, | ||
}: { | ||
problem: Problem & { notionRecordMap: any }; | ||
track: Track & { problems: Problem[] }; | ||
showAppBar: Boolean; | ||
isPdfRequested?: Boolean; | ||
showAppBar?: boolean; | ||
showPagination?: boolean; | ||
isPdfRequested?: boolean; | ||
problemIndex: number; | ||
}) => { | ||
const mounted = useMountStatus(); | ||
const isLegacyMode = useRecoilValue(isLegacyViewMode); | ||
|
||
if (isPdfRequested == undefined || !isPdfRequested) { | ||
if (!mounted) { | ||
return null; | ||
} | ||
} | ||
|
||
return ( | ||
<div> | ||
<NotionRenderer recordMap={problem.notionRecordMap} /> | ||
<div className="fixed top-0 w-full"> | ||
<BlogAppbar problem={problem} track={track} problemIndex={problemIndex} /> | ||
const renderBlog = () => | ||
isLegacyMode ? ( | ||
<div className="break-after-page"> | ||
{showAppBar && <BlogAppbar problem={problem} track={track} problemIndex={problemIndex} />} | ||
<NotionRenderer recordMap={problem.notionRecordMap} /> | ||
{showPagination && ( | ||
<div className="justify-center pt-2"> | ||
<CustomPagination allProblems={track.problems} track={track} problemIndex={problemIndex} /> | ||
</div> | ||
)} | ||
</div> | ||
<div className="fixed bottom-0 itemsc-center justify-center mx-auto w-full"> | ||
<TrackTools allProblems={track.problems} track={track} problemIndex={problemIndex} /> | ||
) : ( | ||
<div> | ||
<NotionRenderer recordMap={problem.notionRecordMap} /> | ||
<div className="fixed top-0 w-full"> | ||
<BlogAppbar problem={problem} track={track} problemIndex={problemIndex} /> | ||
</div> | ||
<div className="itemsc-center fixed bottom-0 mx-auto w-full justify-center"> | ||
<TrackTools allProblems={track.problems} track={track} problemIndex={problemIndex} /> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
); | ||
|
||
return renderBlog(); | ||
}; | ||
|
Oops, something went wrong.