Fable.React-Hook-Form 0.2.1

dotnet add package Fable.React-Hook-Form --version 0.2.1
NuGet\Install-Package Fable.React-Hook-Form -Version 0.2.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Fable.React-Hook-Form" Version="0.2.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Fable.React-Hook-Form --version 0.2.1
#r "nuget: Fable.React-Hook-Form, 0.2.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Fable.React-Hook-Form as a Cake Addin
#addin nuget:?package=Fable.React-Hook-Form&version=0.2.1

// Install Fable.React-Hook-Form as a Cake Tool
#tool nuget:?package=Fable.React-Hook-Form&version=0.2.1

Fable.React-Hook-Form

Fable bindings for React-Hook-Form

Here's how it looks:

module TestForm

open Browser.Dom
open Feliz
open Fable.Core
open Fable.React
open Fable.FluentUI
open Fable.ReactHookForm
open System.Text.RegularExpressions

type IDataNested = { Age: int }
type IData =
    { FirstName: string
      LastName: string
      Nested: IDataNested }

let defaultValues =
    { FirstName = "Steve"
      LastName = "Smith"
      Nested = { Age = 34 } }

[<ReactComponent>]
let TestForm () =
    let form =
        useForm [
            Mode OnChange
            DefaultValues defaultValues
        ]

    let validateSync v =
        if v = "James" then
            Some "Can't be James"
        else
            None

    let validateAsync v =
        async {
            if v = "Jones" then
                return Some "Can't be Jones"
            else
                return None
        }

    let firstName =
        useController form.control (fun x -> x.FirstName)
            [ Rules [
                  Required "First name is required"
                  MinLength { value = 4; message = "Min length 4" }
                  MaxLength
                      { value = 50
                        message = "Max length 50" }
                  Pattern
                      { value = new Regex("^[A-Z].?")
                        message = "Must start with capital" }
                  Validate validateSync
              ] ]

    let lastName =
        useController form.control (fun x -> x.LastName)
            [ Rules [ ValidateAsync validateAsync ] ]

    let age =
        useController form.control (fun x -> x.Nested.Age ) []

    let submit (v: IData) = console.log ("Submit", v)

    let error (v: obj) = console.log ("Error", v)

    let handleSubmit = form.handleSubmit submit error

    Html.div [
        Html.span "Data Entry Form"
        Html.input [
            prop.value firstName.value
            prop.onChange firstName.onChange
        ]
        TextField.textField [ TextField.Label "First Name"
                              TextField.Value firstName.value
                              TextField.OnChange firstName.onChangeEvent
                              TextField.ErrorMessage firstName.errorMessage ] []
        TextField.textField [ TextField.Label "Last Name"
                              TextField.Value lastName.value
                              TextField.OnChange lastName.onChangeEvent
                              TextField.ErrorMessage lastName.errorMessage ] []
        SpinButton.spinButton [ SpinButton.Label "Age"
                                SpinButton.Value (age.value.ToString()) ] []
        Button.defaultButton [ Button.OnClick(fun e -> form.reset [])
                               Button.Disabled(not form.formState.isDirty) ] [
            str "Reset"
        ]
        Button.primaryButton [ Button.OnClick handleSubmit
                               Button.Disabled(not form.formState.isDirty) ] [
            str "Submit"
        ]
    ]

NOTE: While the above sample show the use of Fable.FluentUI, this library can be used with any UI framework. And while it uses Feliz for defining a functional component, it should support FunctionComponent.Of(...) from Fable.React.

NOTE: This is very much an early release which includes just a small subset of the PrimeReact controls and properties, It should be a solid foundation for extending into the other controls. Issue requesting new features are very much welcome.

Installation

Run femto install Fable.React-Hook-Form from inside your project directory.

Source code

Found in ./Fable.React-Hook-Form

Samples

Samples are found in ./sample.

Contributing

In root folder:

  • Run yarn to install npm packages
  • Run yarn start to start the sample application to test changes
Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.2.1 381 10/29/2022
0.2.1-release.1 102 10/29/2022
0.2.0 358 10/20/2022
0.1.1 373 10/10/2022
0.1.0 394 10/8/2022