From f9389f34e8e1c06430ec981b105e61bd3fc29919 Mon Sep 17 00:00:00 2001 From: aim Date: Thu, 30 Jun 2022 09:39:22 +0300 Subject: [PATCH 1/3] renames --- README.md | 6 +++--- public/index.html | 4 ++-- src/App.vue | 2 +- src/components/AssessmentPreview.vue | 4 ++-- src/components/Instructions.vue | 14 +++++++------- src/mixins/download.js | 2 +- src/views/Assessment.vue | 6 +++--- src/views/Conditions.vue | 6 +++--- src/views/Profile.vue | 2 +- vue.config.js | 4 ++-- 10 files changed, 25 insertions(+), 25 deletions(-) diff --git a/README.md b/README.md index f8919e4..c527b39 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ # vca-tool -This is the repo for the vCA tool frontend. +This is the repo for the vPA tool frontend. -The process involves importing a CSV file with all assessments that are saved in the localStorage and reviewed locally by the Veteran Community Advisor. -An external endpoint is connected to the app to have the updated number of reviews carried out by the vCAs and to be able to coordinate the work efficiently. +The process involves importing a CSV file with all assessments that are saved in the localStorage and reviewed locally by the Veteran Proposal Advisor. +An external endpoint is connected to the app to have the updated number of reviews carried out by the vPAs and to be able to coordinate the work efficiently. The development is based on Vue.js diff --git a/public/index.html b/public/index.html index 2517ae2..bbfa9a5 100644 --- a/public/index.html +++ b/public/index.html @@ -5,8 +5,8 @@ - Project Catalyst Veteran Community Advisor Tool - + Project Catalyst Veteran Proposal Advisor Tool + Instructions - + Profile diff --git a/src/components/AssessmentPreview.vue b/src/components/AssessmentPreview.vue index e8d3715..0b36882 100644 --- a/src/components/AssessmentPreview.vue +++ b/src/components/AssessmentPreview.vue @@ -12,7 +12,7 @@
-
Assessor:
+
Advisor:
{{assessment.assessor}}
@@ -31,7 +31,7 @@
-
No. of vCAs reviews:
+
No. of vPAs reviews:
{{ (assessment.reviews) ? assessment.reviews : 0 }}
diff --git a/src/components/Instructions.vue b/src/components/Instructions.vue index 8cc7880..47f39a7 100644 --- a/src/components/Instructions.vue +++ b/src/components/Instructions.vue @@ -2,7 +2,7 @@

How it works

-

The vCA-tool is designed to work in parallel with the standard way (using the Google Sheet) in order to provide a better user experience and to better coordinate the vCA work. It is a community made tool, feedback is welcomed.

+

The vPA-tool is designed to work in parallel with the standard way (using the Google Sheet) in order to provide a better user experience and to better coordinate the vPA work. It is a community made tool, feedback is welcomed.

  1. Click on the "Start Process" button
  2. Enter your Full Name and email address.
  3. @@ -12,12 +12,12 @@ From this page you can show/hide the list and select your chosen filters, by clicking ‘Choose Filters’. You can combine them in any way you like.
  4. Click on the ‘Next’ button to access to the “Review View”
  5. -
  6. Make your review of the CA assessment click ‘next’ to see another assessment. +
  7. Make your review of the PA assessment click ‘next’ to see another assessment.
    1. Read the assessment triplet on “Impact / Alignment”, “Feasibility” and “Clearity/Auditability”.
    2. -
    3. Read the proposal and cross reference the CA assessment with the content of the proposal.
    4. -
    5. Categorize them as either, "Excellent", "Good" or "Filtered Out", according to the CA Guidelines.
    6. -
    7. Provide the CA with any positive or constructive criticism to help them continue to or in the future make better assessments (optional).
    8. +
    9. Read the proposal and cross reference the PA assessment with the content of the proposal.
    10. +
    11. Categorize them as either, "Excellent", "Good" or "Filtered Out", according to the PA Guidelines.
    12. +
    13. Provide the PA with any positive or constructive criticism to help them continue to or in the future make better assessments (optional).
  8. Repeat the process for all Assessments you wish to review
  9. @@ -31,8 +31,8 @@

Useful resources

- Veteran Community Advisor Guide
- Community Advisor Assessment Guide
+ Veteran Proposal Advisor Guide
+ Proposal Advisor Assessment Guide

diff --git a/src/mixins/download.js b/src/mixins/download.js index 0c8316d..eac5649 100644 --- a/src/mixins/download.js +++ b/src/mixins/download.js @@ -27,7 +27,7 @@ const download = { downloadCsv(assessmentsExport, this.profile.info.name) this.$buefy.dialog.alert({ title: 'CSV Downloading...', - message: '
Your CSV is now downloading.
To complete the vCA submission you have to:
  1. Create a new Google Sheet document
  2. Click File -> Import and select the CSV downloaded
  3. Change the share settings to Anyone with the link can view.
    Important! If you don\'t change the share settings, your reviews will not be used
  4. Fill this form with your details and the link to the Google Sheet document.
', + message: '
Your CSV is now downloading.
To complete the vPA submission you have to:
  1. Create a new Google Sheet document
  2. Click File -> Import and select the CSV downloaded
  3. Change the share settings to Anyone with the link can view.
    Important! If you don\'t change the share settings, your reviews will not be used
  4. Fill this form with your details and the link to the Google Sheet document.
', confirmText: 'OK' }) } diff --git a/src/views/Assessment.vue b/src/views/Assessment.vue index 3db1488..aba7d24 100644 --- a/src/views/Assessment.vue +++ b/src/views/Assessment.vue @@ -9,11 +9,11 @@

{{ fullAssessment.challenge }}

- No. of vCAs reviews: + No. of vPAs reviews: {{ (fullAssessment.reviews) ? fullAssessment.reviews : 0 }}

- Assessor: + Advisor: {{ fullAssessment.assessor }}

@@ -92,7 +92,7 @@ + label="Your feedback to PA (not required):">
-

vCA Review Tool

+

vPA Review Tool

Load a file to get started

diff --git a/vue.config.js b/vue.config.js index 5dd84bf..ae08f75 100644 --- a/vue.config.js +++ b/vue.config.js @@ -17,7 +17,7 @@ csvHeaders = JSON.parse(`{ }, "assessor": { "type": "string", - "label": "Assessor" + "label": "Advisor" }, "triplet_id": { "type": "string", @@ -73,7 +73,7 @@ csvHeaders = JSON.parse(`{ }, "vca_feedback": { "type": "string", - "label": "vCA Feedback" + "label": "vPA Feedback" } }`); From ff749b00ee238f159bb852aafde3629687778b0b Mon Sep 17 00:00:00 2001 From: aim Date: Thu, 30 Jun 2022 09:46:01 +0300 Subject: [PATCH 2/3] renames --- public/index.html | 4 ++-- src/components/AssessmentPreview.vue | 2 +- src/components/Instructions.vue | 4 ++-- src/views/Assessment.vue | 2 +- src/views/Conditions.vue | 2 +- vue.config.js | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/public/index.html b/public/index.html index bbfa9a5..9554698 100644 --- a/public/index.html +++ b/public/index.html @@ -5,8 +5,8 @@ - Project Catalyst Veteran Proposal Advisor Tool - + Project Catalyst Veteran Assessor Tool +
-
Advisor:
+
Assessor:
{{assessment.assessor}}
diff --git a/src/components/Instructions.vue b/src/components/Instructions.vue index 47f39a7..2388b86 100644 --- a/src/components/Instructions.vue +++ b/src/components/Instructions.vue @@ -31,8 +31,8 @@

Useful resources

- Veteran Proposal Advisor Guide
- Proposal Advisor Assessment Guide
+ Veteran Proposal Assessor Guide
+ Proposal Assessor Guide

diff --git a/src/views/Assessment.vue b/src/views/Assessment.vue index aba7d24..cd2f91e 100644 --- a/src/views/Assessment.vue +++ b/src/views/Assessment.vue @@ -13,7 +13,7 @@ {{ (fullAssessment.reviews) ? fullAssessment.reviews : 0 }}

- Advisor: + Assessor: {{ fullAssessment.assessor }}

diff --git a/src/views/Conditions.vue b/src/views/Conditions.vue index a433674..d2af40c 100644 --- a/src/views/Conditions.vue +++ b/src/views/Conditions.vue @@ -171,7 +171,7 @@ export default { }, assessor: { key: "assessor", - label: "Advisor", + label: "Assessor", comparison: 'same', type: 'autocomplete', value: "", diff --git a/vue.config.js b/vue.config.js index ae08f75..49f0579 100644 --- a/vue.config.js +++ b/vue.config.js @@ -17,7 +17,7 @@ csvHeaders = JSON.parse(`{ }, "assessor": { "type": "string", - "label": "Advisor" + "label": "Assessor" }, "triplet_id": { "type": "string", From 49b6906608333885e35be83a087694fba32302b7 Mon Sep 17 00:00:00 2001 From: aim Date: Thu, 30 Jun 2022 09:48:06 +0300 Subject: [PATCH 3/3] fix rename --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c527b39..b4a7594 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ This is the repo for the vPA tool frontend. -The process involves importing a CSV file with all assessments that are saved in the localStorage and reviewed locally by the Veteran Proposal Advisor. +The process involves importing a CSV file with all assessments that are saved in the localStorage and reviewed locally by the Veteran Proposal Assessor. An external endpoint is connected to the app to have the updated number of reviews carried out by the vPAs and to be able to coordinate the work efficiently. The development is based on Vue.js