diff --git a/src/components/specific_challenge/Leaderboard/Leaderboard.js b/src/components/specific_challenge/Leaderboard/Leaderboard.js index 86c4d9e..6a3ce2a 100644 --- a/src/components/specific_challenge/Leaderboard/Leaderboard.js +++ b/src/components/specific_challenge/Leaderboard/Leaderboard.js @@ -82,6 +82,14 @@ const Leaderboard = (props) => { return header; }; + const getLeaderboardHeaderMobile = () => { + let header = ['#', 'submitter', 'entries', 'when']; + for (let metric of getPossibleMetrics()) { + header.push(metric); + } + return header; + }; + const sortByUpdate = (elem) => { let metricIndex = 0; let newEntries = entries; @@ -129,18 +137,38 @@ const Leaderboard = (props) => { const mobileRender = () => { return ( - +

Leaderboard

- - - + {!loading ? + <> + +
+ + + : } ); }; diff --git a/src/components/specific_challenge/Table.js b/src/components/specific_challenge/Table.js index 41786c0..fc919fc 100644 --- a/src/components/specific_challenge/Table.js +++ b/src/components/specific_challenge/Table.js @@ -1,5 +1,5 @@ import React from 'react'; -import {FlexColumn, FlexRow, Grid} from '../../utils/containers'; +import {Container, FlexColumn, FlexRow, Grid} from '../../utils/containers'; import Media from 'react-media'; import theme from '../../utils/theme'; import {ELEMENTS_PER_PAGE} from '../../utils/globals'; @@ -17,20 +17,102 @@ const Line = styled(FlexRow)` height: ${({height}) => height ? height : '1px'}; `; +const MobileTableStyle = styled(Container)` + width: 100%; + border-collapse: collapse; + margin: 32px 0; + + tr:nth-of-type(odd) { + background: ${({theme}) => theme.colors.dark03}; + } + + th { + background: ${({theme}) => theme.colors.dark05}; + color: ${({theme}) => theme.colors.white}; + } + + td, th { + padding: 6px; + border: 1px solid ${({theme}) => theme.colors.white}; + text-align: left; + } + + display: block; + + thead, tbody, th, td { + display: block; + } + + thead tr { + position: absolute; + top: -9999px; + left: -9999px; + } + + td { + border: none; + border-bottom: 1px solid ${({theme}) => theme.colors.dark01}; + position: relative; + padding-left: 50%; + + &:before { + font-weight: 400; + position: absolute; + top: 6px; + left: 6px; + width: 45%; + padding-right: 10px; + white-space: nowrap; + } + } + + td:nth-of-type(1):before { + content: ${({headerElements}) => headerElements[0] ? `'${headerElements[0]}'` : ''}; + } + + td:nth-of-type(2):before { + content: ${({headerElements}) => headerElements[1] ? `'${headerElements[1]}'` : ''}; + } + + td:nth-of-type(3):before { + content: ${({headerElements}) => headerElements[2] ? `'${headerElements[2]}'` : ''}; + } + + td:nth-of-type(4):before { + content: ${({headerElements}) => headerElements[3] ? `'${headerElements[3]}'` : ''}; + } + + td:nth-of-type(5):before { + content: ${({headerElements}) => headerElements[4] ? `'${headerElements[4]}'` : ''}; + } + + td:nth-of-type(6):before { + content: ${({headerElements}) => headerElements[5] ? `'${headerElements[5]}'` : ''}; + } + + td:nth-of-type(7):before { + content: ${({headerElements}) => headerElements[6] ? `'${headerElements[6]}'` : ''}; + } + + td:nth-of-type(8):before { + content: ${({headerElements}) => headerElements[7] ? `'${headerElements[7]}'` : ''}; + } + + td:nth-of-type(9):before { + content: ${({headerElements}) => headerElements[8] ? `'${headerElements[8]}'` : ''}; + } + + td:nth-of-type(10):before { + content: ${({headerElements}) => headerElements[9] ? `'${headerElements[9]}'` : ''}; + } +`; + const Table = (props) => { const [, updateState] = React.useState(); const forceUpdate = React.useCallback(() => updateState({}), []); const [activeIcon, setActiveIcon] = React.useState(null); const [rotateActiveIcon, setRotateActiveIcon] = React.useState(false); - const mobileRender = () => { - return ( - - {/*{props.renderElements('10px', props.headerElements)}*/} - - ); - }; - const metricsRender = (elem) => { if (!props.iterableColumnElement) return <>; @@ -148,6 +230,45 @@ const Table = (props) => { } }; + const mobileRender = () => { + const n = (props.pageNr - 1) * ELEMENTS_PER_PAGE; + let elementsToMap = props.elements.slice(n, n + ELEMENTS_PER_PAGE); + if (elementsToMap.length > 0) { + return ( + + + + {props.headerElements.map((elem, i) => { + return ( + + {elem} + + ); + })} + + + + {elementsToMap.map((elem, index) => { + return ( + + {rowRender(elem)} + {props.headerElements ? metricsRender(elem) : ''} + + ); + })} + + + ); + } else { + return ( + + No results ;c + + ); + } + }; + return ( <> diff --git a/src/pages/Challenge.js b/src/pages/Challenge.js index 255fd5d..2429a5b 100644 --- a/src/pages/Challenge.js +++ b/src/pages/Challenge.js @@ -41,7 +41,8 @@ const Challenge = (props) => { case 3: return ; case 4: - return ; + return ; default: return ; } @@ -84,14 +85,13 @@ const Challenge = (props) => { ); - } - else { + } else { return (

Submission processing...

- +
); }