有单选按钮反映模型

时间:2017-08-28 18:27:11

标签: elm

this example中,初始fontSizeMedium。这反映在字体大小上,但未选择媒体单选按钮。有没有办法让单选按钮始终反映当前的fontSize

2 个答案:

答案 0 :(得分:7)

这是你在找什么?

view : Model -> Html Msg
view model =
  div []
    [ fieldset []
        [ radio "Small" (model.fontSize == Small) (SwitchTo Small)
        , radio "Medium"(model.fontSize == Medium)  (SwitchTo Medium)
        , radio "Large" (model.fontSize == Large) (SwitchTo Large)
        ]
    , Markdown.toHtml [ sizeToStyle model.fontSize ] model.content
    ]


radio : String -> Bool > msg -> Html msg
radio value isChecked msg =
  label
    [ style [("padding", "20px")]
    ]
    [ input [ type_ "radio", name "font-size", onInput msg, checked isChecked ] []
    , text value
    ]

请注意,我将onClick更改为onInput,我认为这是更好的表单选择练习。

顺便说一句,我倾向于将msg参数放在类型签名的开头,因为它最不可能成为函数管道的一部分:

radio : msg -> Bool -> String -> Html msg

答案 1 :(得分:4)

这是有问题的代码:

view : Model -> Html Msg
view model =
  div []
    [ fieldset []
        [ radio "Small" (SwitchTo Small)
        , radio "Medium" (SwitchTo Medium)
        , radio "Large" (SwitchTo Large)
        ]
    , Markdown.toHtml [ sizeToStyle model.fontSize ] model.content
    ]


radio : String -> msg -> Html msg
radio value msg =
  label
    [ style [("padding", "20px")]
    ]
    [ input [ type_ "radio", name "font-size", onClick msg ] []
    , text value
    ]

这是用于渲染无线电输入的线路:

input [ type_ "radio", name "font-size", onClick msg ] []

无线电(see the docs)有一个checked属性,所以看起来你可以根据当前的字体大小添加它?类似的东西:

radio : String -> Bool -> msg -> Html msg
radio value isChecked msg =
  label
    [ style [("padding", "20px")]
    ]
    [ input [ type_ "radio", name "font-size", checked isChecked, onClick msg ] []
    , text value
    ]

...然后根据isChecked函数中的模型设置view参数。