-
-
Notifications
You must be signed in to change notification settings - Fork 758
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add My Tasks screen and Fix UI bugs [User Portal] (#978)
* Create login and register page for user portal * Lint public locales * Create tests for login page components * Add react import in tests * Create organizations screen for user portal * Fix failing tests and lint code * fix failing tests * Add tests for organization screen and componenets * Fix non-null assertions * Fix non-null assertions in organizations test * Fix bootstrap migration changes * Add Home Screen along with other components * Fix failing tests * Add required tests and Offcanvas navbar * Remove unused variables from tests * Sync the Mutations with talawa-api * Add Settings and Donate Screen * Add multilingual support for the screens * Add events screen without calendar view * Add multilingual support to Events screen * Fix failing tests due to merge * Add Post Comment functionality * Refactor Events tests * Deprecate event registrants from query * Add my tasks screen for user portal * Remove unnecessary comments from test files
- Loading branch information
1 parent
7b846e7
commit 30e280d
Showing
19 changed files
with
787 additions
and
21 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
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 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 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 |
---|---|---|
|
@@ -27,7 +27,7 @@ let props = { | |
email: '[email protected]', | ||
}; | ||
|
||
describe('Testing Organization Card Component [User Portal]', () => { | ||
describe('Testing PeopleCard Component [User Portal]', () => { | ||
test('Component should be rendered properly', async () => { | ||
render( | ||
<MockedProvider addTypename={false} link={link}> | ||
|
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,41 @@ | ||
.mainContainer { | ||
width: 100%; | ||
padding: 15px; | ||
cursor: pointer; | ||
border-radius: 10px; | ||
/* box-shadow: 2px 2px 8px 0px #c8c8c8; */ | ||
overflow: hidden; | ||
background-color: rgba(50, 187, 107, 0.15); | ||
} | ||
|
||
.cardDetails { | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
.cardDetail { | ||
display: flex; | ||
flex-direction: row; | ||
gap: 10px; | ||
margin: 5px; | ||
} | ||
|
||
.fillPrimary { | ||
fill: var(--bs-primary) !important; | ||
} | ||
|
||
.badge { | ||
display: flex; | ||
width: fit-content; | ||
background-color: var(--bs-secondary) !important; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
.fitContent { | ||
width: fit-content; | ||
} | ||
|
||
.marginTop { | ||
margin-top: 10px; | ||
} |
Oops, something went wrong.