aboutsummaryrefslogtreecommitdiff
path: root/src/client/elm/View/LoggedIn/Paging.elm
diff options
context:
space:
mode:
authorJoris2016-03-27 21:35:52 +0200
committerJoris2016-03-27 21:35:52 +0200
commit0620d925b1045b17cad613a3cc5a1fbb3748c83c (patch)
tree8969b19254deec47e8ad63f973a7f7ff2a3144b4 /src/client/elm/View/LoggedIn/Paging.elm
parent617d30c96792795ab8561a6262c4c5f4e023b6cf (diff)
downloadbudget-0620d925b1045b17cad613a3cc5a1fbb3748c83c.tar.gz
budget-0620d925b1045b17cad613a3cc5a1fbb3748c83c.tar.bz2
budget-0620d925b1045b17cad613a3cc5a1fbb3748c83c.zip
Moving some files
Diffstat (limited to 'src/client/elm/View/LoggedIn/Paging.elm')
-rw-r--r--src/client/elm/View/LoggedIn/Paging.elm100
1 files changed, 0 insertions, 100 deletions
diff --git a/src/client/elm/View/LoggedIn/Paging.elm b/src/client/elm/View/LoggedIn/Paging.elm
deleted file mode 100644
index 20396a6..0000000
--- a/src/client/elm/View/LoggedIn/Paging.elm
+++ /dev/null
@@ -1,100 +0,0 @@
-module View.LoggedIn.Paging
- ( paymentsPaging
- ) where
-
-import Signal exposing (Address)
-
-import Html exposing (..)
-import Html.Attributes exposing (..)
-import Html.Events exposing (..)
-
-import LoggedIn.Action as LoggedInAction
-import LoggedIn.Model as LoggedInModel
-
-import Model.Action as Action exposing (..)
-import Model.Payment exposing (perPage)
-
-import View.Icon exposing (renderIcon)
-
-showedPages : Int
-showedPages = 5
-
-paymentsPaging : Address Action -> LoggedInModel.Model -> Html
-paymentsPaging address loggedInModel =
- let maxPage = ceiling (toFloat loggedInModel.paymentsCount / toFloat perPage)
- pages = truncatePages loggedInModel.currentPage [1..maxPage]
- in if maxPage == 1
- then
- text ""
- else
- div
- [ class "pages" ]
- ( ( if loggedInModel.currentPage > 1
- then [ firstPage address, previousPage address loggedInModel ]
- else []
- )
- ++ ( List.map (paymentsPage address loggedInModel) pages)
- ++ ( if loggedInModel.currentPage < maxPage
- then [ nextPage address loggedInModel, lastPage address maxPage ]
- else []
- )
- )
-
-truncatePages : Int -> List Int -> List Int
-truncatePages currentPage pages =
- let totalPages = List.length pages
- showedLeftPages = ceiling ((toFloat showedPages - 1) / 2)
- showedRightPages = floor ((toFloat showedPages - 1) / 2)
- truncatedPages =
- if currentPage < showedLeftPages then
- [1..showedPages]
- else if currentPage > totalPages - showedRightPages then
- [(totalPages - showedPages)..totalPages]
- else
- [(currentPage - showedLeftPages)..(currentPage + showedRightPages)]
- in List.filter (flip List.member pages) truncatedPages
-
-firstPage : Address Action -> Html
-firstPage address =
- button
- [ class "page"
- , onClick address (UpdateLoggedIn (LoggedInAction.UpdatePage 1))
- ]
- [ renderIcon "fast-backward" ]
-
-previousPage : Address Action -> LoggedInModel.Model -> Html
-previousPage address loggedInModel =
- button
- [ class "page"
- , onClick address (UpdateLoggedIn (LoggedInAction.UpdatePage (loggedInModel.currentPage - 1)))
- ]
- [ renderIcon "backward" ]
-
-nextPage : Address Action -> LoggedInModel.Model -> Html
-nextPage address loggedInModel =
- button
- [ class "page"
- , onClick address (UpdateLoggedIn (LoggedInAction.UpdatePage (loggedInModel.currentPage + 1)))
- ]
- [ renderIcon "forward" ]
-
-lastPage : Address Action -> Int -> Html
-lastPage address maxPage =
- button
- [ class "page"
- , onClick address (UpdateLoggedIn (LoggedInAction.UpdatePage maxPage))
- ]
- [ renderIcon "fast-forward" ]
-
-paymentsPage : Address Action -> LoggedInModel.Model -> Int -> Html
-paymentsPage address loggedInModel page =
- let onCurrentPage = page == loggedInModel.currentPage
- in button
- [ classList
- [ ("page", True)
- , ("current", onCurrentPage)
- ]
- , onClick address <|
- if onCurrentPage then Action.NoOp else UpdateLoggedIn (LoggedInAction.UpdatePage page)
- ]
- [ text (toString page) ]