From d9d3aac79200ca7d896d753c897e1651517ecf36 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Sun, 19 May 2019 10:32:57 +0200 Subject: allow checkin from connections view --- lib/Travelynx.pm | 19 +++++++--- lib/Travelynx/Controller/Traveling.pm | 16 ++++++++- public/service-worker.js | 26 +++++++------- public/static/css/material-icons.css | 8 ++--- public/static/js/travelynx-actions.js | 1 + public/static/js/travelynx-actions.min.js | 2 +- public/static/manifest.json | 12 +++---- public/static/v22 | 1 - public/static/v24 | 1 + templates/_checked_in.html.ep | 30 +--------------- templates/_checked_out.html.ep | 5 +++ templates/_connections.html.ep | 60 +++++++++++++++++++++++++++++++ templates/layouts/default.html.ep | 2 +- 13 files changed, 122 insertions(+), 61 deletions(-) delete mode 120000 public/static/v22 create mode 120000 public/static/v24 create mode 100644 templates/_connections.html.ep diff --git a/lib/Travelynx.pm b/lib/Travelynx.pm index 9e00d3f..ff75898 100755 --- a/lib/Travelynx.pm +++ b/lib/Travelynx.pm @@ -175,6 +175,12 @@ sub startup { } ); + $self->helper( + 'now' => sub { + return DateTime->now( time_zone => 'Europe/Berlin' ); + } + ); + $self->helper( 'numify_skipped_stations' => sub { my ( $self, $count ) = @_; @@ -1489,7 +1495,7 @@ sub startup { my $uid = $opt{uid} // $self->current_user->{id}; my $threshold = $opt{threshold} // DateTime->now( time_zone => 'Europe/Berlin' ) - ->subtract( weeks => 60 ); + ->subtract( weeks => 6 ); my $db = $opt{db} // $self->pg->db; my $journey = $db->select( 'in_transit', ['checkout_station_id'], @@ -1504,7 +1510,7 @@ sub startup { }, { limit => 1, - order_by => { -desc => 'real_dep_ts' } + order_by => { -desc => 'real_departure' } } )->hash; } @@ -1547,11 +1553,14 @@ sub startup { } my @destinations = $self->get_connection_targets(%opt); - my $stationboard - = $self->get_departures( $status->{arr_ds100}, 0, 60 ); - @destinations = grep { $_ ne $status->{dep_name} } @destinations; + if ( not @destinations ) { + return; + } + + my $stationboard + = $self->get_departures( $status->{arr_ds100}, 0, 60 ); if ( $stationboard->{errstr} ) { return; } diff --git a/lib/Travelynx/Controller/Traveling.pm b/lib/Travelynx/Controller/Traveling.pm index 3d2bb0c..4e4b069 100755 --- a/lib/Travelynx/Controller/Traveling.pm +++ b/lib/Travelynx/Controller/Traveling.pm @@ -145,6 +145,7 @@ sub log_action { my ( $train, $error ) = $self->checkin( $params->{station}, $params->{train} ); + my $destination = $params->{dest}; if ($error) { $self->render( @@ -154,7 +155,7 @@ sub log_action { }, ); } - else { + elsif ( not $destination ) { $self->render( json => { success => 1, @@ -162,6 +163,19 @@ sub log_action { }, ); } + else { + # Silently ignore errors -- if they are permanent, the user will see + # them when selecting the destination manually. + my ( $still_checked_in, undef ) + = $self->checkout( $destination, 0 ); + my $station_link = '/s/' . $destination; + $self->render( + json => { + success => 1, + redirect_to => $still_checked_in ? '/' : $station_link, + }, + ); + } } elsif ( $params->{action} eq 'checkout' ) { my ( $still_checked_in, $error ) diff --git a/public/service-worker.js b/public/service-worker.js index 5a8ac94..0befced 100644 --- a/public/service-worker.js +++ b/public/service-worker.js @@ -1,19 +1,19 @@ -const CACHE_NAME = 'static-cache-v23'; +const CACHE_NAME = 'static-cache-v24'; const FILES_TO_CACHE = [ '/favicon.ico', '/offline.html', - '/static/v23/css/light.min.css', - '/static/v23/css/dark.min.css', - '/static/v23/css/material-icons.css', - '/static/v23/css/local.css', - '/static/v23/fonts/MaterialIcons-Regular.woff2', - '/static/v23/fonts/MaterialIcons-Regular.woff', - '/static/v23/fonts/MaterialIcons-Regular.ttf', - '/static/v23/js/jquery-3.4.1.min.js', - '/static/v23/js/materialize.min.js', - '/static/v23/js/travelynx-actions.min.js', - '/static/v23/js/autocomplete.min.js', - '/static/v23/js/geolocation.min.js', + '/static/v24/css/light.min.css', + '/static/v24/css/dark.min.css', + '/static/v24/css/material-icons.css', + '/static/v24/css/local.css', + '/static/v24/fonts/MaterialIcons-Regular.woff2', + '/static/v24/fonts/MaterialIcons-Regular.woff', + '/static/v24/fonts/MaterialIcons-Regular.ttf', + '/static/v24/js/jquery-3.4.1.min.js', + '/static/v24/js/materialize.min.js', + '/static/v24/js/travelynx-actions.min.js', + '/static/v24/js/autocomplete.min.js', + '/static/v24/js/geolocation.min.js', ]; self.addEventListener('install', (evt) => { diff --git a/public/static/css/material-icons.css b/public/static/css/material-icons.css index 1aa0681..18625d5 100644 --- a/public/static/css/material-icons.css +++ b/public/static/css/material-icons.css @@ -2,12 +2,12 @@ font-family: 'Material Icons'; font-style: normal; font-weight: 400; - src: url(/static/v23/fonts/MaterialIcons-Regular.eot); /* For IE6-8 */ + src: url(/static/v24/fonts/MaterialIcons-Regular.eot); /* For IE6-8 */ src: local('Material Icons'), local('MaterialIcons-Regular'), - url(/static/v23/fonts/MaterialIcons-Regular.woff2) format('woff2'), - url(/static/v23/fonts/MaterialIcons-Regular.woff) format('woff'), - url(/static/v23/fonts/MaterialIcons-Regular.ttf) format('truetype'); + url(/static/v24/fonts/MaterialIcons-Regular.woff2) format('woff2'), + url(/static/v24/fonts/MaterialIcons-Regular.woff) format('woff'), + url(/static/v24/fonts/MaterialIcons-Regular.ttf) format('truetype'); } .material-icons { diff --git a/public/static/js/travelynx-actions.js b/public/static/js/travelynx-actions.js index b4a6b90..deb010a 100644 --- a/public/static/js/travelynx-actions.js +++ b/public/static/js/travelynx-actions.js @@ -84,6 +84,7 @@ function tvly_reg_handlers() { action: 'checkin', station: link.data('station'), train: link.data('train'), + dest: link.data('dest'), }; tvly_run(link, req); }); diff --git a/public/static/js/travelynx-actions.min.js b/public/static/js/travelynx-actions.min.js index 751800e..9813f84 100644 --- a/public/static/js/travelynx-actions.min.js +++ b/public/static/js/travelynx-actions.min.js @@ -1 +1 @@ -var j_duration=0,j_arrival=0;function upd_journey_data(){$(".countdown").each(function(){j_duration=$(this).data("duration"),j_arrival=$(this).data("arrival")})}function upd_countdown(){var t=Date.now()/1e3;0
');a.hide(),a.after(i),$.post("/action",t,function(t){t.success?$(location).attr("href",t.redirect_to):(M.toast({html:n+" "+t.error}),i.remove(),e&&e(),a.append(" "+n),a.show())})}function tvly_update(){$.get("/ajax/status_card.html",function(t){$(".statuscol").html(t),tvly_reg_handlers(),upd_journey_data(),setTimeout(tvly_update,4e4)}).fail(function(){$(".sync-failed-marker").css("display","block"),upd_countdown(),setTimeout(tvly_update,5e3)})}function tvly_update_public(){var t;$(".publicstatuscol").each(function(){t=$(this).data("user")}),$.get("/ajax/status/"+t+".html",function(t){$(".publicstatuscol").html(t),upd_journey_data(),setTimeout(tvly_update_public,4e4)}).fail(function(){$(".sync-failed-marker").css("display","block"),upd_countdown(),setTimeout(tvly_update_public,5e3)})}function tvly_journey_progress(){var t=Date.now()/1e3,a=0;00&&(j_arrival>t?$(".countdown").text("Ankunft in "+Math.round((j_arrival-t)/60)+" Minuten"):$(".countdown").text("Ziel erreicht"))}function tvly_run(t,a,e){var n='error',i=$('
');t.hide(),t.after(i),$.post("/action",a,function(a){a.success?$(location).attr("href",a.redirect_to):(M.toast({html:n+" "+a.error}),i.remove(),e&&e(),t.append(" "+n),t.show())})}function tvly_update(){$.get("/ajax/status_card.html",function(t){$(".statuscol").html(t),tvly_reg_handlers(),upd_journey_data(),setTimeout(tvly_update,4e4)}).fail(function(){$(".sync-failed-marker").css("display","block"),upd_countdown(),setTimeout(tvly_update,5e3)})}function tvly_update_public(){var t;$(".publicstatuscol").each(function(){t=$(this).data("user")}),$.get("/ajax/status/"+t+".html",function(t){$(".publicstatuscol").html(t),upd_journey_data(),setTimeout(tvly_update_public,4e4)}).fail(function(){$(".sync-failed-marker").css("display","block"),upd_countdown(),setTimeout(tvly_update_public,5e3)})}function tvly_journey_progress(){var t=Date.now()/1e3,a=0;j_duration>0&&(a=1-(j_arrival-t)/j_duration,a<0&&(a=0),a>1&&(a=1),$(".progress .determinate").css("width",100*a+"%"),setTimeout(tvly_journey_progress,5e3))}function tvly_reg_handlers(){$(".action-checkin").click(function(){var t=$(this);tvly_run(t,{action:"checkin",station:t.data("station"),train:t.data("train"),dest:t.data("dest")})}),$(".action-checkout").click(function(){var t=$(this),a={action:"checkout",station:t.data("station"),force:t.data("force")};tvly_run(t,a,function(){t.append(" – Ohne Echtzeitdaten auschecken?"),t.data("force",!0)})}),$(".action-undo").click(function(){var t=$(this);tvly_run(t,{action:"undo",undo_id:t.data("id")})}),$(".action-cancelled-from").click(function(){var t=$(this);tvly_run(t,{action:"cancelled_from",station:t.data("station"),train:t.data("train")})}),$(".action-cancelled-to").click(function(){var t=$(this);tvly_run(t,{action:"cancelled_to",station:t.data("station"),force:!0})}),$(".action-delete").click(function(){var t=$(this),a={action:"delete",id:t.data("id"),checkin:t.data("checkin"),checkout:t.data("checkout")};really_delete=confirm("Diese Zugfahrt wirklich löschen? Der Eintrag wird sofort aus der Datenbank entfernt und kann nicht wiederhergestellt werden."),really_delete&&tvly_run(t,a)}),$(".action-share").click(function(){navigator.share&&(shareObj={text:$(this).data("text")},$(this).data("url")&&(shareObj.url=$(this).data("url")),navigator.share(shareObj))}),$(".action-share").length&&!navigator.share&&$(".action-share").css("display","none")}var j_duration=0,j_arrival=0;$(document).ready(function(){tvly_reg_handlers(),$(".statuscol .autorefresh").length&&(upd_journey_data(),setTimeout(tvly_update,4e4),setTimeout(tvly_journey_progress,5e3)),$(".publicstatuscol .autorefresh").length&&(upd_journey_data(),setTimeout(tvly_update_public,4e4),setTimeout(tvly_journey_progress,5e3)),$("a[href]").click(function(){$("nav .preloader-wrapper").addClass("active")})}); diff --git a/public/static/manifest.json b/public/static/manifest.json index 53b23be..ed04b30 100644 --- a/public/static/manifest.json +++ b/public/static/manifest.json @@ -3,27 +3,27 @@ "short_name": "Travelynx", "scope": "/", "icons": [{ - "src": "/static/v23/icons/icon-128x128.png", + "src": "/static/v24/icons/icon-128x128.png", "sizes": "128x128", "type": "image/png" }, { - "src": "/static/v23/icons/icon-144x144.png", + "src": "/static/v24/icons/icon-144x144.png", "sizes": "144x144", "type": "image/png" }, { - "src": "/static/v23/icons/icon-152x152.png", + "src": "/static/v24/icons/icon-152x152.png", "sizes": "152x152", "type": "image/png" }, { - "src": "/static/v23/icons/icon-192x192.png", + "src": "/static/v24/icons/icon-192x192.png", "sizes": "192x192", "type": "image/png" }, { - "src": "/static/v23/icons/icon-256x256.png", + "src": "/static/v24/icons/icon-256x256.png", "sizes": "256x256", "type": "image/png" }, { - "src": "/static/v23/icons/icon-512x512.png", + "src": "/static/v24/icons/icon-512x512.png", "sizes": "512x512", "type": "image/png" }], diff --git a/public/static/v22 b/public/static/v22 deleted file mode 120000 index 945c9b4..0000000 --- a/public/static/v22 +++ /dev/null @@ -1 +0,0 @@ -. \ No newline at end of file diff --git a/public/static/v24 b/public/static/v24 new file mode 120000 index 0000000..945c9b4 --- /dev/null +++ b/public/static/v24 @@ -0,0 +1 @@ +. \ No newline at end of file diff --git a/templates/_checked_in.html.ep b/templates/_checked_in.html.ep index 39bc1e3..d5b14e5 100644 --- a/templates/_checked_in.html.ep +++ b/templates/_checked_in.html.ep @@ -79,35 +79,7 @@ % } % if (defined $journey->{arrival_countdown} and $journey->{arrival_countdown} < (20*60)) { % if (my @connections = get_connecting_trains()) { - Verbindungen -
- % for my $res (@connections) { - % my ($train, $via) = @{$res}; - - - - - - % } -
<%= $train->line %><%= $via %><%= $train->departure->strftime('%H:%M') %> - % if ($train->departure_delay) { - %= sprintf('(%+d)', $train->departure_delay) - % } -
Gleis <%= $train->platform %>
-
- % for my $res (@connections) { - % my ($train, $via) = @{$res}; - - - - - - % } -
<%= $train->line %><%= $via %><%= $train->departure->strftime('%H:%M') %> - % if ($train->departure_delay) { - %= sprintf('(%+d)', $train->departure_delay) - % } - Gleis <%= $train->platform %>
+ %= include '_connections', connections => \@connections, checkin_from => $journey->{arrival_countdown} < 0 ? $journey->{arr_ds100} : undef; % } % } % if (defined $journey->{arrival_countdown} and $journey->{arrival_countdown} <= 0) { diff --git a/templates/_checked_out.html.ep b/templates/_checked_out.html.ep index 9c7ff48..18b613b 100644 --- a/templates/_checked_out.html.ep +++ b/templates/_checked_out.html.ep @@ -3,6 +3,11 @@ Ausgecheckt

Aus <%= $journey->{train_type} %> <%= $journey->{train_no} %> bis <%= $journey->{arr_name} %>

+ % if (now()->epoch - $journey->{timestamp}->epoch < (30*60)) { + % if (my @connections = get_connecting_trains()) { + %= include '_connections', connections => \@connections, checkin_from => $journey->{arr_ds100}; + % } + % }