mirror of
https://github.com/correl/elm-mdl.git
synced 2024-12-18 03:00:11 +00:00
Templates.
This commit is contained in:
parent
68b0f5a00d
commit
32497bbcec
2 changed files with 12 additions and 6 deletions
4
Makefile
4
Makefile
|
@ -3,6 +3,10 @@ PAGES=../elm-mdl-gh-pages
|
||||||
elm.js:
|
elm.js:
|
||||||
elm-make examples/Demo.elm --warn --output elm.js
|
elm-make examples/Demo.elm --warn --output elm.js
|
||||||
|
|
||||||
|
wip-pages :
|
||||||
|
elm-make examples/Demo.elm --output $(PAGES)/wip.js
|
||||||
|
(cd $(PAGES); git commit -am "Update."; git push origin gh-pages)
|
||||||
|
|
||||||
pages :
|
pages :
|
||||||
elm-make examples/Demo.elm --output $(PAGES)/elm.js
|
elm-make examples/Demo.elm --output $(PAGES)/elm.js
|
||||||
(cd $(PAGES); git commit -am "Update."; git push origin gh-pages)
|
(cd $(PAGES); git commit -am "Update."; git push origin gh-pages)
|
||||||
|
|
|
@ -17,7 +17,7 @@ import Demo.Buttons
|
||||||
import Demo.Grid
|
import Demo.Grid
|
||||||
import Demo.Textfields
|
import Demo.Textfields
|
||||||
import Demo.Snackbar
|
import Demo.Snackbar
|
||||||
import Demo.Template
|
--import Demo.Template
|
||||||
|
|
||||||
-- MODEL
|
-- MODEL
|
||||||
|
|
||||||
|
@ -34,7 +34,7 @@ type alias Model =
|
||||||
, buttons : Demo.Buttons.Model
|
, buttons : Demo.Buttons.Model
|
||||||
, textfields : Demo.Textfields.Model
|
, textfields : Demo.Textfields.Model
|
||||||
, snackbar : Demo.Snackbar.Model
|
, snackbar : Demo.Snackbar.Model
|
||||||
, template : Demo.Template.Model
|
--, template : Demo.Template.Model
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -44,7 +44,7 @@ model =
|
||||||
, buttons = Demo.Buttons.model
|
, buttons = Demo.Buttons.model
|
||||||
, textfields = Demo.Textfields.model
|
, textfields = Demo.Textfields.model
|
||||||
, snackbar = Demo.Snackbar.model
|
, snackbar = Demo.Snackbar.model
|
||||||
, template = Demo.Template.model
|
--, template = Demo.Template.model
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -56,7 +56,7 @@ type Action
|
||||||
| ButtonsAction Demo.Buttons.Action
|
| ButtonsAction Demo.Buttons.Action
|
||||||
| TextfieldAction Demo.Textfields.Action
|
| TextfieldAction Demo.Textfields.Action
|
||||||
| SnackbarAction Demo.Snackbar.Action
|
| SnackbarAction Demo.Snackbar.Action
|
||||||
| TemplateAction Demo.Template.Action
|
--| TemplateAction Demo.Template.Action
|
||||||
|
|
||||||
|
|
||||||
update : Action -> Model -> (Model, Effects.Effects Action)
|
update : Action -> Model -> (Model, Effects.Effects Action)
|
||||||
|
@ -66,7 +66,7 @@ update action model =
|
||||||
ButtonsAction a -> lift .buttons (\m x->{m|buttons =x}) ButtonsAction Demo.Buttons.update a model
|
ButtonsAction a -> lift .buttons (\m x->{m|buttons =x}) ButtonsAction Demo.Buttons.update a model
|
||||||
TextfieldAction a -> lift' .textfields (\m x->{m|textfields=x}) Demo.Textfields.update a model
|
TextfieldAction a -> lift' .textfields (\m x->{m|textfields=x}) Demo.Textfields.update a model
|
||||||
SnackbarAction a -> lift .snackbar (\m x->{m|snackbar =x}) SnackbarAction Demo.Snackbar.update a model
|
SnackbarAction a -> lift .snackbar (\m x->{m|snackbar =x}) SnackbarAction Demo.Snackbar.update a model
|
||||||
TemplateAction a -> lift .template (\m x->{m|template =x}) TemplateAction Demo.Template.update a model
|
--TemplateAction a -> lift .template (\m x->{m|template =x}) TemplateAction Demo.Template.update a model
|
||||||
|
|
||||||
|
|
||||||
-- VIEW
|
-- VIEW
|
||||||
|
@ -84,7 +84,7 @@ drawer =
|
||||||
[href "https://github.com/debois/elm-mdl"]
|
[href "https://github.com/debois/elm-mdl"]
|
||||||
[text "github"]
|
[text "github"]
|
||||||
, Layout.link
|
, Layout.link
|
||||||
[href "http://package.elm-lang.org/packages/debois/elm-mdl/1.0.0/"]
|
[href "http://package.elm-lang.org/packages/debois/elm-mdl/latest/"]
|
||||||
[text "elm-package"]
|
[text "elm-package"]
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
|
@ -114,8 +114,10 @@ tabs =
|
||||||
, ("Buttons", \addr model ->
|
, ("Buttons", \addr model ->
|
||||||
[Demo.Buttons.view (Signal.forwardTo addr ButtonsAction) model.buttons])
|
[Demo.Buttons.view (Signal.forwardTo addr ButtonsAction) model.buttons])
|
||||||
, ("Grid", \addr model -> Demo.Grid.view)
|
, ("Grid", \addr model -> Demo.Grid.view)
|
||||||
|
{-
|
||||||
, ("Template", \addr model ->
|
, ("Template", \addr model ->
|
||||||
[Demo.Template.view (Signal.forwardTo addr TemplateAction) model.template])
|
[Demo.Template.view (Signal.forwardTo addr TemplateAction) model.template])
|
||||||
|
-}
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue