diff --git a/src/screens/Classroom/PeopleTab/index.js b/src/screens/Classroom/PeopleTab/index.js index 7d9884a..7db1559 100644 --- a/src/screens/Classroom/PeopleTab/index.js +++ b/src/screens/Classroom/PeopleTab/index.js @@ -1,16 +1,22 @@ import { Avatar, Container, Skeleton, Stack, Typography } from '@mui/material'; import { createArrayFrom1ToN } from '../../../utils/createArrayFrom1ToN'; +import styles from './styles'; function PeopleTab({ layoutType, peopleTabData }) { const layoutResolver = (state, people, layoutType) => { + const { + externalContainer, + sectionContainer, + sectionTitle, + personContainer, + personAvatar, + personName, + } = styles[layoutType]; if (layoutType === 'desktop') { switch (state) { case 'loading': return ( - + - - + + + Docentes {people .filter(p => p.role === 'PROFESSOR') .map(p => ( - - - {p.name} + + + + {p.name} + ))} - - + + Discentes {people .filter(p => p.role === 'STUDENT') .map(p => ( - - - {p.name} + + + + {p.name} + ))} @@ -160,10 +114,7 @@ function PeopleTab({ layoutType, peopleTabData }) { switch (state) { case 'loading': return ( - + - - + + + Docentes {people .filter(p => p.role === 'PROFESSOR') .map(p => ( - - - + + + {p.name} @@ -270,54 +184,17 @@ function PeopleTab({ layoutType, peopleTabData }) { - - + + Discentes {people .filter(p => p.role === 'STUDENT') .map(p => ( - - - + + + {p.name} diff --git a/src/screens/Classroom/PeopleTab/styles.js b/src/screens/Classroom/PeopleTab/styles.js new file mode 100644 index 0000000..2541b85 --- /dev/null +++ b/src/screens/Classroom/PeopleTab/styles.js @@ -0,0 +1,102 @@ +// ========== Desktop ========== +const desktopExternalContainer = { + marginTop: '50px', + height: '100vh', +}; + +const desktopSectionContainer = { + width: '90%', + marginBottom: '30px', +}; + +const desktopSectionTitle = { + padding: '10px', + borderBottom: '2px solid #00420D', + color: '#00420D', +}; + +const desktopPersonContainer = { + width: '95%', + padding: '20px', + borderBottom: '2px solid #BCBCBC', + display: 'flex', + alignItems: 'center', +}; + +const desktopPersonAvatar = { + width: '60px', + height: '60px', + marginRight: '15px', +}; + +const desktopPersonName = {}; + +const desktop = { + externalContainer: desktopExternalContainer, + sectionContainer: desktopSectionContainer, + sectionTitle: desktopSectionTitle, + personContainer: desktopPersonContainer, + personAvatar: desktopPersonAvatar, + personName: desktopPersonName, +}; + +// ========== Mobile ========== +const mobileExternalContainer = { + marginTop: '50px', + height: '100vh', +}; + +const mobileSectionContainer = { + width: '90%', + marginBottom: '30px', +}; + +const mobileSectionTitle = { + padding: '10px', + borderBottom: '2px solid #00420D', + color: '#00420D', +}; + +const mobilePersonContainer = { + width: '95%', + padding: '20px', + borderBottom: '2px solid #BCBCBC', + display: 'flex', + alignItems: 'center', +}; + +const mobilePersonAvatar = { + width: '40px', + height: '40px', + marginRight: '15px', +}; + +const mobilePersonName = { + overflow: 'hidden', + textOverflow: 'ellipsis', + display: '-webkit-box', + WebkitLineClamp: 1, + WebkitBoxOrient: 'vertical', +}; + +const mobile = { + externalContainer: mobileExternalContainer, + sectionContainer: mobileSectionContainer, + sectionTitle: mobileSectionTitle, + personContainer: mobilePersonContainer, + personAvatar: mobilePersonAvatar, + personName: mobilePersonName, +}; + +// ========== Unset ========== +const unset = { + externalContainer: null, + sectionContainer: null, + sectionTitle: null, + personContainer: null, + personAvatar: null, + personName: null, +}; + +const styles = { desktop, mobile, unset }; +export default styles;