Compare commits

...

2 Commits

Author SHA1 Message Date
filipizydorczyk 8ff51a6598 Merge pull request 'transfer fix' (#62) from statistics into master
Reviewed-on: http://git.plannaplan.pl/y0rune/frontend/pulls/62
Reviewed-by: filipizydorczyk <filip.izydorczyk@protonmail.com>
2021-01-25 17:34:14 +01:00
wrzesinski-hubert a72fb6b12c transfer fix 2021-01-25 17:34:52 +01:00
6 changed files with 19 additions and 9 deletions

View File

@ -58,12 +58,12 @@ const Wrap = styled.div`
flex: 1; flex: 1;
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
margin:20px;
`; `;
const LogoWrapper = styled.div` const LogoWrapper = styled.div`
display: flex; display: flex;
flex: 1;
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
@ -74,6 +74,7 @@ const Text = styled.div`
font-family: 'Roboto', sans-serif; font-family: 'Roboto', sans-serif;
font-size: 5rem; font-size: 5rem;
user-select: none; user-select: none;
margin-bottom:60px;
`; `;
const Logo = styled.img` const Logo = styled.img`

View File

@ -120,9 +120,10 @@ export const Dropdown = ({ open, input, handleCloseDropdown, selectedOption }: D
<> <>
{selectedOption === 'studenci' ? ( {selectedOption === 'studenci' ? (
<div> <div>
{filteredStudents.map(({ surname, name, id }, index) => ( {filteredStudents.map(({ surname, name, email, id }, index) => (
<CourseContainer key={index} id={id.toString()} onClick={onUserClick}> <CourseContainer key={index} id={id.toString()} onClick={onUserClick}>
<p>{name} {surname}</p> {name=== ''? <p>{email}</p> :<p>{name} {surname}</p>}
</CourseContainer> </CourseContainer>
))} ))}
</div> </div>

View File

@ -3,6 +3,7 @@ import { CourseCard } from './CourseCard';
import { coursesContext } from '../contexts/CoursesProvider'; import { coursesContext } from '../contexts/CoursesProvider';
import styled from 'styled-components'; import styled from 'styled-components';
import { debounce } from '../utils/index'; import { debounce } from '../utils/index';
import { SyncLoader } from 'react-spinners';
const RightbarWrapper = styled.div` const RightbarWrapper = styled.div`
padding: 15px; padding: 15px;
@ -46,13 +47,13 @@ const SaveButton = styled.div`
`; `;
export const Rightbar = () => { export const Rightbar = () => {
const { selectBasketCourses, saveBasket, userID } = useContext(coursesContext)!; const { selectBasketCourses, saveBasket, userID, isSavingLoading } = useContext(coursesContext)!;
const basketCourses = selectBasketCourses(); const basketCourses = selectBasketCourses();
const handleSave = debounce(() => saveBasket(userID), 500); const handleSave = debounce(() => saveBasket(userID), 500);
return ( return (
<RightbarWrapper> <RightbarWrapper>
<SaveButton onClick={handleSave}>ZAPISZ</SaveButton> <SaveButton onClick={handleSave}> {isSavingLoading ? <SyncLoader size={9}/> : "ZAPISZ"}</SaveButton>
{basketCourses.map((course) => ( {basketCourses.map((course) => (
<CourseCard course={course} key={course.id} /> <CourseCard course={course} key={course.id} />
))} ))}

View File

@ -214,7 +214,7 @@ export default function ({ handleTransfer }: TopbarProps) {
</ClickAwayListener> </ClickAwayListener>
</FlexboxColumn> </FlexboxColumn>
<IconWrapper> <IconWrapper>
<SelectedStudent>{selectedStudent?.surname}</SelectedStudent> <SelectedStudent>{selectedStudent?.surname === '' ? selectedStudent?.email.replace(/@st.amu.edu.pl/, '') : selectedStudent?.surname}</SelectedStudent>
{/* <Text>Maciej Głowacki</Text> */} {/* <Text>Maciej Głowacki</Text> */}
{userPrivilige === 'STUDENT' && ( {userPrivilige === 'STUDENT' && (
<Tooltip title="Wymiana grupami"> <Tooltip title="Wymiana grupami">

View File

@ -39,7 +39,6 @@ const TransferStyled = styled.div`
background: white; background: white;
margin: 0 auto; margin: 0 auto;
border-radius: 5px; border-radius: 5px;
letter-spacing: 0.1ch;
`; `;
const BinIcon = styled(DeleteIcon)` const BinIcon = styled(DeleteIcon)`
@ -166,17 +165,20 @@ const Exchange = styled.div`
align-items: center; align-items: center;
justify-content: center; justify-content: center;
padding: 0.5rem; padding: 0.5rem;
line-height: 0; line-height:2;
`; `;
const ExchangeTitle = styled.p` const ExchangeTitle = styled.p`
font-size: 16px; font-size: 16px;
font-weight: bold; font-weight: bold;
margin:0;
`; `;
const ExchangeParagraph = styled.p` const ExchangeParagraph = styled.p`
font-size: 13px; font-size: 13px;
color: #1a1a1a; color: #1a1a1a;
margin:0;
`; `;
export const Transfer = ({ handleClose, isTransferOpen }: TransferProps) => { export const Transfer = ({ handleClose, isTransferOpen }: TransferProps) => {

View File

@ -22,6 +22,7 @@ interface CourseContext {
isDataLoading: boolean; isDataLoading: boolean;
historyBasket: Array<Basket>; historyBasket: Array<Basket>;
tour: string; tour: string;
isSavingLoading: boolean;
getCurrentTour: () => void; getCurrentTour: () => void;
addCourseToBasket: (courses: Course) => void; addCourseToBasket: (courses: Course) => void;
changeHoveredGroup: (group: Group | null) => void; changeHoveredGroup: (group: Group | null) => void;
@ -60,6 +61,7 @@ export const CoursesProvider = ({ children }: CoursesProviderProps) => {
const [hoveredGroup, setHoveredGroup] = useState<Group | undefined | null>(null); const [hoveredGroup, setHoveredGroup] = useState<Group | undefined | null>(null);
const [isDataLoading, setIsDataLoading] = useState(false); const [isDataLoading, setIsDataLoading] = useState(false);
const [tour, setTour] = useState(''); const [tour, setTour] = useState('');
const [isSavingLoading, setIsSavingLoading] = useState(false);
const selectBasketIds = () => { const selectBasketIds = () => {
const classesIds = basket.map((course) => course?.classes?.id).filter((course) => course !== undefined); const classesIds = basket.map((course) => course?.classes?.id).filter((course) => course !== undefined);
@ -143,6 +145,7 @@ export const CoursesProvider = ({ children }: CoursesProviderProps) => {
}; };
const saveBasket = async (userID: string) => { const saveBasket = async (userID: string) => {
setIsSavingLoading(true);
const basketIds = selectBasketIds(); const basketIds = selectBasketIds();
const action = (key: any) => ( const action = (key: any) => (
<> <>
@ -171,6 +174,7 @@ export const CoursesProvider = ({ children }: CoursesProviderProps) => {
}); });
} }
getStudentTimetablesHistory(userID); getStudentTimetablesHistory(userID);
setIsSavingLoading(false);
}; };
const changeGroupInBasket = (choosenGroup: any, courseId: number) => { const changeGroupInBasket = (choosenGroup: any, courseId: number) => {
@ -308,6 +312,7 @@ export const CoursesProvider = ({ children }: CoursesProviderProps) => {
isDataLoading, isDataLoading,
historyBasket, historyBasket,
tour, tour,
isSavingLoading,
getCurrentTour, getCurrentTour,
addCourseToBasket, addCourseToBasket,
changeHoveredGroup, changeHoveredGroup,