Added support for multiple time windows in a day (e.g. mon: 1pm-2pm,
5pm-6pm)
This commit is contained in:
parent
8449110c67
commit
6dde7b420d
15
nowopen
15
nowopen
@ -63,7 +63,7 @@ local dsl = re.compile([=[
|
|||||||
ws? ("(" ws? {:tags: {| {tag} (ws? "," ws? {tag})* ws? |} :} ")")? ws? ":"
|
ws? ("(" ws? {:tags: {| {tag} (ws? "," ws? {tag})* ws? |} :} ")")? ws? ":"
|
||||||
({:times: {|
|
({:times: {|
|
||||||
((ws? comment? %nl)+ (%tab / " "^+2) ws?
|
((ws? comment? %nl)+ (%tab / " "^+2) ws?
|
||||||
{| days ws? ("closed" / {:open: time :} "-" {:close: time :}) |})+
|
{| days ws? ("closed" / (time_range (ws* "," ws* time_range)*)) |})+
|
||||||
|} :})
|
|} :})
|
||||||
|}
|
|}
|
||||||
comment <- "#" [^%nl]*
|
comment <- "#" [^%nl]*
|
||||||
@ -71,6 +71,7 @@ local dsl = re.compile([=[
|
|||||||
({:from: {word} :} "-" {:to: {word} :} ":")
|
({:from: {word} :} "-" {:to: {word} :} ":")
|
||||||
/({:from: {word} :} ":")
|
/({:from: {word} :} ":")
|
||||||
/({:from:''->'sun':} {:to:''->'sat':})
|
/({:from:''->'sun':} {:to:''->'sat':})
|
||||||
|
time_range <- {| {:open: time :} "-" {:close: time :} |}
|
||||||
time <- {|
|
time <- {|
|
||||||
{:hour: {[0-9]+} :} (":" {:minute: {[0-9]+} :})? {:ampm: { "am" / "pm"} :}
|
{:hour: {[0-9]+} :} (":" {:minute: {[0-9]+} :})? {:ampm: { "am" / "pm"} :}
|
||||||
/ ("noon" {:hour: {~''->'12'~} :} {:ampm: {~''->'pm'~} :})
|
/ ("noon" {:hour: {~''->'12'~} :} {:ampm: {~''->'pm'~} :})
|
||||||
@ -124,11 +125,13 @@ for i,place in ipairs(places) do
|
|||||||
while t < now do t = t + 24*60*60 end
|
while t < now do t = t + 24*60*60 end
|
||||||
return t
|
return t
|
||||||
end
|
end
|
||||||
if today_times and today_times.open then
|
if today_times and today_times[1] then
|
||||||
local until_open = t(today_times.open) - now
|
for _, window in ipairs(today_times) do
|
||||||
local until_close = t(today_times.close) - now
|
local until_open = t(window.open) - now
|
||||||
if until_close < until_open then
|
local until_close = t(window.close) - now
|
||||||
table.insert(options, {name=place.name, until_close=until_close})
|
if until_close < until_open then
|
||||||
|
table.insert(options, {name=place.name, until_close=until_close})
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
::next_place::
|
::next_place::
|
||||||
|
Loading…
Reference in New Issue
Block a user