Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
75d61d7
basic component with dummy data in place
Jaz-spec Jun 6, 2025
2756e51
skeleton for displaying question data in place
Jaz-spec Jun 6, 2025
ef938f4
commit to merge updated types
Jaz-spec Jun 6, 2025
6361445
commit
Jaz-spec Jun 6, 2025
e724a65
data is being displayed from the db
Jaz-spec Jun 6, 2025
0b098b6
added basic question saving for version 1 of a question
Jaz-spec Jun 7, 2025
c8f2be9
integrated action types
Jaz-spec Jun 7, 2025
fe51e2b
ability to retrieve previous answers
Jaz-spec Jun 7, 2025
b558d9b
responses marked as either answered or skipped
Jaz-spec Jun 7, 2025
33cc0be
retrieved and displayed latest action in question card component
Jaz-spec Jun 7, 2025
3ec4c57
public private toggle implemented
Jaz-spec Jun 7, 2025
f3fb76e
fixed some toggle mis-haps
Jaz-spec Jun 7, 2025
87e1624
Merge branch 'question-component' of https://github.com/foundersandco…
JasonWarrenUK Jun 9, 2025
31bb8f2
style: :lipstick: rationalise imports from different branches
JasonWarrenUK Jun 9, 2025
3621fe6
style: :lipstick: remove dashed horrors
JasonWarrenUK Jun 9, 2025
8b235b5
feat: :label: create list category type
JasonWarrenUK Jun 9, 2025
d36ba26
feat: :card_file_box: add preview field to question table
JasonWarrenUK Jun 9, 2025
3b7e1e0
feat: :lipstick: render the correct questions/actions in list view
JasonWarrenUK Jun 9, 2025
8d535b9
Merge branch 'header_component' of https://github.com/foundersandcode…
JasonWarrenUK Jun 9, 2025
86e3a4b
refactor(project): :truck: reorganise components
JasonWarrenUK Jun 9, 2025
59dc132
feat: :lipstick: create separate list item component
JasonWarrenUK Jun 9, 2025
82d3cb2
build: :construction_worker: make pr template not poo
JasonWarrenUK Jun 9, 2025
6bd6669
Merge branch 'main' of https://github.com/foundersandcoders/LIFT02 in…
JasonWarrenUK Jun 9, 2025
4409ddb
refactor(styles): :recycle: rename dev classes
JasonWarrenUK Jun 10, 2025
c4ff7ba
fix(styles): :pencil2: add missing outline props
JasonWarrenUK Jun 10, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 13 additions & 16 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
# Title
<!-- Simple phrase that describes the main outcomes -->

## Overview

> Describe what your PR does here.
Expand All @@ -9,34 +6,34 @@

## TL;DR
<!-- TLDR Guide
List any steps devs have to take after pulling this down
-->
List any steps devs have to take after pulling this down
-->

---

## Gallery
<!-- Gallery Guide
Delete if irrelevant
- Screenshots to show changes
- Code snippets to flex smugly
-->
Delete if irrelevant
- Screenshots to show changes
- Code snippets to flex smugly
-->

---

## Changes
<!-- Changes Guide
Break your changes into either files or categories, depending on how wide-ranging the PR is. For example...
Break your changes into either files or categories, depending on how wide-ranging the PR is. For example...
-->

### Database Utils `or` `utils/db.md`
**Category** or **`file.js`**

Brief description of changes
Brief description of changes

- details in bullet points, if necessary
-->
- details in bullet points, if necessary

---

## Summary
<!-- Summary Guide
Describe this PR using a completely non-technical and ideally absurd metaphor
-->
Describe this PR using a completely non-technical and ideally absurd metaphor
-->
11 changes: 11 additions & 0 deletions docs/HITL_Docs/PROMPTS_JAZ.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Read through the ARCHITECTURE.md and FUNCTIONAL.md files get to grips with the project
My task is to create a component that displays:

- A section header
- A question
- an input for the user to answer the question
- an additional input for the user to declare 'actions'
- a skip button
- a submit button
Don't do any styling, I will handle that later. I just want a template component that I can edit.
Do you have any questions for me regarding the task? If not, please suggest some code for me
Loading