summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornsensfel <SpamShield0@noot-noot.org>2018-09-27 15:40:30 +0200
committernsensfel <SpamShield0@noot-noot.org>2018-09-27 15:40:30 +0200
commit2f22e667fbea56884d74ed27777f2e9f3fc9fd53 (patch)
tree75300c58cc7b287993887f84b2d68b9d515a9ec0 /src/View/Player.elm
parent486ee1dbe21be962e89f421e1dd5f3cbb2fd2177 (diff)
Starting to separate background and popup code.
Diffstat (limited to 'src/View/Player.elm')
-rw-r--r--src/View/Player.elm97
1 files changed, 0 insertions, 97 deletions
diff --git a/src/View/Player.elm b/src/View/Player.elm
deleted file mode 100644
index 07dc292..0000000
--- a/src/View/Player.elm
+++ /dev/null
@@ -1,97 +0,0 @@
-module View.Player exposing (get_html)
-
--- Elm -------------------------------------------------------------------------
-import Html
-import Html.Attributes
--- import Html.Events
-
--- Extension -------------------------------------------------------------------
-import Struct.BattleSummary
-import Struct.Event
-import Struct.Player
-
---------------------------------------------------------------------------------
--- LOCAL -----------------------------------------------------------------------
---------------------------------------------------------------------------------
-get_item_html : (
- String ->
- String ->
- Struct.BattleSummary.Type ->
- (Html.Html Struct.Event.Type)
- )
-get_item_html query_url additional_class item =
- (Html.a
- [
- (Html.Attributes.class additional_class),
- (Html.Attributes.href
- (
- query_url
- ++ "/battle/?id="
- ++ (Struct.BattleSummary.get_id item)
- )
- )
- ]
- [
- (Html.div
- [
- (Html.Attributes.class "battle-summary-name")
- ]
- [
- (Html.text (Struct.BattleSummary.get_name item))
- ]
- ),
- (Html.div
- [
- (Html.Attributes.class "battle-summary-date")
- ]
- [
- (Html.text (Struct.BattleSummary.get_last_edit item))
- ]
- )
- ]
- )
-
---------------------------------------------------------------------------------
--- EXPORTED --------------------------------------------------------------------
---------------------------------------------------------------------------------
-get_html : Struct.Player.Type -> (Html.Html Struct.Event.Type)
-get_html player =
- let
- query_url = (Struct.Player.get_query_url player)
- in
- (Html.div
- [
- (Html.Attributes.class "player-summary")
- ]
- [
- (Html.div
- [
- (Html.Attributes.class "player-summary-listing-header")
- ]
- [
- (Html.text (Struct.Player.get_username player))
- ]
- ),
- (Html.div
- [
- (Html.Attributes.class "player-summary-listing-body")
- ]
- (
- (List.map
- (get_item_html query_url "campaign-link")
- (Struct.Player.get_campaigns player)
- )
- ++
- (List.map
- (get_item_html query_url "invasion-link")
- (Struct.Player.get_invasions player)
- )
- ++
- (List.map
- (get_item_html query_url "event-link")
- (Struct.Player.get_events player)
- )
- )
- )
- ]
- )