From 91a40424443bb5522e9350305ed452c9fae47a1b Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Sat, 4 Feb 2023 18:22:18 +0100 Subject: departure board: add regional / local transit switcher; move autostop to bottom --- lib/DBInfoscreen/Controller/Stationboard.pm | 27 +++++++++++++++++++++++++++ templates/layouts/app.html.ep | 11 ++++++++++- 2 files changed, 37 insertions(+), 1 deletion(-) diff --git a/lib/DBInfoscreen/Controller/Stationboard.pm b/lib/DBInfoscreen/Controller/Stationboard.pm index bf986d3..39b3a3d 100644 --- a/lib/DBInfoscreen/Controller/Stationboard.pm +++ b/lib/DBInfoscreen/Controller/Stationboard.pm @@ -456,6 +456,13 @@ sub handle_request { results => [ $status->results ], station_ds100 => ( $status->station ? $status->station->{ds100} : undef ), + station_eva => ( + $status->station + ? ( $status->station->{uic} // $status->station->{eva} ) + : undef + ), + station_evas => + ( $status->station ? $status->station->{evas} : [] ), station_name => ( $status->station ? $status->station->{name} : $station ), }; @@ -1650,8 +1657,28 @@ sub handle_result { } else { my $station_name = $data->{station_name} // $self->stash('station'); + my ( $api_link, $api_text, $api_icon ); + my $params = $self->req->params->clone; + $params->param( hafas => not $params->param('hafas') ); + if ( $params->param('hafas') ) { + $api_link = '/' . $data->{station_eva} . '?' . $params->to_string; + $api_text = 'lol'; + $api_icon = 'train'; + } + else { + my $iris_eva = List::Util::min grep { $_ >= 1000000 } + @{ $data->{station_evas} // [] }; + if ($iris_eva) { + $api_link = '/' . $iris_eva . '?' . $params->to_string; + $api_text = 'lol'; + $api_icon = 'directions_bus'; + } + } $self->render( $template, + api_link => $api_link, + api_text => $api_text, + api_icon => $api_icon, departures => \@departures, ice_type => $self->app->ice_type_map, station => $station_name, diff --git a/templates/layouts/app.html.ep b/templates/layouts/app.html.ep index 0992a43..e406570 100644 --- a/templates/layouts/app.html.ep +++ b/templates/layouts/app.html.ep @@ -83,6 +83,11 @@ % } @@ -140,6 +144,11 @@ Bitte eine Station aus der Liste auswählen
%= submit_button 'Abfahrtsmonitor'
+ % if (stash('input')) { + + % }
Weitere Einstellungen
-- cgit v1.2.3