0
comment
on 2/26/2019 1:39 AM

WebSharper 4.5.9 is now available on NuGet, and as a vsix installer on the WebSharper website.

It contains client-side support for F# anonymous records, and a minor new UI templating feature.

Documentation: WebSharper 4.x for C# and WebSharper 4.x for F#.

The release notes are also found on GitHub.

See associated WebSharper.UI release notes here.

Fixes

  • Assembly version mismatch in package WebSharper.FSharp, causing build fauilures.

Enhancements

  • Added client-side support for anonymous F# records.
  • UI Templating: add a new attribute ws-preserve. When an element is marked with this attribute, it and its children are not parsed for holes and ws-* attributes.

Anonymous records

F# anonymous records are now fully usable in client-side code. They are translated to plain JS objects:

1
let anon1 = {| A = 1 |} // translates to { A: 1 }

This gives a nice new alternative of constructing plain JS objects instead of New [ "A" => 1 ] or JS.Inline("{A: $0}", 1) or using a record/class type annotated with Prototype(false).

option<_> and voption<_> valued fields on anonymous records are automatically transformed to and from existing/missing JS properties:

1
let anon3 = {| A = Some 1; B = None |} // translates to { A: 1 }

This helps storing the values in minimal form, while keeping the full type safety of F# code.

See it live here:

Imgur

Opt out of templating transformations

By default a ${Name} in a WebSharper.UI template file is treated as a hole to be filled. Including this verbatim is now made easier with new attribute ws-preserve that excludes children of current node from being interpreted for template holes and ws- attributes and nodes.

For example:

1
2
3
4
5
<div>
    ${ThisIsAHole}
    ${ThisToo}
    <div ws-preserve>${ThisIsNotAHole}</div>
</div>

filled with:

1
MyTemplate().ThisIsAHole("foo").Doc()

gives:

1
2
3
4
5
<div>
    foo
    
    <div>${ThisIsNotAHole}</div>
</div>

Happy coding!

.
IntelliFactory Offices Copyright (c) 2011-2012 IntelliFactory. All rights reserved.
Home | Products | Consulting | Trainings | Blogs | Jobs | Contact Us | Terms of Use | Privacy Policy | Cookie Policy
Built with WebSharper