forked from PalisadoesFoundation/talawa-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Regular users can access the dashboard of the event created by them (P…
…alisadoesFoundation#1920) * regular user can access the dashboard of the event created by them * fix the test to have 100% coverage
- Loading branch information
1 parent
bddd7a2
commit c5dc7ea
Showing
6 changed files
with
549 additions
and
9 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
198 changes: 198 additions & 0 deletions
198
src/components/EventDashboardScreen/EventDashboardScreen.module.css
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,198 @@ | ||
.gap { | ||
gap: 20px; | ||
} | ||
|
||
.mainContainer { | ||
width: 50%; | ||
flex-grow: 3; | ||
padding: 20px; | ||
max-height: 100%; | ||
overflow: auto; | ||
} | ||
|
||
.containerHeight { | ||
height: calc(100vh - 66px); | ||
} | ||
|
||
.colorLight { | ||
background-color: #f1f3f6; | ||
} | ||
|
||
.pageContainer { | ||
display: flex; | ||
flex-direction: column; | ||
min-height: 100vh; | ||
padding: 1rem 1.5rem 0 calc(300px + 2rem + 1.5rem); | ||
} | ||
|
||
.expand { | ||
padding-left: 4rem; | ||
animation: moveLeft 0.5s ease-in-out; | ||
} | ||
.avatarStyle { | ||
border-radius: 100%; | ||
} | ||
.profileContainer { | ||
border: none; | ||
padding: 2.1rem 0.5rem; | ||
height: 52px; | ||
border-radius: 8px 0px 0px 8px; | ||
display: flex; | ||
align-items: center; | ||
background-color: white !important; | ||
box-shadow: | ||
0 4px 4px 0 rgba(177, 177, 177, 0.2), | ||
0 6px 20px 0 rgba(151, 151, 151, 0.19); | ||
} | ||
.profileContainer:focus { | ||
outline: none; | ||
background-color: var(--bs-gray-100); | ||
} | ||
.imageContainer { | ||
width: 56px; | ||
} | ||
.profileContainer .profileText { | ||
flex: 1; | ||
text-align: start; | ||
overflow: hidden; | ||
margin-right: 4px; | ||
} | ||
.angleDown { | ||
margin-left: 4px; | ||
} | ||
.profileContainer .profileText .primaryText { | ||
font-size: 1rem; | ||
font-weight: 600; | ||
overflow: hidden; | ||
display: -webkit-box; | ||
-webkit-line-clamp: 2; /* number of lines to show */ | ||
-webkit-box-orient: vertical; | ||
word-wrap: break-word; | ||
white-space: normal; | ||
} | ||
.profileContainer .profileText .secondaryText { | ||
font-size: 0.8rem; | ||
font-weight: 400; | ||
color: var(--bs-secondary); | ||
display: block; | ||
text-transform: capitalize; | ||
} | ||
|
||
.contract { | ||
padding-left: calc(300px + 2rem + 1.5rem); | ||
animation: moveRight 0.5s ease-in-out; | ||
} | ||
|
||
.collapseSidebarButton { | ||
position: fixed; | ||
height: 40px; | ||
bottom: 0; | ||
z-index: 9999; | ||
width: calc(300px + 2rem); | ||
background-color: rgba(245, 245, 245, 0.7); | ||
color: black; | ||
border: none; | ||
border-radius: 0px; | ||
} | ||
|
||
.collapseSidebarButton:hover, | ||
.opendrawer:hover { | ||
opacity: 1; | ||
color: black !important; | ||
} | ||
.opendrawer { | ||
position: fixed; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
top: 0; | ||
left: 0; | ||
width: 40px; | ||
height: 100vh; | ||
z-index: 9999; | ||
background-color: rgba(245, 245, 245); | ||
border: none; | ||
border-radius: 0px; | ||
margin-right: 20px; | ||
color: black; | ||
} | ||
.profileDropdown { | ||
background-color: transparent !important; | ||
} | ||
.profileDropdown .dropdown-toggle .btn .btn-normal { | ||
display: none !important; | ||
background-color: transparent !important; | ||
} | ||
.dropdownToggle { | ||
background-image: url(/public/images/svg/angleDown.svg); | ||
background-repeat: no-repeat; | ||
background-position: center; | ||
background-color: azure; | ||
} | ||
|
||
.dropdownToggle::after { | ||
border-top: none !important; | ||
border-bottom: none !important; | ||
} | ||
|
||
.opendrawer:hover { | ||
transition: background-color 0.5s ease; | ||
background-color: var(--bs-primary); | ||
} | ||
.collapseSidebarButton:hover { | ||
transition: background-color 0.5s ease; | ||
background-color: var(--bs-primary); | ||
} | ||
|
||
@media (max-width: 1120px) { | ||
.contract { | ||
padding-left: calc(250px + 2rem + 1.5rem); | ||
} | ||
.collapseSidebarButton { | ||
width: calc(250px + 2rem); | ||
} | ||
} | ||
|
||
@media (max-height: 900px) { | ||
.pageContainer { | ||
padding: 1rem 1.5rem 0 calc(300px + 2rem); | ||
} | ||
.collapseSidebarButton { | ||
height: 30px; | ||
width: calc(300px + 1rem); | ||
} | ||
} | ||
@media (max-height: 650px) { | ||
.pageContainer { | ||
padding: 1rem 1.5rem 0 calc(270px); | ||
} | ||
.collapseSidebarButton { | ||
width: 250px; | ||
height: 20px; | ||
} | ||
.opendrawer { | ||
width: 30px; | ||
} | ||
} | ||
|
||
/* For tablets */ | ||
@media (max-width: 820px) { | ||
.pageContainer { | ||
padding-left: 2.5rem; | ||
} | ||
|
||
.opendrawer { | ||
width: 25px; | ||
} | ||
|
||
.contract, | ||
.expand { | ||
animation: none; | ||
} | ||
|
||
.collapseSidebarButton { | ||
width: 100%; | ||
left: 0; | ||
right: 0; | ||
} | ||
} |
166 changes: 166 additions & 0 deletions
166
src/components/EventDashboardScreen/EventDashboardScreen.test.tsx
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,166 @@ | ||
import React from 'react'; | ||
import { MockedProvider } from '@apollo/react-testing'; | ||
import { fireEvent, render, screen } from '@testing-library/react'; | ||
import { I18nextProvider } from 'react-i18next'; | ||
import 'jest-location-mock'; | ||
import { Provider } from 'react-redux'; | ||
import { BrowserRouter } from 'react-router-dom'; | ||
import { store } from 'state/store'; | ||
import i18nForTest from 'utils/i18nForTest'; | ||
import EventDashboardScreen from './EventDashboardScreen'; | ||
import { ORGANIZATIONS_LIST } from 'GraphQl/Queries/Queries'; | ||
import { StaticMockLink } from 'utils/StaticMockLink'; | ||
import useLocalStorage from 'utils/useLocalstorage'; | ||
const { setItem } = useLocalStorage(); | ||
|
||
Object.defineProperty(window, 'matchMedia', { | ||
writable: true, | ||
value: jest.fn().mockImplementation((query) => ({ | ||
matches: false, | ||
media: query, | ||
onchange: null, | ||
addListener: jest.fn(), // Deprecated | ||
removeListener: jest.fn(), // Deprecated | ||
addEventListener: jest.fn(), | ||
removeEventListener: jest.fn(), | ||
dispatchEvent: jest.fn(), | ||
})), | ||
}); | ||
|
||
let mockID: string | undefined = '123'; | ||
jest.mock('react-router-dom', () => ({ | ||
...jest.requireActual('react-router-dom'), | ||
useParams: () => ({ orgId: mockID }), | ||
})); | ||
|
||
const MOCKS = [ | ||
{ | ||
request: { | ||
query: ORGANIZATIONS_LIST, | ||
variables: { id: '123' }, | ||
}, | ||
result: { | ||
data: { | ||
organizations: [ | ||
{ | ||
_id: '123', | ||
image: null, | ||
creator: { | ||
firstName: 'John', | ||
lastName: 'Doe', | ||
email: '[email protected]', | ||
}, | ||
name: 'Test Organization', | ||
description: 'Testing this organization', | ||
address: { | ||
city: 'Mountain View', | ||
countryCode: 'US', | ||
dependentLocality: 'Some Dependent Locality', | ||
line1: '123 Main Street', | ||
line2: 'Apt 456', | ||
postalCode: '94040', | ||
sortingCode: 'XYZ-789', | ||
state: 'CA', | ||
}, | ||
userRegistrationRequired: true, | ||
visibleInSearch: true, | ||
members: [], | ||
admins: [], | ||
membershipRequests: [], | ||
blockedUsers: [], | ||
}, | ||
], | ||
}, | ||
}, | ||
}, | ||
]; | ||
const link = new StaticMockLink(MOCKS, true); | ||
|
||
const resizeWindow = (width: number): void => { | ||
window.innerWidth = width; | ||
fireEvent(window, new Event('resize')); | ||
}; | ||
|
||
const clickToggleMenuBtn = (toggleButton: HTMLElement): void => { | ||
fireEvent.click(toggleButton); | ||
}; | ||
|
||
describe('Testing LeftDrawer in OrganizationScreen', () => { | ||
test('should be redirected to / if IsLoggedIn is false', async () => { | ||
setItem('IsLoggedIn', false); | ||
render( | ||
<MockedProvider addTypename={false} link={link}> | ||
<BrowserRouter> | ||
<Provider store={store}> | ||
<I18nextProvider i18n={i18nForTest}> | ||
<EventDashboardScreen /> | ||
</I18nextProvider> | ||
</Provider> | ||
</BrowserRouter> | ||
</MockedProvider>, | ||
); | ||
expect(window.location.pathname).toEqual('/'); | ||
}); | ||
test('should be redirected to / if ss is false', async () => { | ||
setItem('IsLoggedIn', true); | ||
render( | ||
<MockedProvider addTypename={false} link={link}> | ||
<BrowserRouter> | ||
<Provider store={store}> | ||
<I18nextProvider i18n={i18nForTest}> | ||
<EventDashboardScreen /> | ||
</I18nextProvider> | ||
</Provider> | ||
</BrowserRouter> | ||
</MockedProvider>, | ||
); | ||
}); | ||
test('Testing LeftDrawer in page functionality', async () => { | ||
setItem('IsLoggedIn', true); | ||
setItem('AdminFor', [ | ||
{ _id: '6637904485008f171cf29924', __typename: 'Organization' }, | ||
]); | ||
render( | ||
<MockedProvider addTypename={false} link={link}> | ||
<BrowserRouter> | ||
<Provider store={store}> | ||
<I18nextProvider i18n={i18nForTest}> | ||
<EventDashboardScreen /> | ||
</I18nextProvider> | ||
</Provider> | ||
</BrowserRouter> | ||
</MockedProvider>, | ||
); | ||
const toggleButton = screen.getByTestId('toggleMenuBtn') as HTMLElement; | ||
const icon = toggleButton.querySelector('i'); | ||
|
||
// Resize window to a smaller width | ||
resizeWindow(800); | ||
clickToggleMenuBtn(toggleButton); | ||
expect(icon).toHaveClass('fa fa-angle-double-right'); | ||
// Resize window back to a larger width | ||
|
||
resizeWindow(1000); | ||
clickToggleMenuBtn(toggleButton); | ||
expect(icon).toHaveClass('fa fa-angle-double-left'); | ||
|
||
clickToggleMenuBtn(toggleButton); | ||
expect(icon).toHaveClass('fa fa-angle-double-right'); | ||
}); | ||
|
||
test('should be redirected to / if orgId is undefined', async () => { | ||
mockID = undefined; | ||
render( | ||
<MockedProvider addTypename={false} link={link}> | ||
<BrowserRouter> | ||
<Provider store={store}> | ||
<I18nextProvider i18n={i18nForTest}> | ||
<EventDashboardScreen /> | ||
</I18nextProvider> | ||
</Provider> | ||
</BrowserRouter> | ||
</MockedProvider>, | ||
); | ||
expect(window.location.pathname).toEqual('/'); | ||
}); | ||
}); |
Oops, something went wrong.