mirror of
https://github.com/derf/travelynx
synced 2024-11-10 06:54:17 +00:00
47f76da4f8
Squashed commit of the following: commit92518024ba
Author: Birte Kristina Friesel <birte.friesel@uos.de> Date: Fri Jul 26 18:39:46 2024 +0200 add_or_update station: remove superfluos 'new backend id := old backend id' commitdf21c20c6e
Author: Birte Kristina Friesel <birte.friesel@uos.de> Date: Fri Jul 26 18:35:51 2024 +0200 revert connection targets min_count to 3 commitbe335cef07
Author: Birte Kristina Friesel <birte.friesel@uos.de> Date: Fri Jul 26 18:20:05 2024 +0200 mention backend selection in API documentation commit9f41828fb4
Author: Birte Kristina Friesel <derf@finalrewind.org> Date: Thu Jul 25 20:19:23 2024 +0200 use_history: not all backends provide route data in departure monitor commit09714b4d89
Author: Birte Kristina Friesel <derf@finalrewind.org> Date: Thu Jul 25 20:11:44 2024 +0200 disambiguation: pass correct hafas parameter commit8cdf1120fc
Author: Birte Kristina Friesel <derf@finalrewind.org> Date: Thu Jul 25 20:11:28 2024 +0200 _checked_in: hide Zuglauf link for non-db checkins commit7455653f54
Author: Birte Kristina Friesel <derf@finalrewind.org> Date: Thu Jul 25 20:01:47 2024 +0200 debug output commitb9cda07f85
Author: Birte Kristina Friesel <derf@finalrewind.org> Date: Thu Jul 25 19:09:07 2024 +0200 fix remaining get_connection_targets / get_connecting_trains_p invocations commit2759d7258c
Author: Birte Kristina Friesel <derf@finalrewind.org> Date: Wed Jul 24 20:50:12 2024 +0200 support non-DB HAFAS backends (WiP)
139 lines
5.4 KiB
Text
139 lines
5.4 KiB
Text
% if (is_user_authenticated()) {
|
|
% my $status = stash('user_status');
|
|
% my $user = stash('user');
|
|
% if (stash('error')) {
|
|
<div class="row">
|
|
<div class="col s12">
|
|
<div class="card caution-color">
|
|
<div class="card-content white-text">
|
|
<span class="card-title">Backend-Fehler</span>
|
|
<p><%= stash('error') %></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
% }
|
|
<div class="row">
|
|
<div class="col s12 statuscol">
|
|
% if ($status->{checked_in}) {
|
|
%= include '_checked_in', journey => $status, journey_visibility => stash('journey_visibility');
|
|
% }
|
|
% elsif ($status->{cancelled}) {
|
|
% if ( @{stash('timeline') // [] } ) {
|
|
%= include '_timeline_link', timeline => stash('timeline')
|
|
% }
|
|
<div class="card info-color">
|
|
<div class="card-content">
|
|
<span class="card-title">Ausfall dokumentieren</span>
|
|
<p>Prinzipiell wärest du nun eingecheckt in
|
|
%= include '_format_train', journey => $status
|
|
ab <%= $status->{dep_name} %>, doch diese Fahrt fällt aus.
|
|
</p>
|
|
<p>Falls du den Ausfall z.B. für Fahrgastrechte
|
|
dokumentieren möchtest, wähle bitte jetzt das
|
|
vorgesehene Ziel aus.</p>
|
|
<table>
|
|
<tbody>
|
|
% my $is_after = 0;
|
|
% for my $station (@{$status->{route_after}}) {
|
|
<tr><td><a class="action-cancelled-to" data-station="<%= $station->[0] %>"><%= $station->[0] %></a></td></tr>
|
|
% }
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div class="card-action">
|
|
<a class="action-undo" data-id="in_transit">
|
|
<i class="material-icons">undo</i> Checkinversuch Rückgängig?
|
|
</a>
|
|
</div>
|
|
</div>
|
|
% }
|
|
% else {
|
|
% if ( @{stash('timeline') // [] } ) {
|
|
%= include '_timeline_link', timeline => stash('timeline')
|
|
% }
|
|
%= form_for 'list_departures' => begin
|
|
<div class="card">
|
|
<div class="card-content">
|
|
<span class="card-title">Hallo, <%= $user->{name} %>!</span>
|
|
<p>Du bist gerade nicht eingecheckt.</p>
|
|
<p>
|
|
<div class="geolocation" data-recent="<%= join('|', map { $_->{eva} . ';' . $_->{name} . ';' . $_->{hafas} } @{stash('recent_targets') // []} ) %>" data-backend=<%= $user->{backend_id} %>">
|
|
<button class="btn waves-effect waves-light btn-flat">Stationen in der Umgebung abfragen</button>
|
|
</div>
|
|
<div class="input-field">
|
|
%= text_field 'station', id => 'station', class => 'autocomplete contrast-color-text', autocomplete => 'off', required => undef
|
|
<label for="station">Manuelle Eingabe</label>
|
|
</div>
|
|
</p>
|
|
</div>
|
|
<div class="card-action">
|
|
% if ($user->{backend_id}) {
|
|
<a href="/account/select_backend?redirect_to=/" class="btn btn-flat"><i class="material-icons left" aria-hidden="true">directions</i><%= $user->{backend_name} %> (<%= $user->{backend_hafas} ? 'HAFAS' : q{} %>)</a>
|
|
% }
|
|
% else {
|
|
<a href="/account/select_backend?redirect_to=/" class="btn btn-flat"><i class="material-icons left" aria-hidden="true">train</i>DB (IRIS-TTS)</a>
|
|
% }
|
|
<button class="btn right waves-effect waves-light btn-flat" type="submit" name="action" value="departures">
|
|
<i class="material-icons left" aria-hidden="true">send</i>
|
|
Abfahrten
|
|
</button>
|
|
</div>
|
|
</div>
|
|
%= end
|
|
% }
|
|
</div>
|
|
</div>
|
|
<h2 style="margin-left: 0.75rem;">Letzte Fahrten</h2>
|
|
%= include '_history_trains', date_format => '%d.%m.%Y', journeys => [journeys->get(uid => $user->{id}, limit => 5, with_datetime => 1)];
|
|
% }
|
|
% else {
|
|
<div class="row">
|
|
<div class="col s12">
|
|
<p>
|
|
Travelynx erlaubt das Einchecken in Züge im Netz der Deutschen
|
|
Bahn. So können die eigenen Fahrten später inklusive Echtzeitdaten
|
|
und eingetragenen Servicemeldungen nachvollzogen und brennende
|
|
Fragen wie „Wie viele Stunden war ich letzten Monat unterwegs?“
|
|
beantwortet werden.
|
|
</p>
|
|
<p>
|
|
Die Idee dazu kommt von <a
|
|
href="https://traewelling.de/">Träwelling</a>.
|
|
</p>
|
|
<p>
|
|
Features:
|
|
<ul>
|
|
<li>Protokoll von Fahrplan- und Echtzeitdaten an Start- und
|
|
Zielbahnhof</li>
|
|
<li>Teilen von aktuellen und vergangenen Fahrten mit anderen Personen</li>
|
|
<li>Web-Hooks und <a href="/api">API</a> zum automatisierten Einchecken und Auslesen des aktuellen Status</li>
|
|
<li>Statistiken über Reisezeiten und Verspätungen</li>
|
|
<li>Unterstützung beim Ausfüllen von Fahrgastrechteformularen</li>
|
|
<li>Optional: Öffentlicher Reisestatus und öffentliche Angaben zu vergangenen Fahrten</li>
|
|
<li>Optional: Verknüpfung mit Träwelling</li>
|
|
</ul>
|
|
</p>
|
|
<p>
|
|
Travelynx ist ein kostenfreies, privat betriebenes Projekt ohne
|
|
Verfügbarkeitsgarantie. Unangekündigte Downtimes oder eine
|
|
kurzfristige Einstellung dieser Seite sind nicht vorgesehen, aber
|
|
möglich. Wer mag, kann auch den
|
|
<a href="https://finalrewind.org/projects/travelynx">Quelltext</a>
|
|
laden und eine eigene Instanz aufsetzen.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col s1 m1 l3">
|
|
</div>
|
|
<div class="col s10 m10 l6 center-align">
|
|
% if (not app->config->{registration}{disabled}) {
|
|
<a href="/register" class="waves-effect waves-light btn"><i class="material-icons left" aria-hidden="true">add</i>Registrieren</a>
|
|
% }
|
|
<a href="/login" class="waves-effect waves-light btn"><i class="material-icons left" aria-hidden="true">account_circle</i>Anmelden</a>
|
|
</div>
|
|
<div class="col s1 m1 l3">
|
|
</div>
|
|
</div>
|
|
% }
|