diff --git a/.github/workflows/pregenPreview.yaml b/.github/workflows/pregenPreview.yaml new file mode 100644 index 0000000..8060b11 --- /dev/null +++ b/.github/workflows/pregenPreview.yaml @@ -0,0 +1,59 @@ +name: Deploy to Pages + +on: + push: + branches: + - stickerpacks + +permissions: + contents: read + pages: write + id-token: write + +# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. +# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. +concurrency: + group: "pages" + cancel-in-progress: false + +defaults: + run: + shell: bash + +jobs: + # Build job + build: + runs-on: ubuntu-latest + steps: + - name: Install nodejs + uses: actions/setup-node@v3 + with: + node-version: 20 + - name: Checkout + uses: actions/checkout@v4 + with: + submodules: recursive + fetch-depth: 0 + - name: Setup Pages + id: pages + uses: actions/configure-pages@v4 + - name: Install Node.js dependencies + run: "[[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true" + - name: Build website + run: npm run build + - name: Upload artifact + uses: actions/upload-pages-artifact@v2 + with: + path: ./ + + # Deployment job + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + needs: build + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v3 \ No newline at end of file diff --git a/.gitignore b/.gitignore index efab496..c68fb4b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ node_modules -*.json \ No newline at end of file +stickerpacks/**/*.json +ignore/ \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..d1fb129 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,12 @@ +{ + "fiveServer.ignore": [ + "**/node_modules/**", + ".vscode/**", + ".git/**", + "**/*.scss", + "**/*.sass", + "**/*.css", + "**/*.ts", + "**/*.js", + ] +} \ No newline at end of file diff --git a/index.html b/index.html deleted file mode 100644 index f7a6ec2..0000000 --- a/index.html +++ /dev/null @@ -1,109 +0,0 @@ - - - -
- - -${pack.title}
`; + + if (pack.hasOwnProperty("author") && pack.author) { + let author_string = `by: ${pack.author.name}
`; + if (pack.author.url) { + author_string = ``; + } + string += author_string; + } + + if (pack.hasOwnProperty("rating") && pack.rating) { + switch (pack.rating.toLowerCase()) { + case "safe": + string += `safe
`; + break; + case "questionable": + string += `questionable
`; + break; + case "explicit": + string += `explicit
`; + break; + default: + break; + } + } + + return string; +} + +function _packCard(index, pack) { + return ` +Telegram
+ + + ${(pack.hasOwnProperty("room_id") && pack.room_id) ? ( + ` + +FluffyChat
+ + +Cinny
+ + ` + ) + : ""} +`} + +module.exports = PackLinks \ No newline at end of file diff --git a/src/templates/components/packPreview.js b/src/templates/components/packPreview.js new file mode 100644 index 0000000..14072d3 --- /dev/null +++ b/src/templates/components/packPreview.js @@ -0,0 +1,48 @@ +const { CreateImageURL } = require("../../utils"); + +function _addSticker(index, sticker) { + return ` +Pack Preview (${pack.stickers.length} stickers)
+${pack.name}
+ ${pack.author ? `${pack.author}
` : ""} +${pack.stickers} stickers ${pack.rating ? "| " + packRating : ""}
+${data.title}
- ${ - data.hasOwnProperty("author") && data.author.name - ? `${data.author.name}
` - : "" - } -