6 Commits
0.2.0 ... 0.2.2

11 changed files with 43 additions and 9 deletions

1
.gitignore vendored
View File

@ -2,6 +2,7 @@
.terraform
node_modules
/web/dist
/dist
# local env files
.env.local

View File

@ -1,6 +1,6 @@
# Package
version = "0.2.0"
version = "0.2.2"
author = "Jonathan Bernard"
description = "Hope Family Fellowship entry forms."
license = "GPL-3.0-or-later"

View File

@ -7,6 +7,7 @@ type
purpose*: string
department*: string
owner*: string
location*: string
date*: DateTime
budgetInDollars*: int
@ -41,6 +42,7 @@ proc parseEventProposal*(n: JsonNode): EventProposal {.raises: [JsonParsingError
description: n.getOrFail("description").getStr,
purpose: n.getOrFail("purpose").getStr,
department: n.getOrFail("department").getStr,
location: n.getOrFail("location").getStr,
owner: n.getOrFail("owner").getStr,
date: n.parseIso8601("date"),
budgetInDollars: n.getOrFail("budgetInDollars").getInt)
@ -53,7 +55,7 @@ proc asNotionPage*(ep: EventProposal): JsonNode =
"Event": { "title": textProp(ep.name) },
"Date": { "date": { "start": formatIso8601(ep.date) } },
"Department": { "multi_select": [ { "name": ep.department } ] },
"Location": { "rich_text": textProp("") },
"Location": { "rich_text": textProp(ep.location) },
"Owner": { "rich_text": textProp(ep.owner) },
"State": { "select": { "name": "Proposed" } }
},

View File

@ -1 +1 @@
const HFF_ENTRY_FORMS_API_VERSION* = "0.2.0"
const HFF_ENTRY_FORMS_API_VERSION* = "0.2.2"

View File

@ -0,0 +1,28 @@
#!/bin/bash
echo "Looking up CloudFront distribution ID for HFF Entry Forms ${TARGET_ENV} environment."
cloudfront_distribution_id=$(\
aws cloudfront list-distributions \
--query "DistributionList.Items[?starts_with(Comment, 'HFF Entry Forms ${TARGET_ENV}')].Id | [0]" \
| sed -e 's/^"//' -e 's/"$//'
)
if [[ -z "${cloudfront_distribution_id}" ]]; then
>&2 echo "Unable to find CloudFront distribution for domain ${TARGET_ENV}."
exit 3
fi
echo "Found distribution ID ${cloudfront_distribution_id}."
echo "Invalidating the CloudFront cache for ${TARGET_ENV}."
invalidation_id=$(aws cloudfront create-invalidation \
--query 'Invalidation.Id' \
--distribution-id "${cloudfront_distribution_id}" \
--paths '/index.html')
if [[ $? -ne 0 || -z "${invalidation_id}" ]]; then
>&2 echo "Unable to create the CloudFront invalidation."
else
echo "Successfully created invalidation ${invalidation_id}."
fi
echo "Done."

View File

@ -53,7 +53,7 @@ sed -i "s/${lastVersion}/${newVersion}/" api/hff_entry_forms_api.nimble
printf ">> Committing new version.\n"
printf "git add web/package.json web/package-lock.json api/src/hff_entry_forms_apipkg/version.nim"
git add web/package.json web/package-lock.json api/src/hff_entry_forms_apipkg/version.nimnim api/hff_entry_forms_api.nimble
git add web/package.json web/package-lock.json api/src/hff_entry_forms_apipkg/version.nim api/hff_entry_forms_api.nimble
printf "git commit -m \"Update package version to %s\"\n" "$newVersion"
git commit -m "Update package version to ${newVersion}"

2
web/.env.development Normal file
View File

@ -0,0 +1,2 @@
NODE_ENV=production
VUE_APP_API_BASE_URL=https://forms-api-dev.hopefamilyfellowship.com/v1/

2
web/package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "hff-entry-form-web",
"version": "0.2.0",
"version": "0.2.2",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,11 +1,12 @@
{
"name": "hff-entry-form-web",
"version": "0.2.0",
"version": "0.2.2",
"private": true,
"scripts": {
"serve": "npx servor dist",
"build": "vue-cli-service build",
"build-local": "vue-cli-service build --mode development",
"build-dev": "vue-cli-service build --mode development",
"build-prod": "vue-cli-service build --mode production",
"lint": "vue-cli-service lint",
"vue-serve": "vue-cli-service serve"
},

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -21,9 +21,9 @@
<input type="date" name="date" v-model="formVal.event.date" />
</label>
<label>
<span>Department</span>
<span>Department / Event Type</span>
<select name="department" v-model="formVal.event.department">
<option value="">--- select a department ---</option>
<option value="">--- select a department or type ---</option>
<option
v-for="opt in departments"
:key="opt.value"