Cleanup a bit more :)

This commit is contained in:
rui hildt 2020-08-22 01:46:39 +02:00
parent 62e85f91d1
commit a52bc8f7ab
4 changed files with 24 additions and 24 deletions

View File

@ -7,7 +7,6 @@ import scrollGrid from '@fullcalendar/scrollgrid';
import { DateTime } from 'luxon'; import { DateTime } from 'luxon';
import { Icon, IconButton } from 'rsuite'; import { Icon, IconButton } from 'rsuite';
// FullCalendar props // FullCalendar props
const dayMinWidth = 110; const dayMinWidth = 110;
const slotMinTime = '08:00:00'; const slotMinTime = '08:00:00';
@ -104,9 +103,9 @@ export default function IntervalSelector({
</p> </p>
<IconButton <IconButton
className={'event-close'} className={'event-close'}
icon={<Icon icon='close' />} icon={<Icon icon='close' />}
appearance="default" appearance='default'
size="xs" size='xs'
circle circle
onClick={() => handleClick(eventStart, eventEnd)} onClick={() => handleClick(eventStart, eventEnd)}
></IconButton> ></IconButton>

View File

@ -1,4 +1,4 @@
import React, {useState} from 'react'; import React, { useState } from 'react';
import { InputGroup, Icon } from 'rsuite'; import { InputGroup, Icon } from 'rsuite';
import { durations } from '../../assets/data/durations'; import { durations } from '../../assets/data/durations';
@ -11,11 +11,13 @@ export default function DurationSelector() {
setDurationIdx(durationIdx + 1); setDurationIdx(durationIdx + 1);
} }
}; };
const handleDecrement = () => { const handleDecrement = () => {
if (durationIdx > 0) { if (durationIdx > 0) {
setDurationIdx(durationIdx - 1); setDurationIdx(durationIdx - 1);
} }
}; };
return ( return (
<InputGroup style={{ background: 'white' }}> <InputGroup style={{ background: 'white' }}>
<InputGroup.Button onClick={handleDecrement}> <InputGroup.Button onClick={handleDecrement}>

View File

@ -3,22 +3,20 @@ import { Divider, Icon, IconButton } from 'rsuite';
export default function SelectedDates({ datesList, handleDelete }) { export default function SelectedDates({ datesList, handleDelete }) {
return ( return (
<> <ul>
<ul> {datesList.map((date) => (
{datesList.map((date) => ( <li key={date}>
<li key={date}> {date.setLocale('en-gb').toLocaleString()}
{date.setLocale('en-gb').toLocaleString()} {` (${date.weekdayShort})`}
{` (${date.weekdayShort})`} <Divider vertical />
<Divider vertical /> <IconButton
<IconButton icon={<Icon icon='close' />}
icon={<Icon icon='close' />} appearance='subtle'
appearance='subtle' circle
circle onClick={() => handleDelete(date)}
onClick={() => handleDelete(date)} ></IconButton>
></IconButton> </li>
</li> ))}
))} </ul>
</ul>
</>
); );
} }

View File

@ -6,13 +6,14 @@ import { NavBar } from '../components';
export default function Home() { export default function Home() {
const { authToken } = useAuth(); const { authToken } = useAuth();
return ( return (
<> <>
<NavBar title='Meeting Planner' /> <NavBar title='Meeting Planner' />
<Panel header={<h3>Home</h3>} bordered > <Panel header={<h3>Home</h3>} bordered>
<p>This will be the home page</p> <p>This will be the home page</p>
<p>{authToken}</p> <p>{authToken}</p>
</Panel> </Panel>
</> </>
); );
} }