From ecc6e06e92f23b16817985e87b2e997b754f527d Mon Sep 17 00:00:00 2001 From: Noah Loomans Date: Thu, 28 Jun 2018 14:04:27 +0200 Subject: Move setWeek to an action --- .../components/presentational/WeekSelector.js | 81 ++++++++++++++++++++++ .../components/presentational/WeekSelector.scss | 40 +++++++++++ 2 files changed, 121 insertions(+) create mode 100644 src/client/react/components/presentational/WeekSelector.js create mode 100644 src/client/react/components/presentational/WeekSelector.scss (limited to 'src/client/react/components/presentational') diff --git a/src/client/react/components/presentational/WeekSelector.js b/src/client/react/components/presentational/WeekSelector.js new file mode 100644 index 0000000..9f69121 --- /dev/null +++ b/src/client/react/components/presentational/WeekSelector.js @@ -0,0 +1,81 @@ +/** + * Copyright (C) 2018 Noah Loomans + * + * This file is part of rooster.hetmml.nl. + * + * rooster.hetmml.nl is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * rooster.hetmml.nl is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with rooster.hetmml.nl. If not, see . + * + */ + +import React from 'react'; +import PropTypes from 'prop-types'; +import moment from 'moment'; + +import ArrowBackIcon from 'react-icons/lib/md/arrow-back'; +import ArrowForwardIcon from 'react-icons/lib/md/arrow-forward'; + +import purifyWeek from '../../lib/purifyWeek'; + +import './WeekSelector.scss'; + +class WeekSelector extends React.Component { + static propTypes = { + // react-router + week: PropTypes.number.isRequired, + setWeek: PropTypes.func.isRequired, + }; + + getWeekText() { + const { week } = this.props; + + const currentWeek = moment().week(); + + switch (week) { + case currentWeek: + return `Huidige week • ${week}`; + case currentWeek + 1: + return `Volgende week • ${week}`; + case currentWeek - 1: + return `Vorige week • ${week}`; + default: + return `Week ${week}`; + } + } + + updateWeek(change) { + const { week, setWeek } = this.props; + const newWeek = purifyWeek(week + change); + + const isCurrentWeek = moment().week() === newWeek; + setWeek(isCurrentWeek ? undefined : newWeek); + } + + render() { + return ( +
+ +
+ {this.getWeekText()} +
+ +
+ ); + } +} + +export default WeekSelector; diff --git a/src/client/react/components/presentational/WeekSelector.scss b/src/client/react/components/presentational/WeekSelector.scss new file mode 100644 index 0000000..dd71fea --- /dev/null +++ b/src/client/react/components/presentational/WeekSelector.scss @@ -0,0 +1,40 @@ +.WeekSelector { + display: flex; + padding: 8px; + padding-bottom: 0; + background-color: #F44336; + color: white; + align-items: center; + + .text { + flex-grow: 1; + text-align: center; + } + + button { + background-color: initial; + border: initial; + color: inherit; + padding: 8px; + border-radius: 4px; + + svg { + font-size: 2em; + } + + &:focus { + background-color: #D32F2F; + outline: none; + } + + &:active { + background-color: #B81111; + outline: none; + } + + &::-moz-focus-inner { + /* Remove the dotted line outline from Firefox */ + border: 0; + } + } +} -- cgit v1.1