Compare commits

...

2 Commits

Author SHA1 Message Date
9455bcc6c3 mobile menu correction 2023-04-04 14:48:45 +02:00
e13671f885 refactor: CHALLENGE_SECTIONS ENUM 2023-04-04 10:51:20 +02:00
7 changed files with 236 additions and 179 deletions

View File

@ -11,6 +11,7 @@ import {
POLICY_PRIVACY_PAGE, POLICY_PRIVACY_PAGE,
LOGIN_REQUIRED_PAGES, LOGIN_REQUIRED_PAGES,
ROOT_URL, ROOT_URL,
CHALLENGE_SECTIONS,
} from './utils/globals'; } from './utils/globals';
import KeyCloakService from './services/KeyCloakService'; import KeyCloakService from './services/KeyCloakService';
import React from 'react'; import React from 'react';
@ -121,36 +122,36 @@ const App = () => {
<Routes> <Routes>
<Route <Route
path={`${CHALLENGE_PAGE}/:challengeId`} path={`${CHALLENGE_PAGE}/:challengeId`}
element={<Challenge section={0} />} element={<Challenge section={CHALLENGE_SECTIONS.LEADERBOARD} />}
/> />
<Route <Route
path={`${CHALLENGE_PAGE}/:challengeId/leaderboard`} path={`${CHALLENGE_PAGE}/:challengeId/leaderboard`}
element={<Challenge section={0} />} element={<Challenge section={CHALLENGE_SECTIONS.LEADERBOARD} />}
/> />
<Route <Route
path={`${CHALLENGE_PAGE}/:challengeId/allentries`} path={`${CHALLENGE_PAGE}/:challengeId/allentries`}
element={<Challenge section={1} />} element={<Challenge section={CHALLENGE_SECTIONS.ALL_ENTRIES} />}
/> />
<Route <Route
path={`${CHALLENGE_PAGE}/:challengeId/readme`} path={`${CHALLENGE_PAGE}/:challengeId/readme`}
element={<Challenge section={2} />} element={<Challenge section={CHALLENGE_SECTIONS.README} />}
/> />
<Route <Route
path={`${CHALLENGE_PAGE}/:challengeId/howto`} path={`${CHALLENGE_PAGE}/:challengeId/howto`}
element={ element={
<Challenge <Challenge
popUpMessageHandler={popUpMessageHandler} popUpMessageHandler={popUpMessageHandler}
section={3} section={CHALLENGE_SECTIONS.HOW_TO}
/> />
} }
/> />
<Route <Route
path={`${CHALLENGE_PAGE}/:challengeId/myentries`} path={`${CHALLENGE_PAGE}/:challengeId/myentries`}
element={<Challenge section={4} />} element={<Challenge section={CHALLENGE_SECTIONS.MY_ENTRIES} />}
/> />
<Route <Route
path={`${CHALLENGE_PAGE}/:challengeId/submit`} path={`${CHALLENGE_PAGE}/:challengeId/submit`}
element={<Challenge section={5} />} element={<Challenge section={CHALLENGE_SECTIONS.SUBMIT} />}
/> />
<Route path={CHALLENGES_PAGE} element={<Challenges />} /> <Route path={CHALLENGES_PAGE} element={<Challenges />} />
<Route <Route

View File

@ -11,7 +11,7 @@ import MyEntries from './MyEntries/MyEntries';
import Submit from './Submit'; import Submit from './Submit';
import Media from 'react-media'; import Media from 'react-media';
import DesktopChallengeMenu from './DesktopChallengeMenu'; import DesktopChallengeMenu from './DesktopChallengeMenu';
import { RENDER_ICO } from '../../utils/globals'; import { CHALLENGE_SECTIONS, RENDER_ICO } from '../../utils/globals';
import textIco from '../../assets/text_ico.svg'; import textIco from '../../assets/text_ico.svg';
import getChallengeInfo from '../../api/getChallengeInfo'; import getChallengeInfo from '../../api/getChallengeInfo';
import Loading from '../generic/Loading'; import Loading from '../generic/Loading';
@ -31,7 +31,7 @@ const Challenge = (props) => {
const sectionRender = () => { const sectionRender = () => {
switch (props.section) { switch (props.section) {
case 0: case CHALLENGE_SECTIONS.LEADERBOARD:
return ( return (
<Leaderboard <Leaderboard
challengeName={challengeName} challengeName={challengeName}
@ -39,11 +39,11 @@ const Challenge = (props) => {
user={user} user={user}
/> />
); );
case 1: case CHALLENGE_SECTIONS.ALL_ENTRIES:
return ( return (
<AllEntries challengeName={challengeName} setLoading={setLoading} /> <AllEntries challengeName={challengeName} setLoading={setLoading} />
); );
case 2: case CHALLENGE_SECTIONS.README:
return ( return (
<Readme <Readme
challengeName={challengeName} challengeName={challengeName}
@ -52,7 +52,7 @@ const Challenge = (props) => {
deadline={challenge.deadline} deadline={challenge.deadline}
/> />
); );
case 3: case CHALLENGE_SECTIONS.HOW_TO:
return ( return (
<HowTo <HowTo
popUpMessageHandler={props.popUpMessageHandler} popUpMessageHandler={props.popUpMessageHandler}
@ -60,9 +60,9 @@ const Challenge = (props) => {
user={user} user={user}
/> />
); );
case 4: case CHALLENGE_SECTIONS.MY_ENTRIES:
return <MyEntries challengeName={challengeName} />; return <MyEntries challengeName={challengeName} />;
case 5: case CHALLENGE_SECTIONS.SUBMIT:
return <Submit challengeName={challengeName} setLoading={setLoading} />; return <Submit challengeName={challengeName} setLoading={setLoading} />;
default: default:
return ( return (

View File

@ -5,6 +5,10 @@ import { H3 } from '../../utils/fonts';
import PropsTypes from 'prop-types'; import PropsTypes from 'prop-types';
import KeyCloakService from '../../services/KeyCloakService'; import KeyCloakService from '../../services/KeyCloakService';
import { Link } from 'react-router-dom'; import { Link } from 'react-router-dom';
import {
MENU_CHALEENGE_SECTIONS_WITH_LOGIN,
MENU_CHALLENGE_SECTIONS_NO_LOGIN,
} from '../../utils/globals';
const DesktopChallengeMenuStyle = styled(FlexColumn)` const DesktopChallengeMenuStyle = styled(FlexColumn)`
justify-content: flex-start; justify-content: flex-start;
@ -27,6 +31,7 @@ const Option = styled(FlexColumn)`
cursor: pointer; cursor: pointer;
background-color: ${({ theme, active }) => background-color: ${({ theme, active }) =>
active ? theme.colors.green05 : theme.colors.white}; active ? theme.colors.green05 : theme.colors.white};
text-decoration: none;
* { * {
cursor: pointer; cursor: pointer;
@ -38,16 +43,9 @@ const Option = styled(FlexColumn)`
`; `;
const DesktopChallengeMenu = (props) => { const DesktopChallengeMenu = (props) => {
let options = ['Leaderboard', 'All entries', 'Readme', 'How to']; let options = MENU_CHALLENGE_SECTIONS_NO_LOGIN;
if (KeyCloakService.isLoggedIn()) if (KeyCloakService.isLoggedIn())
options = [ options = MENU_CHALEENGE_SECTIONS_WITH_LOGIN;
'Leaderboard',
'All entries',
'Readme',
'How to',
'My entries',
'Submit',
];
return ( return (
<DesktopChallengeMenuStyle> <DesktopChallengeMenuStyle>
{options.map((option, index) => { {options.map((option, index) => {

View File

@ -4,6 +4,12 @@ import styled from 'styled-components';
import { Medium } from '../../utils/fonts'; import { Medium } from '../../utils/fonts';
import PropsTypes from 'prop-types'; import PropsTypes from 'prop-types';
import KeyCloakService from '../../services/KeyCloakService'; import KeyCloakService from '../../services/KeyCloakService';
import {
CHALLENGE_SECTIONS,
MENU_CHALEENGE_SECTIONS_WITH_LOGIN,
MENU_CHALLENGE_SECTIONS_NO_LOGIN,
} from '../../utils/globals';
import { Link } from 'react-router-dom';
const MenuOption = styled(Medium)` const MenuOption = styled(Medium)`
cursor: pointer; cursor: pointer;
@ -17,54 +23,83 @@ const MenuOption = styled(Medium)`
`; `;
const MobileChallengeMenu = (props) => { const MobileChallengeMenu = (props) => {
let options = ['Leaderboard', 'Readme', 'How to']; let options = MENU_CHALLENGE_SECTIONS_NO_LOGIN;
if (KeyCloakService.isLoggedIn()) if (KeyCloakService.isLoggedIn())
options = ['Leaderboard', 'Readme', 'How to', 'My entries', 'Submit']; options = MENU_CHALEENGE_SECTIONS_WITH_LOGIN;
const renderLoggedOptions = () => { const renderLoggedOptions = () => {
if (options.length > 3) {
return ( return (
<FlexRow gap="36px"> <FlexRow gap="36px">
<MenuOption <MenuOption
as="button" as={Link}
active={3 === props.section} active={CHALLENGE_SECTIONS.HOW_TO === props.section}
to={`${props.challengeName}/${options[3].toLowerCase()}`} to={`/challenge/${props.challengeName}/${options[
CHALLENGE_SECTIONS.HOW_TO
]
.toLowerCase()
.replace(' ', '')}`}
> >
{options[3]} {options[CHALLENGE_SECTIONS.HOW_TO]}
</MenuOption> </MenuOption>
<MenuOption <MenuOption
as="button" as={Link}
active={4 === props.section} active={CHALLENGE_SECTIONS.MY_ENTRIES === props.section}
to={`${props.challengeName}/${options[4].toLowerCase()}`} to={`/challenge/${props.challengeName}/${options[
CHALLENGE_SECTIONS.MY_ENTRIES
]
.toLowerCase()
.replace(' ', '')}`}
> >
{options[4]} {options[CHALLENGE_SECTIONS.MY_ENTRIES]}
</MenuOption>
<MenuOption
as={Link}
active={CHALLENGE_SECTIONS.SUBMIT === props.section}
to={`/challenge/${props.challengeName}/${options[
CHALLENGE_SECTIONS.SUBMIT
]
.toLowerCase()
.replace(' ', '')}`}
>
{options[CHALLENGE_SECTIONS.SUBMIT]}
</MenuOption> </MenuOption>
</FlexRow> </FlexRow>
); );
}
}; };
return ( return (
<> <>
<FlexRow gap="32px"> <FlexRow gap="32px">
<MenuOption <MenuOption
as="button" as={Link}
active={0 === props.section} active={CHALLENGE_SECTIONS.LEADERBOARD === props.section}
to={`${props.challengeName}/${options[0].toLowerCase()}`} to={`/challenge/${props.challengeName}/${options[
CHALLENGE_SECTIONS.LEADERBOARD
]
.toLowerCase()
.replace(' ', '')}`}
> >
{options[0]} {options[CHALLENGE_SECTIONS.LEADERBOARD]}
</MenuOption> </MenuOption>
<MenuOption <MenuOption
as="button" as={Link}
active={1 === props.section} active={CHALLENGE_SECTIONS.ALL_ENTRIES === props.section}
to={`${props.challengeName}/${options[1].toLowerCase()}`} to={`/challenge/${props.challengeName}/${options[
CHALLENGE_SECTIONS.ALL_ENTRIES
]
.toLowerCase()
.replace(' ', '')}`}
> >
{options[1]} {options[CHALLENGE_SECTIONS.ALL_ENTRIES]}
</MenuOption> </MenuOption>
<MenuOption <MenuOption
as="button" as={Link}
active={2 === props.section} active={CHALLENGE_SECTIONS.README === props.section}
to={`${props.challengeName}/${options[2].toLowerCase()}`} to={`/challenge/${props.challengeName}/${options[
CHALLENGE_SECTIONS.README
]
.toLowerCase()
.replace(' ', '')}`}
> >
{options[2]} {options[CHALLENGE_SECTIONS.README]}
</MenuOption> </MenuOption>
</FlexRow> </FlexRow>
{renderLoggedOptions()} {renderLoggedOptions()}

View File

@ -132,6 +132,27 @@ const MyEntries = (props) => {
{!loading ? ( {!loading ? (
<> <>
<Search searchQueryHandler={searchQueryHandler} /> <Search searchQueryHandler={searchQueryHandler} />
<Table
challengeName={props.challengeName}
headerElements={getMyEntriesHeader()}
possibleMetrics={getPossibleMetrics()}
gridTemplateColumns={
'1fr ' + '4fr '.repeat(getMyEntriesHeader().length - 1)
}
staticColumnElements={[
{ name: 'id', format: null, order: 1, align: 'left' },
{ name: 'when', format: RENDER_WHEN, order: 3, align: 'right' },
]}
iterableColumnElement={{
name: 'evaluations',
format: EVALUATIONS_FORMAT,
order: 2,
align: 'left',
}}
pageNr={pageNr}
elements={myEntries}
sortByUpdate={sortByUpdate}
/>
<Pager <Pager
pageNr={pageNr} pageNr={pageNr}
width="48px" width="48px"
@ -176,7 +197,6 @@ const MyEntries = (props) => {
format: EVALUATIONS_FORMAT, format: EVALUATIONS_FORMAT,
order: 2, order: 2,
align: 'left', align: 'left',
mobileRender,
}} }}
pageNr={pageNr} pageNr={pageNr}
elements={myEntries} elements={myEntries}

View File

@ -4,7 +4,6 @@ import {Body, H2} from '../../utils/fonts';
import Media from 'react-media'; import Media from 'react-media';
import theme from '../../utils/theme'; import theme from '../../utils/theme';
import getChallengeFullDescription from '../../api/getChallengeFullDescription'; import getChallengeFullDescription from '../../api/getChallengeFullDescription';
// import {markdown} from 'markdown';
import styled from 'styled-components'; import styled from 'styled-components';
import InfoList from '../generic/InfoList'; import InfoList from '../generic/InfoList';
import Loading from '../generic/Loading'; import Loading from '../generic/Loading';
@ -69,7 +68,11 @@ const Readme = (props) => {
const [loading, setLoading] = React.useState(true); const [loading, setLoading] = React.useState(true);
React.useEffect(() => { React.useEffect(() => {
getChallengeFullDescription(setFullDescription, setLoading, props.challengeName); getChallengeFullDescription(
setFullDescription,
setLoading,
props.challengeName
);
}, [props.challengeName]); }, [props.challengeName]);
const parseMarkdownResponse = (response) => { const parseMarkdownResponse = (response) => {
@ -91,77 +94,50 @@ const Readme = (props) => {
const mobileRender = () => { const mobileRender = () => {
return ( return (
<FlexColumn as='section' padding='20px' gap='24px'> <FlexColumn as="section" padding="20px" gap="24px">
<FlexColumn gap='12px' alignmentX='flex-start'> <FlexColumn gap="12px" alignmentX="flex-start">
<H2 as='h2'> <H2 as="h2">Info</H2>
Info <InfoList
</H2> iconsSize="24px"
<InfoList iconsSize='24px' metric={props.metric} deadline={props.deadline}/> metric={props.metric}
deadline={props.deadline}
/>
</FlexColumn> </FlexColumn>
<FlexColumn alignmentX='flex-start' maxWidth='260px'> <FlexColumn alignmentX="flex-start" maxWidth="260px">
{/* <H2 as='h2'> <ReadmeStyle
Description as={fullDescription ? 'article' : 'p'}
</H2> */} dangerouslySetInnerHTML={{
<ReadmeStyle as={fullDescription ? 'article' : 'p'} dangerouslySetInnerHTML={{
__html: fullDescription __html: fullDescription
? parseMarkdownResponse(fullDescription) : props.description ? parseMarkdownResponse(fullDescription)
}}/> : props.description,
}}
/>
</FlexColumn> </FlexColumn>
{/* <FlexColumn gap='16px' alignmentX='flex-start' maxWidth='260px'>
<H2 as='h2'>
Baseline
</H2>
<FlexColumn gap='12px' alignmentX='flex-start'>
<Body as='p'>
In metus ex, venenatis quis risus eget, sodales venenatis nibh. Sed ullamcorper leo non nunc
euismod, id faucibus justo finibus. Nullam malesuada eros quam, eu lobortis leo feugiat non.
</Body>
<Body as='p'>
See notebook&nbsp;
<Medium as='a' href='#' display='inline-block' cursor='pointer'>
here.
</Medium>
</Body>
</FlexColumn>
</FlexColumn> */}
</FlexColumn> </FlexColumn>
); );
}; };
const desktopRender = () => { const desktopRender = () => {
return ( return (
<FlexColumn as='section' padding='20px' gap='64px'> <FlexColumn as="section" padding="20px" gap="64px">
<FlexColumn gap='32px'> <FlexColumn gap="32px">
<H2 as='h2'> <H2 as="h2">Info</H2>
Info <InfoList
</H2> iconsSize="32px"
<InfoList iconsSize='32px' metric={props.metric} deadline={props.deadline}/> metric={props.metric}
deadline={props.deadline}
/>
</FlexColumn> </FlexColumn>
<FlexColumn alignmentX='flex-start' width='80%' maxWidth='1200px'> <FlexColumn alignmentX="flex-start" width="80%" maxWidth="1200px">
{/* <H2 as='h2'> <ReadmeStyle
Description as={fullDescription ? 'section' : 'p'}
</H2> */} dangerouslySetInnerHTML={{
<ReadmeStyle as={fullDescription ? 'section' : 'p'} dangerouslySetInnerHTML={{ __html: fullDescription
__html: fullDescription ? parseMarkdownResponse(fullDescription) : props.description ? parseMarkdownResponse(fullDescription)
}}/> : props.description,
}}
/>
</FlexColumn> </FlexColumn>
{/* <FlexColumn gap='16px' alignmentX='flex-start' width='80%' maxWidth='1000px'>
<H2 as='h2'>
Baseline
</H2>
<FlexColumn gap='12px' alignmentX='flex-start'>
<Body as='p'>
In metus ex, venenatis quis risus eget, sodales venenatis nibh. Sed ullamcorper leo non nunc
euismod, id faucibus justo finibus. Nullam malesuada eros quam, eu lobortis leo feugiat non.
</Body>
<Body as='p'>
See notebook&nbsp;
<Medium as='a' href='#' display='inline-block' cursor='pointer'>
here.
</Medium>
</Body>
</FlexColumn>
</FlexColumn> */}
</FlexColumn> </FlexColumn>
); );
}; };

View File

@ -18,6 +18,30 @@ const ROOT_URL = window.location.origin;
const LOGIN_REQUIRED_PAGES = ['myentries', 'submit']; const LOGIN_REQUIRED_PAGES = ['myentries', 'submit'];
const MENU_CHALLENGE_SECTIONS_NO_LOGIN = [
'Leaderboard',
'All entries',
'Readme',
'How to',
];
const MENU_CHALEENGE_SECTIONS_WITH_LOGIN = [
'Leaderboard',
'All entries',
'Readme',
'How to',
'My entries',
'Submit',
];
const CHALLENGE_SECTIONS = {
LEADERBOARD: 0,
ALL_ENTRIES: 1,
README: 2,
HOW_TO: 3,
MY_ENTRIES: 4,
SUBMIT: 5,
};
const MINI_DESCRIPTION_RENDER = (description) => { const MINI_DESCRIPTION_RENDER = (description) => {
if (description) { if (description) {
if (description.length <= MINI_DESCRIPTION_LENGTH) return description; if (description.length <= MINI_DESCRIPTION_LENGTH) return description;
@ -86,6 +110,9 @@ export {
POLICY_PRIVACY_PAGE, POLICY_PRIVACY_PAGE,
ROOT_URL, ROOT_URL,
LOGIN_REQUIRED_PAGES, LOGIN_REQUIRED_PAGES,
CHALLENGE_SECTIONS,
MENU_CHALLENGE_SECTIONS_NO_LOGIN,
MENU_CHALEENGE_SECTIONS_WITH_LOGIN,
MINI_DESCRIPTION_RENDER, MINI_DESCRIPTION_RENDER,
RENDER_ICO, RENDER_ICO,
CALC_PAGES, CALC_PAGES,