-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix frontend to new routes, add random code to email, add digidecs up…
…loaded page
- Loading branch information
1 parent
06281ec
commit 161af74
Showing
26 changed files
with
697 additions
and
219 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 |
---|---|---|
@@ -0,0 +1,83 @@ | ||
name: release | ||
on: | ||
push: | ||
tags: | ||
- '**' | ||
|
||
jobs: | ||
build-server-musl: | ||
name: build-server-musl | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- run: rustup toolchain install stable --profile minimal | ||
- run: rustup target add x86_64-unknown-linux-musl --toolchain stable | ||
- run: sudo apt install gcc musl-tools cmake clang | ||
- uses: Swatinem/[email protected] | ||
with: | ||
workspaces: "server" | ||
save-if: ${{ github.ref == 'refs/heads/master' }} | ||
- run: cargo build --release --target x86_64-unknown-linux-musl | ||
working-directory: server | ||
- name: Upload artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: server-x86_64-unknown-linux-musl | ||
path: ./server/target/x86_64-unknown-linux-musl/release/digidecs | ||
|
||
build-frontend: | ||
name: build-frontend | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set Node.js 21 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 21.x | ||
- name: Run install | ||
uses: borales/actions-yarn@v4 | ||
with: | ||
dir: frontend | ||
cmd: install | ||
- name: Build | ||
uses: borales/actions-yarn@v4 | ||
with: | ||
dir: frontend | ||
cmd: build | ||
- run: tar -czf frontend.tar.gz dist/* | ||
working-directory: frontend | ||
- name: Upload artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: frontend.tar.gz | ||
path: ./frontend/frontend.tar.gz | ||
|
||
|
||
create-release: | ||
name: create-release | ||
needs: | ||
- build-server-musl | ||
- build-frontend | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Download all workflow run artifacts | ||
uses: actions/download-artifact@v3 | ||
|
||
- name: Create Release | ||
id: create_release | ||
uses: actions/create-release@latest | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ github.ref }} | ||
release_name: Release ${{ github.ref }} | ||
draft: false | ||
|
||
- run: mv server-x86_64-unknown-linux-musl/digidecs server-x86_64-unknown-linux-musl/server-x86_64-unknown-linux-musl | ||
|
||
- name: Release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
files: | | ||
server-x86_64-unknown-linux-musl/server-x86_64-unknown-linux-musl | ||
frontend.tar.gz/frontend.tar.gz |
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,53 @@ | ||
name: test | ||
on: | ||
push: {} | ||
|
||
jobs: | ||
server-fmt: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- run: rustup toolchain install stable --profile minimal | ||
- run: rustup component add rustfmt | ||
- uses: Swatinem/[email protected] | ||
with: | ||
workspaces: "server" | ||
save-if: ${{ github.ref == 'refs/heads/master' }} | ||
- run: cargo fmt --all --check | ||
working-directory: server | ||
|
||
server-test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- run: rustup toolchain install stable --profile minimal | ||
- uses: Swatinem/[email protected] | ||
with: | ||
workspaces: "server" | ||
save-if: ${{ github.ref == 'refs/heads/master' }} | ||
- run: cargo test | ||
working-directory: server | ||
|
||
server-clippy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- run: rustup toolchain install stable --profile minimal | ||
- run: rustup component add clippy | ||
- uses: Swatinem/[email protected] | ||
with: | ||
workspaces: "server" | ||
save-if: ${{ github.ref == 'refs/heads/master' }} | ||
- run: cargo clippy | ||
working-directory: server | ||
|
||
frontend-eslint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Install modules | ||
working-directory: frontend | ||
run: yarn | ||
- name: Run eslint | ||
working-directory: frontend | ||
run: yarn eslint |
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,7 +1,45 @@ | ||
import {Locale} from "@/plugins/locales/locale"; | ||
|
||
const EN: Locale = { | ||
|
||
site_title: "DigiDecs", | ||
error: "Something went wrong, please try again later", | ||
home: { | ||
title: "DigiDecs", | ||
subtitle: "Declare digitally at Sticky", | ||
invalidFieldsError: "One or multiple fields are incorreect", | ||
form: { | ||
name: "Naam", | ||
iban: "IBAN", | ||
email: "Email", | ||
value: "Amount", | ||
what: "What", | ||
commission: "For what / which commission", | ||
notes: "Notes", | ||
files: "Receipts / Invoices", | ||
filesExplanation: "Only .pdf, .jpg or .png files. You can submit multiple documents. Ensure the date, the (VAT) amount and the different products or services are clearly readable.", | ||
checked: "I have checked everything and filled this form thruthfully", | ||
rules: { | ||
required: "Required", | ||
ibanInvalid: "Invalid IBAN", | ||
emailInvalid: "Invalid email address", | ||
valueInvalid: "Invalid amount", | ||
filesTooLarge: "The maximum file size is 15MB" | ||
}, | ||
hints: { | ||
name: "Treasurer", | ||
email: "{'[email protected]'}", | ||
iban: "NL13TEST0123456789", | ||
value: "19,19", | ||
what: "Digging Machine", | ||
commission: "The board, obviously!" | ||
} | ||
}, | ||
submit: "Submit" | ||
}, | ||
submitted: { | ||
title: 'Success!', | ||
description: "Your digidecs has been sent! If you haven't received your money back after 7 days, contact the treasurer" | ||
} | ||
} | ||
|
||
export default EN; |
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 |
---|---|---|
|
@@ -7,7 +7,6 @@ const NL: Locale = { | |
title: "DigiDecs", | ||
subtitle: "Digitaal declareren bij Sticky", | ||
invalidFieldsError: "Een of meerdere velden zijn onjuist ingevuld", | ||
success: "Success! Je declaratie is ingestuurd. Mocht je na 5 werkdagen je geldf nog niet hebben ontvangen, neem dan contact op met de Penningmeester: [email protected].", | ||
form: { | ||
name: "Naam", | ||
iban: "IBAN", | ||
|
@@ -16,7 +15,7 @@ const NL: Locale = { | |
what: "Wat", | ||
commission: "Waarvoor / Welke commissie", | ||
notes: "Opmerkingen", | ||
files: "Bonnetjes", | ||
files: "Bonnetjes / Facturen", | ||
filesExplanation: "Alleen .pdf, .jpg, en .png bestanden, je kan meerdere bestanden selecteren. Zorg dat de datum, het (btw) bedrag en de verschillende producten of diensten goed leesbaar zijn.", | ||
checked: "Ik heb alles gecheckt en naar waarheid ingevuld", | ||
rules: { | ||
|
@@ -36,6 +35,10 @@ const NL: Locale = { | |
} | ||
}, | ||
submit: "Verstuur" | ||
}, | ||
submitted: { | ||
title: "Succes!", | ||
description: "Jouw digidecs is verstuurd! Mocht je na 7 dagen je geld nog niet terug hebben gekregen, neem dan contact op met de penningmeester" | ||
} | ||
} | ||
|
||
|
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
Oops, something went wrong.