mirror of
https://github.com/NoRedInk/noredink-ui.git
synced 2024-12-15 17:02:51 +03:00
147 lines
3.7 KiB
Elm
147 lines
3.7 KiB
Elm
module Examples.SegmentedControl exposing
|
|
( Msg
|
|
, State
|
|
, example
|
|
, init
|
|
, update
|
|
)
|
|
|
|
{-|
|
|
|
|
@docs Msg
|
|
@docs State
|
|
@docs example
|
|
@docs init
|
|
@docs update
|
|
|
|
-}
|
|
|
|
import Accessibility.Styled
|
|
import Debug.Control as Control exposing (Control)
|
|
import Html.Styled as Html exposing (Html)
|
|
import Html.Styled.Attributes as Attr
|
|
import Html.Styled.Events as Events
|
|
import ModuleExample exposing (Category(..), ModuleExample)
|
|
import Nri.Ui.Icon.V5 as Icon
|
|
import Nri.Ui.SegmentedControl.V7 as SegmentedControl
|
|
|
|
|
|
{-| -}
|
|
type Msg
|
|
= Select ExampleOption
|
|
| ChangeOptions (Control Options)
|
|
|
|
|
|
type ExampleOption
|
|
= A
|
|
| B
|
|
| C
|
|
|
|
|
|
{-| -}
|
|
type alias State =
|
|
{ selected : ExampleOption
|
|
, optionsControl : Control Options
|
|
}
|
|
|
|
|
|
type alias Options =
|
|
{ width : SegmentedControl.Width
|
|
, icon : Maybe SegmentedControl.Icon
|
|
, useSpa : Bool
|
|
}
|
|
|
|
|
|
{-| -}
|
|
example : (Msg -> msg) -> State -> ModuleExample msg
|
|
example parentMessage state =
|
|
let
|
|
options =
|
|
Control.currentValue state.optionsControl
|
|
in
|
|
{ name = "Nri.Ui.SegmentedControl.V7"
|
|
, category = Widgets
|
|
, content =
|
|
[ Control.view ChangeOptions state.optionsControl
|
|
|> Html.fromUnstyled
|
|
, let
|
|
viewFn =
|
|
if options.useSpa then
|
|
SegmentedControl.viewSpa Debug.toString
|
|
|
|
else
|
|
SegmentedControl.view
|
|
in
|
|
viewFn
|
|
{ onClick = Select
|
|
, options =
|
|
[ A, B, C ]
|
|
|> List.map
|
|
(\i ->
|
|
{ icon = options.icon
|
|
, label = "Option " ++ Debug.toString i
|
|
, value = i
|
|
}
|
|
)
|
|
, selected = state.selected
|
|
, width = options.width
|
|
, content = Html.text ("[Content for " ++ Debug.toString state.selected ++ "]")
|
|
}
|
|
, Html.h3 [] [ Html.text "Toggle only view" ]
|
|
, Html.p [] [ Html.text "Used when you only need the ui element and not a page control." ]
|
|
, SegmentedControl.viewToggle
|
|
{ onClick = Select
|
|
, options =
|
|
[ A, B, C ]
|
|
|> List.map
|
|
(\i ->
|
|
{ icon = options.icon
|
|
, label = "Choice " ++ Debug.toString i
|
|
, value = i
|
|
}
|
|
)
|
|
, selected = state.selected
|
|
, width = options.width
|
|
}
|
|
]
|
|
|> List.map (Html.map parentMessage)
|
|
}
|
|
|
|
|
|
{-| -}
|
|
init : { r | help : String } -> State
|
|
init assets =
|
|
{ selected = A
|
|
, optionsControl =
|
|
Control.record Options
|
|
|> Control.field "width"
|
|
(Control.choice
|
|
[ ( "FitContent", Control.value SegmentedControl.FitContent )
|
|
, ( "FillContainer", Control.value SegmentedControl.FillContainer )
|
|
]
|
|
)
|
|
|> Control.field "icon"
|
|
(Control.maybe False (Control.value { alt = "Help", icon = Icon.helpSvg assets }))
|
|
|> Control.field "which view function"
|
|
(Control.choice
|
|
[ ( "view", Control.value False )
|
|
, ( "viewSpa", Control.value True )
|
|
]
|
|
)
|
|
}
|
|
|
|
|
|
{-| -}
|
|
update : Msg -> State -> ( State, Cmd Msg )
|
|
update msg state =
|
|
case msg of
|
|
Select id ->
|
|
( { state | selected = id }
|
|
, Cmd.none
|
|
)
|
|
|
|
ChangeOptions newOptions ->
|
|
( { state | optionsControl = newOptions }
|
|
, Cmd.none
|
|
)
|