noredink-ui/styleguide-app/Examples/RadioButton.elm

212 lines
5.6 KiB
Elm
Raw Normal View History

2020-07-30 21:12:30 +03:00
module Examples.RadioButton exposing
( example
, State, Msg
)
{-|
@docs example
@docs State, Msg
-}
2021-11-09 23:40:10 +03:00
import Browser.Dom as Dom
2020-07-30 21:12:30 +03:00
import Category exposing (Category(..))
import Css exposing (..)
import Debug.Control as Control exposing (Control)
2020-07-30 21:12:30 +03:00
import Dict exposing (Dict)
import Example exposing (Example)
import Html.Styled as Html exposing (..)
2020-07-30 21:12:30 +03:00
import Html.Styled.Attributes exposing (css)
import KeyboardSupport exposing (Direction(..), Key(..))
2020-07-30 21:39:16 +03:00
import Nri.Ui.Button.V10 as Button
import Nri.Ui.Data.PremiumLevel as PremiumLevel exposing (PremiumLevel)
2020-07-30 21:12:30 +03:00
import Nri.Ui.Heading.V2 as Heading
2021-11-09 23:40:10 +03:00
import Nri.Ui.Modal.V11 as Modal
2021-11-16 22:05:59 +03:00
import Nri.Ui.RadioButton.V3 as RadioButton
2021-10-27 20:42:23 +03:00
import Nri.Ui.Text.V6 as Text
2021-11-09 23:40:10 +03:00
import Task
2020-07-30 21:12:30 +03:00
{-| -}
example : Example State Msg
example =
2020-09-09 21:43:10 +03:00
{ name = "RadioButton"
2021-11-16 22:05:59 +03:00
, version = 3
2020-07-30 21:12:30 +03:00
, state = init
, update = update
2020-07-30 21:39:16 +03:00
, subscriptions = subscriptions
2021-11-05 21:19:08 +03:00
, preview = []
2020-07-30 21:12:30 +03:00
, view = view
2021-09-04 18:47:56 +03:00
, categories = [ Inputs ]
2020-07-30 21:47:32 +03:00
, keyboardSupport =
2020-11-20 21:42:26 +03:00
[ { keys = [ Arrow Left ]
2020-11-07 02:57:10 +03:00
, result = "Move the focus & select the radio button to the left"
}
2020-11-20 21:42:26 +03:00
, { keys = [ Arrow Right ]
2020-11-07 02:57:10 +03:00
, result = "Move the focus & select the radio button to the right"
}
2020-11-20 21:42:26 +03:00
, { keys = [ Space ]
2020-11-07 02:57:10 +03:00
, result = "Select the current radio button"
}
]
2020-07-30 21:12:30 +03:00
}
{-| -}
view : State -> List (Html Msg)
view model =
[ Heading.h3 [] [ Html.text "RadioButton" ]
, Heading.h4 [] [ Html.text "view" ]
, viewVanilla model
, Heading.h4 [] [ Html.text "premium" ]
2021-11-09 23:40:10 +03:00
, Modal.view
{ title = "Go Premium!"
2020-07-30 21:39:16 +03:00
, wrapMsg = ModalMsg
2021-11-09 23:40:10 +03:00
, content = [ Text.mediumBody [ Text.plaintext "Often, we'll launch a modal showing the benefits of premium when a locked radio button is clicked." ] ]
, footer =
[ Button.button "Okay"
[ Button.modal
, Button.onClick CloseModal
, Button.id "close-premium-modal"
]
]
, focusTrap =
{ focus = Focus
, firstId = Modal.closeButtonId
, lastId = "close-premium-modal"
}
2020-07-30 21:39:16 +03:00
}
2021-11-09 23:40:10 +03:00
[ Modal.closeButton ]
2020-07-30 21:39:16 +03:00
model.modal
2020-07-30 21:12:30 +03:00
]
viewVanilla : State -> Html Msg
viewVanilla state =
2021-09-04 18:49:10 +03:00
div []
[ RadioButton.view
{ label = "Cats"
, valueToString = identity
}
2021-11-19 00:23:43 +03:00
[ RadioButton.enabled
, RadioButton.value "Felines"
, RadioButton.name "radio-button-examples"
, RadioButton.selectedValue state.selectedValue
2021-11-19 01:48:49 +03:00
, RadioButton.onSelect Select
]
, RadioButton.view
{ label = "Dogs"
, valueToString = identity
}
2021-11-19 00:23:43 +03:00
[ RadioButton.enabled
, RadioButton.value "Canines"
2021-11-19 00:43:48 +03:00
, RadioButton.name "radio-button-examples"
, RadioButton.selectedValue state.selectedValue
2021-11-19 01:48:49 +03:00
, RadioButton.onSelect Select
]
, RadioButton.view
{ label = "Robots"
, valueToString = identity
}
[ RadioButton.disabled
, RadioButton.value "Robots"
, RadioButton.name "radio-button-examples"
, RadioButton.selectedValue state.selectedValue
, RadioButton.onSelect Select
2021-11-19 00:23:43 +03:00
]
]
{-| -}
type alias State =
{ selectedValue : Maybe String
2020-07-30 21:39:16 +03:00
, modal : Modal.Model
, premiumControl : Control PremiumConfig
}
2020-07-30 21:12:30 +03:00
{-| -}
init : State
init =
{ selectedValue = Nothing
2020-07-30 21:39:16 +03:00
, modal = Modal.init
, premiumControl = initPremiumControls
}
2020-07-30 21:12:30 +03:00
type alias PremiumConfig =
{ teacherPremiumLevel : PremiumLevel
, showPennant : Bool
}
initPremiumControls : Control PremiumConfig
initPremiumControls =
Control.record PremiumConfig
|> Control.field "teacherPremiumLevel"
(Control.choice
[ ( "Free", Control.value PremiumLevel.Free )
, ( "Premium", Control.value PremiumLevel.PremiumWithWriting )
]
)
|> Control.field "showPennant" (Control.bool False)
type Msg
2021-11-09 23:40:10 +03:00
= OpenModal String
| ModalMsg Modal.Msg
| CloseModal
| Select String
| SetPremiumControl (Control PremiumConfig)
2021-11-09 23:40:10 +03:00
| Focus String
| Focused (Result Dom.Error ())
2020-07-30 21:12:30 +03:00
{-| -}
update : Msg -> State -> ( State, Cmd Msg )
update msg model =
case msg of
2021-11-09 23:40:10 +03:00
OpenModal returnFocusTo ->
let
( modal, cmd ) =
Modal.open
{ startFocusOn = Modal.closeButtonId
, returnFocusTo = returnFocusTo
}
in
( { model | modal = modal }, Cmd.map ModalMsg cmd )
2020-07-30 21:39:16 +03:00
ModalMsg modalMsg ->
let
( modal, cmd ) =
Modal.update { dismissOnEscAndOverlayClick = True }
modalMsg
model.modal
in
( { model | modal = modal }, Cmd.map ModalMsg cmd )
2021-11-09 23:40:10 +03:00
CloseModal ->
let
( modal, cmd ) =
Modal.close model.modal
in
( { model | modal = modal }, Cmd.map ModalMsg cmd )
Select value ->
( { model | selectedValue = Just value }, Cmd.none )
SetPremiumControl premiumControl ->
( { model | premiumControl = premiumControl }, Cmd.none )
2021-11-09 23:40:10 +03:00
Focus focus ->
( model, Task.attempt Focused (Dom.focus focus) )
Focused _ ->
( model, Cmd.none )
2020-07-30 21:39:16 +03:00
subscriptions : State -> Sub Msg
subscriptions { modal } =
Sub.map ModalMsg (Modal.subscriptions modal)