-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/task-list-screen #49
Closed
Closed
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
b6dc1ad
feat: task type rough screen and type/category enum
oliviaseds 5cb2b67
feat: all hands screen (no functionality)
oliviaseds f088c0a
feat: filter button
oliviaseds 8383ae5
Merge branch 'main' into feature/task-type-frontend
oliviaseds 1574f21
feat: migrated all changes from previous branch
wyattchris 724465b
refactor: remove ScrollView and non-Tailwind styling
oliviaseds db9dd79
style: prettier
oliviaseds b74253b
Merge remote-tracking branch 'origin/feature/task-type-frontend' into…
wyattchris d1b38c2
feat: filter button progress
wyattchris e644709
refactor: refactor all styling to be tailwind + button half implemented
wyattchris 4e32def
feat: filter button implementation + pr fixes
wyattchris c0c6d77
refactor: fix cicd
wyattchris 59695d3
Merge branch 'main' into feature/task-list-screen-3
wyattchris 85dcfe0
refactor(delete-svgs): delete svgs
wyattchris 4c3a6fc
feat: snapped w my boy matt
wyattchris fec3010
feat(lebron-james): lebron james
wyattchris 50ed5b4
Merge branch 'main' into feature/task-list-screen-3
wyattchris 4502b3e
refactor: add import for tasklist
wyattchris 1e6691d
test: fix backend go tests for tasks
wyattchris 2078c9a
Merge branch 'main' into feature/task-list-screen-3
wyattchris 3163b27
feat(navigation-between-calendar-and-task-list-screen): navigation be…
wyattchris fa4566d
fix: add back haley
wyattchris 2b1fbbf
refactor(refactor-component-to-tailwind): refactor component to tailwind
wyattchris File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
|
@@ -29,6 +29,7 @@ VALUES | |
('8Sy7xBkGiGQv4ZKphcQfY8PxAqw1', 'Narayan', 'Sharma', '[email protected]', '', ''), | ||
('iL7PnjS4axQffmlPceobjUUZ9DF2', 'Caitlin', 'Flynn', '[email protected]', '', ''), | ||
('5JgN2PQxCRM9VoCiiFPlQPNqkL32', 'Linwood', 'Blaisdell', '[email protected]', '', ''), | ||
('P03ggWcw63N0RSY7ltbkeBoR6bd2', 'Chris', 'Wyatt', '[email protected]', '', ''), | ||
('9rIMSUo6qNf8ToTABkCfNqnByRv1', 'Haley', 'Martin', '[email protected]', '', '') | ||
|
||
-- End Care-Wallet Team | ||
|
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
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
This file was deleted.
Oops, something went wrong.
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,30 @@ | ||
import React from 'react'; | ||
import { StyleSheet, Text, View } from 'react-native'; | ||
|
||
function DropdownItem({ label }: { label: string }) { | ||
return ( | ||
<View style={styles.container}> | ||
<Text style={styles.dropdownLabel}>{label}</Text> | ||
</View> | ||
); | ||
} | ||
|
||
const styles = StyleSheet.create({ | ||
container: { | ||
flexDirection: 'row', | ||
alignItems: 'center', | ||
marginBottom: 10 | ||
}, | ||
dropdownLabel: { | ||
fontSize: 18, | ||
color: 'care-wallet-black', | ||
marginRight: 10 | ||
}, | ||
line: { | ||
flex: 1, | ||
height: 1, | ||
backgroundColor: 'gray' | ||
} | ||
}); | ||
|
||
export { DropdownItem }; |
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,29 @@ | ||
import React from 'react'; | ||
import { Text, View } from 'react-native'; | ||
|
||
export function TaskInfoComponent({ | ||
name, | ||
label, | ||
category, | ||
type, | ||
date | ||
}: { | ||
name: string; | ||
label: string; | ||
category: string; | ||
type: string; | ||
date: Date; | ||
}) { | ||
const formattedStartDate = date ? new Date(date).toLocaleDateString() : 'N/A'; | ||
wyattchris marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
return ( | ||
<View className="border-black bg-white mb-6 rounded-lg border p-4"> | ||
<View className="mb-2 flex flex-row justify-between"> | ||
<Text className="self-end font-bold">{`Task #${name}`}</Text> | ||
<Text className="self-start">{label}</Text> | ||
</View> | ||
<Text className="mt-3">{`${category} | ${type}`}</Text> | ||
<Text className="mt-3">{`${formattedStartDate}`}</Text> | ||
</View> | ||
); | ||
} |
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
File renamed without changes.
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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you removed haley :(
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh snap 😭😭