From edc03d0f97cb75de09bbb9366a9d82346f32d5e1 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Sun, 13 Dec 2020 21:17:56 +0100 Subject: update autocomplete list of station names (and add update script) --- scripts/update-autocomplete | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100755 scripts/update-autocomplete (limited to 'scripts') diff --git a/scripts/update-autocomplete b/scripts/update-autocomplete new file mode 100755 index 0000000..9797cd7 --- /dev/null +++ b/scripts/update-autocomplete @@ -0,0 +1,26 @@ +#!/usr/bin/env perl + +use strict; +use warnings; +use 5.020; + +use JSON; +use File::Slurp qw(write_file); +use Travel::Status::DE::IRIS::Stations; + +my @station_names = map { $_->[1] } Travel::Status::DE::IRIS::Stations::get_stations(); + +my $station_json = JSON->new->utf8->encode([@station_names]); + +my $autocomplete = <<"EOF"; +\$(function() { + var stations = $station_json; + \$('input.station').autocomplete({ + delay: 0, + minLength: 3, + source: stations + }); +}); +EOF + +write_file("public/static/js/autocomplete.js", $autocomplete); -- cgit v1.2.3