A music player that connects to your cloud/distributed storage.
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

Clean up imports

+1 -25
-2
src/Applications/UI/Other/State.elm
··· 2 2 3 3 import Alien 4 4 import Common exposing (Switch(..)) 5 - import Monocle.Lens as Lens 6 5 import Notifications 7 6 import Return 8 7 import Return.Ext as Return ··· 10 9 import UI.Authentication.Types as Authentication 11 10 import UI.Common.State as Common 12 11 import UI.Ports as Ports 13 - import UI.Sources.State as Sources 14 12 import UI.Types as UI exposing (..) 15 13 import User.Layer exposing (..) 16 14
-1
src/Applications/UI/Queue/State.elm
··· 4 4 import Dict 5 5 import Html.Events.Extra.Mouse as Mouse 6 6 import List.Extra as List 7 - import Monocle.Lens as Lens exposing (Lens) 8 7 import Notifications 9 8 import Queue exposing (..) 10 9 import Return exposing (andThen, return)
-1
src/Applications/UI/Queue/Types.elm
··· 2 2 3 3 import Html.Events.Extra.Mouse as Mouse 4 4 import Queue exposing (Item) 5 - import Time 6 5 import Tracks exposing (IdentifiedTrack) 7 6 import UI.DnD as DnD 8 7
-6
src/Applications/UI/Queue/View.elm
··· 3 3 import Chunky exposing (..) 4 4 import Common 5 5 import Conditional exposing (..) 6 - import Coordinates 7 6 import Css.Classes as C 8 7 import Html exposing (Html, text) 9 8 import Html.Attributes exposing (href) 10 - import Html.Events.Extra.Mouse as Mouse 11 9 import Html.Lazy as Lazy 12 10 import Icons 13 11 import List.Extra as List 14 12 import Material.Icons as Icons 15 13 import Material.Icons.Types exposing (Coloring(..)) 16 14 import Queue exposing (..) 17 - import Time 18 - import Tracks exposing (IdentifiedTrack) 19 15 import UI.DnD as DnD 20 16 import UI.Kit 21 17 import UI.List 22 18 import UI.Navigation exposing (..) 23 19 import UI.Page as Page 24 - import UI.Ports as Ports 25 - import UI.Queue.Fill as Fill 26 20 import UI.Queue.Page as Queue exposing (Page(..)) 27 21 import UI.Queue.Types as Queue exposing (..) 28 22 import UI.Reply exposing (Reply(..))
-1
src/Applications/UI/Reply.elm
··· 3 3 import Common exposing (Switch(..)) 4 4 import Coordinates exposing (Coordinates) 5 5 import Playlists exposing (Playlist, PlaylistTrack) 6 - import Queue 7 6 import Sources exposing (Source) 8 7 import Tracks exposing (IdentifiedTrack, Track) 9 8 import UI.Page exposing (Page)
-3
src/Applications/UI/Reply/Translate.elm
··· 6 6 import Chunky exposing (..) 7 7 import Common exposing (Switch(..)) 8 8 import Conditional exposing (..) 9 - import Dict 10 - import Dict.Ext as Dict 11 9 import File.Download 12 10 import File.Select 13 11 import Html.Attributes exposing (id) ··· 15 13 import LastFm 16 14 import List.Ext as List 17 15 import List.Extra as List 18 - import Maybe.Extra as Maybe 19 16 import Monocle.Lens as Lens 20 17 import Notifications 21 18 import Playlists.Encoding as Playlists
-2
src/Applications/UI/Sources/Form.elm
··· 15 15 import Return3 exposing (..) 16 16 import Sources exposing (..) 17 17 import Sources.Services as Services 18 - import Sources.Services.Dropbox 19 - import Sources.Services.Google 20 18 import UI.Kit exposing (ButtonType(..), select) 21 19 import UI.Navigation exposing (..) 22 20 import UI.Page as Page
+1 -1
src/Applications/UI/Sources/State.elm
··· 9 9 import Html.Events.Extra.Mouse as Mouse 10 10 import Json.Decode as Json 11 11 import Json.Encode 12 - import Monocle.Lens as Lens exposing (Lens) 12 + import Monocle.Lens as Lens 13 13 import Notifications 14 14 import Return exposing (andThen, return) 15 15 import Return.Ext as Return
-8
src/Applications/UI/Sources/View.elm
··· 1 1 module UI.Sources.View exposing (view) 2 2 3 - import Alien 4 3 import Chunky exposing (..) 5 4 import Conditional exposing (ifThenElse) 6 - import Coordinates 7 5 import Css.Classes as C 8 6 import Dict.Ext as Dict 9 7 import Html exposing (Html, text) 10 8 import Html.Attributes exposing (href) 11 - import Html.Events.Extra.Mouse as Mouse 12 9 import Html.Lazy as Lazy 13 - import Json.Decode as Json 14 10 import List.Extra as List 15 11 import Material.Icons as Icons 16 12 import Material.Icons.Types exposing (Coloring(..)) 17 13 import Return3 as Return exposing (..) 18 14 import Sources exposing (..) 19 - import Sources.Encoding 20 - import Time 21 - import Time.Ext as Time 22 15 import UI.Kit exposing (ButtonType(..)) 23 16 import UI.List 24 17 import UI.Navigation exposing (..) 25 18 import UI.Page as Page 26 - import UI.Ports as Ports 27 19 import UI.Reply exposing (Reply(..)) 28 20 import UI.Sources.Form as Form 29 21 import UI.Sources.Page as Sources exposing (..)