Polish and button functionality for traffic info page
This commit is contained in:
parent
3accd7806a
commit
68b6e4e836
@ -3,17 +3,22 @@
|
||||
|
||||
lineName : String (Linjenamnet)
|
||||
finalStop : Stop (Ändhållplats)
|
||||
time : String (Avgångstid)
|
||||
originalTime : String (Ursprunglig Avgångstid)
|
||||
newTime : String (Ny Avgångstid)
|
||||
trafficInfo : String (Trafikinformation)
|
||||
*/
|
||||
|
||||
class Departure {
|
||||
constructor(lineName, finalStop, time, trafficInfo) {
|
||||
constructor(lineName, finalStop, originalTime, trafficInfo) {
|
||||
this.lineName = lineName;
|
||||
this.finalStop = finalStop;
|
||||
this.time = time;
|
||||
this.originalTime = originalTime;
|
||||
this.trafficInfo = trafficInfo;
|
||||
}
|
||||
|
||||
timeUpdate(time) {
|
||||
this.newTime = time;
|
||||
}
|
||||
}
|
||||
|
||||
export default Departure;
|
@ -5,7 +5,7 @@ import './css/MainArea.css';
|
||||
class MainArea extends Component {
|
||||
render() {
|
||||
return (
|
||||
<main>
|
||||
<main style={this.props.style}>
|
||||
{this.props.children}
|
||||
</main>
|
||||
);
|
||||
|
@ -1,4 +1,5 @@
|
||||
import React, { Component } from 'react';
|
||||
import { Link } from 'react-router-dom';
|
||||
|
||||
import './css/TrafficInfo.css';
|
||||
|
||||
@ -6,6 +7,29 @@ import busIcon from '../img/bus.svg';
|
||||
import warningIcon from '../img/warning.svg';
|
||||
|
||||
class TrafficEntry extends Component {
|
||||
state = {
|
||||
expanded: false
|
||||
};
|
||||
|
||||
toggle = () => {
|
||||
if (this.state.expanded)
|
||||
this.collapse();
|
||||
else
|
||||
this.expand();
|
||||
};
|
||||
|
||||
expand = () => {
|
||||
this.setState({
|
||||
expanded: true
|
||||
});
|
||||
};
|
||||
|
||||
collapse = () => {
|
||||
this.setState({
|
||||
expanded: false
|
||||
});
|
||||
};
|
||||
|
||||
render() {
|
||||
let trafficInfo = this.props.departure.trafficInfo;
|
||||
let lineInterference = trafficInfo !== "" && trafficInfo !== null && trafficInfo !== undefined;
|
||||
@ -14,25 +38,40 @@ class TrafficEntry extends Component {
|
||||
<div className="trafficEntry">
|
||||
<div>
|
||||
<div className="timeColumn">
|
||||
<span>{this.props.departure.time}</span>
|
||||
{!lineInterference &&
|
||||
<span>{this.props.departure.originalTime}</span>
|
||||
}
|
||||
{lineInterference &&
|
||||
<>
|
||||
<div style={{display: "flex", flexDirection: "column"}}>
|
||||
<span style={{color: "red", fontWeight: "bold"}}>{this.props.departure.newTime}</span>
|
||||
<span style={{textDecoration: "line-through"}}>{this.props.departure.originalTime}</span>
|
||||
</div>
|
||||
<img src={warningIcon} alt=""></img>
|
||||
</>
|
||||
}
|
||||
</div>
|
||||
<div className="lineColumn">
|
||||
<div>
|
||||
<span className="lineName">{this.props.departure.lineName}</span>
|
||||
<img src={busIcon} alt=""></img>
|
||||
<span className="destination">{this.props.departure.finalStop}</span>
|
||||
<span className="destination">{"Mot " + this.props.departure.finalStop}</span>
|
||||
</div>
|
||||
{lineInterference &&
|
||||
<p>{trafficInfo} <u>Visa mer</u></p>
|
||||
<div className="infoWrapper" onClick={this.toggle}>
|
||||
<p className={`${this.state.expanded ? "expanded" : ""}`}>{trafficInfo}</p>
|
||||
<span style={{display: (this.state.expanded ? "none" : "block") }}><u>Visa mer</u></span>
|
||||
</div>
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{lineInterference &&
|
||||
<button>Hitta annan resväg</button>
|
||||
<Link to={
|
||||
{ pathname: "/travel"
|
||||
, to: this.props.departure.finalStop
|
||||
}
|
||||
}>Hitta annan resväg</Link>
|
||||
}
|
||||
</div>
|
||||
);
|
||||
|
@ -5,10 +5,10 @@ class TripSelector extends Component {
|
||||
return (
|
||||
<form>
|
||||
<label>Från:</label>
|
||||
<input type="text" placeholder="Hållplats/Adress/Plats" />
|
||||
<input type="text" placeholder="Hållplats/Adress/Plats" defaultValue={this.props.from}/>
|
||||
<hr/>
|
||||
<label>Till:</label>
|
||||
<input type="text" placeholder="Hållplats/Adress/Plats" />
|
||||
<input type="text" placeholder="Hållplats/Adress/Plats" defaultValue={this.props.to} />
|
||||
</form>
|
||||
);
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
#bottomMenu {
|
||||
width: 100%;
|
||||
height: 9vh;
|
||||
min-height: 60px;
|
||||
min-height: 70px;
|
||||
background: white;
|
||||
display: flex;
|
||||
justify-content: space-evenly;
|
||||
|
@ -1,3 +1,7 @@
|
||||
button:active {
|
||||
background: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
a:active {
|
||||
background: rgba(0, 0, 0, 0.1);
|
||||
}
|
@ -3,7 +3,7 @@ header {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
padding: 15px 15px 15vh 15px;
|
||||
padding: 15px 15px 12vh 15px;
|
||||
top: 0;
|
||||
background: linear-gradient(90deg, var(--colorVT1), var(--colorVT2));
|
||||
}
|
||||
|
@ -3,6 +3,6 @@ main {
|
||||
flex: 1 1 auto;
|
||||
display: flex;
|
||||
flex-flow: column;
|
||||
justify-content: space-evenly;
|
||||
justify-content: flex-start;
|
||||
overflow: hidden scroll;
|
||||
}
|
@ -14,15 +14,31 @@
|
||||
font-weight: 100;
|
||||
}
|
||||
|
||||
#stopTitle div {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
#stopTitle h1 {
|
||||
font-size: 9vw;
|
||||
}
|
||||
|
||||
#stopTitle h3 {
|
||||
font-size: 5vw;
|
||||
color: var(--colorDiscrete);
|
||||
}
|
||||
|
||||
@media screen and (min-width: 350px) {
|
||||
#stopTitle h1 {
|
||||
font-size: 35px;
|
||||
}
|
||||
|
||||
#stopTitle h3 {
|
||||
font-size: 20px;
|
||||
color: var(--colorDiscrete);
|
||||
}
|
||||
}
|
||||
|
||||
#stopTitle div {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
#stopTitle button {
|
||||
width: auto;
|
||||
height: 100%;
|
||||
|
@ -1,6 +1,7 @@
|
||||
#trafficList {
|
||||
height: 100%;
|
||||
margin-top: 40px;
|
||||
padding-bottom: 40px;
|
||||
background: white;
|
||||
}
|
||||
|
||||
@ -10,8 +11,9 @@
|
||||
justify-content: space-evenly;
|
||||
align-items: center;
|
||||
width: 100vw;
|
||||
padding: 6vw 0;
|
||||
padding: 8vw 0;
|
||||
background: white;
|
||||
font-size: 3.5vw;
|
||||
}
|
||||
|
||||
.trafficEntry div {
|
||||
@ -19,13 +21,25 @@
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-evenly;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
margin-bottom: 2vh;
|
||||
}
|
||||
|
||||
.trafficEntry div:only-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.trafficEntry div:only-child > .timeColumn,
|
||||
.trafficEntry div:only-child > .lineColumn {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.trafficEntry div:only-child > .timeColumn {
|
||||
justify-content: center !important;
|
||||
}
|
||||
|
||||
.trafficEntry div p {
|
||||
text-align: left;
|
||||
font-size: 3.5vw;
|
||||
padding: 3vw 0;
|
||||
padding: 3vh 0 0 0;
|
||||
}
|
||||
|
||||
.trafficEntry div div {
|
||||
@ -33,25 +47,6 @@
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.timeColumn {
|
||||
flex-basis: 15%;
|
||||
justify-content: flex-start;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.timeColumn img {
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
.lineColumn {
|
||||
flex-basis: 75%;
|
||||
}
|
||||
|
||||
.lineColumn img {
|
||||
width: 30px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.trafficEntry div div div {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
@ -59,6 +54,53 @@
|
||||
align-items: flex-end;
|
||||
}
|
||||
|
||||
.timeColumn {
|
||||
flex-basis: 15%;
|
||||
justify-content: space-between !important;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.timeColumn div {
|
||||
align-items: center !important;
|
||||
}
|
||||
|
||||
.timeColumn img {
|
||||
width: 3.5vw;
|
||||
}
|
||||
|
||||
.lineColumn {
|
||||
flex-basis: 75%;
|
||||
max-width: 75%;
|
||||
}
|
||||
|
||||
.lineColumn div {
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
.lineColumn img {
|
||||
width: 7.5vw;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.infoWrapper p {
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
flex-basis: 75%;
|
||||
flex-grow: 1;
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
max-height: 3.5vw;
|
||||
}
|
||||
|
||||
.infoWrapper span {
|
||||
flex-basis: 25%;
|
||||
}
|
||||
|
||||
.expanded {
|
||||
white-space: normal !important;
|
||||
max-height: none !important;
|
||||
}
|
||||
|
||||
.lineName {
|
||||
background: var(--colorLine);
|
||||
color: white;
|
||||
@ -69,11 +111,10 @@
|
||||
}
|
||||
|
||||
.destination {
|
||||
font-size: 100%;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.trafficEntry button {
|
||||
.trafficEntry a {
|
||||
width: 90%;
|
||||
font-size: 4vw;
|
||||
font-weight: bold;
|
||||
@ -81,4 +122,5 @@
|
||||
padding: 4vw 0;
|
||||
border-radius: var(--borderRadius);
|
||||
box-shadow: var(--boxShadow);
|
||||
text-decoration: none;
|
||||
}
|
@ -8,7 +8,7 @@ class Tickets extends Component {
|
||||
return (
|
||||
<>
|
||||
<Header title="Biljetter" />
|
||||
<MainArea>
|
||||
<MainArea style={{justifyContent: "space-evenly"}}>
|
||||
<p>Du har inga biljetter</p>
|
||||
</MainArea>
|
||||
</>
|
||||
|
@ -19,7 +19,7 @@ class TicketsBuy extends Component {
|
||||
<MenuButton label="Periodbiljett" icon={calendarIcon} />
|
||||
<MenuButton label="Dygnsbiljett" icon={recurringIcon} />
|
||||
</TopMenu>
|
||||
<MainArea>
|
||||
<MainArea style={{justifyContent: "space-evenly"}}>
|
||||
<p>Du har inga tidigare köp</p>
|
||||
</MainArea>
|
||||
</>
|
||||
|
@ -12,20 +12,24 @@ import Departure from "../../classes/Departure.js";
|
||||
|
||||
class TrafficInfo extends Component {
|
||||
render() {
|
||||
/* TEST DATA - TO BE REPLACED */
|
||||
let testStop = new Stop(
|
||||
"Lemmingsgatan",
|
||||
["Läge A", "Läge B", "Läge C"],
|
||||
[
|
||||
new Departure(
|
||||
"519",
|
||||
"Mot Heden",
|
||||
"Heden",
|
||||
"11:59",
|
||||
"Trafikolycka vid Partille Centrum."
|
||||
"Trafikolycka vid Partille Centrum. Olyckan ska ha inträffat i höjd med brandstationen och det är oklart om någon är skadad. Polis på väg. Två av bilarna behöver bärgas från platsen. Inga uppgifter om personskador."
|
||||
),
|
||||
new Departure("58", "Mot Västra Eriksberg", "12:07"),
|
||||
new Departure("58", "Västra Eriksberg", "12:07"),
|
||||
]
|
||||
);
|
||||
|
||||
testStop.departures[0].timeUpdate("16:50");
|
||||
/* TEST DATA - TO BE REPLACED */
|
||||
|
||||
return (
|
||||
<>
|
||||
<Header title="Trafikinfo" />
|
||||
|
@ -13,9 +13,12 @@ class Travel extends Component {
|
||||
<>
|
||||
<Header title="Reseplanering" />
|
||||
<TopMenu>
|
||||
<TripSelector />
|
||||
<TripSelector
|
||||
from={this.props.location.from}
|
||||
to={this.props.location.to}
|
||||
/>
|
||||
</TopMenu>
|
||||
<MainArea>
|
||||
<MainArea style={{justifyContent: "space-evenly"}}>
|
||||
</MainArea>
|
||||
</>
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user