1
0
Fork 0
mirror of https://github.com/heyarne/airsonic-ui.git synced 2026-05-07 02:33:39 +02:00
airsonic-ui/shadow-cljs.edn
heyarne 8bf222a6e8
Improvements to currently playing queue (#48)
* First sloppy import of code from heyarne/reagent-movable

* Consistently use "current queue" to avoid confusion

* Update shadow-cljs, re-frame and debux

* Solve styling problem when sorting table rows

* Make sortable component more reusable

* Refactor playlist to use a sorted-map

* Make sure current queue is displayed again

* Fix sorting when converting a shuffled into a linear playlist

* Implement set-current-track

* Implement song-move in playlist

* Add autoprefixer

* Implement drag and drop reordering in current queue

* Fix broken dev sass build

* Bump some dependencies

* Move airsonic-ui.views.icon to bulma.icon

* Implement reusable dropdown in bulma.dropdown

* Immediately render reordered tracks, reimplement actions in album view

* Use new song-table on search result page

* Make song-table more reusable

* Remove current song

* Implement go to source in current queue

* Remove unused song view
2019-03-12 15:22:13 +01:00

34 lines
981 B
Clojure

;; shadow-cljs configuration
{:source-paths
["src/cljs", "test/cljs"]
:dependencies
[[reagent "0.8.0"]
[re-frame "0.10.6"]
[re-pressed "0.3.0"]
[day8.re-frame/http-fx "0.1.6"]
[akiroz.re-frame/storage "0.1.2"]
[funcool/bide "1.6.0"]
[fipp "0.6.14"]
;; debugging
[day8.re-frame/re-frame-10x "0.3.7-react16"]
#_[day8.re-frame/tracing "0.5.1"]
[philoskim/debux "0.5.6"]
;; for CIDER
[cider/cider-nrepl "0.21.1"]]
:nrepl {:port 9000}
:builds
{:app {:target :browser
:output-dir "public/app/js"
:asset-path "/app/js"
:modules {:main {:entries [airsonic-ui.core]}}
:devtools {:http-root "public"
:http-port 8080
:after-load airsonic-ui.core/mount-root
:preloads [day8.re-frame-10x.preload]}
:dev {:closure-defines {"re_frame.trace.trace_enabled_QMARK_" true}}}
:test {:target :karma
:output-to "public/test/ci.js"
:ns-regexp "-test$"}}}