1
0
Fork 0
mirror of https://github.com/heyarne/airsonic-ui.git synced 2026-05-07 02:33:39 +02:00

Pause current track when starting next, implement play / pause

This commit is contained in:
Arne Schlüter 2018-04-22 01:19:19 +02:00
commit 4639f4ef27
3 changed files with 9 additions and 7 deletions

View file

@ -73,10 +73,10 @@
:db (assoc-in db [:currently-playing :item] song)})))
(re-frame/reg-event-fx
::pause-song
::toggle-play-pause
(fn [_ _]
; pauses the current song
{:pause-song nil}))
{:toggle-play-pause nil}))
(re-frame/reg-event-db
:audio-update
@ -91,7 +91,6 @@
(fn [{:keys [db]} [_ route params query]]
;; all the naviagation logic is in routes.cljs; all we need to do here
;; is say what actually happens once we've navigated succesfully
(println "routes/route-data" (routes/route-data route params query))
{:db (assoc db :current-route [route params query])
:dispatch (routes/route-data route params query)}))