sp-dev-fx-webparts/samples/react-htm-templating
Hugo Bernier 86013372c0 Added all 1.12.1 and 1.13 containers 2022-02-14 02:52:18 -05:00
..
.devcontainer Added all 1.12.1 and 1.13 containers 2022-02-14 02:52:18 -05:00
assets Removing unnecessary office product from the sample metadata 2021-12-10 19:55:32 +02:00
config Initial release of the 'react-htm-templating' sample 2021-08-04 17:49:32 +02:00
release Updated readme and sample json 2021-08-26 00:08:31 -04:00
src Initial release of the 'react-htm-templating' sample 2021-08-04 17:49:32 +02:00
teams Initial release of the 'react-htm-templating' sample 2021-08-04 17:49:32 +02:00
.gitignore Initial release of the 'react-htm-templating' sample 2021-08-04 17:49:32 +02:00
.yo-rc.json Initial release of the 'react-htm-templating' sample 2021-08-04 17:49:32 +02:00
README.md Added all 1.12.1 and 1.13 containers 2022-02-14 02:52:18 -05:00
gulpfile.js Initial release of the 'react-htm-templating' sample 2021-08-04 17:49:32 +02:00
package-lock.json Initial release of the 'react-htm-templating' sample 2021-08-04 17:49:32 +02:00
package.json Initial release of the 'react-htm-templating' sample 2021-08-04 17:49:32 +02:00
tsconfig.json Initial release of the 'react-htm-templating' sample 2021-08-04 17:49:32 +02:00
tslint.json Initial release of the 'react-htm-templating' sample 2021-08-04 17:49:32 +02:00

README.md

React HTM (Hyperscript Tagged Markup) Templating

Summary

This Web Part provides an example of how to create a dynamic template system (configurable via Web Part properties) that can not only render HTML but also React controls, such as Fluent UI, without the need to use Handlebars.js + Web Components.

picture of the web part in action

Compatibility

SPFx 1.12.1 Node.js v14 | v12 | v10 Compatible with SharePoint Online Does not work with SharePoint 2019 Does not work with SharePoint 2016 (Feature Pack 2) Local Workbench Compatible Hosted Workbench Compatible Compatible with Remote Containers

Applies to

Solution

Solution Author(s)
react-htm-templating Fabio Franzini (@franzinifabio), fabiofranzini.com

Version history

Version Date Comments
1.0 August 4, 2021 Initial release

Minimal Path to Awesome

  • Clone this repository
  • in the command line run:
    • npm install
    • gulp serve

This sample can also be opened with VS Code Remote Development. Visit https://aka.ms/spfx-devcontainer for further instructions.

Features

This example born from the need to have a template system that can directly use the "Fluent UI" components (or other components) written in React, without the need to use any wrapper such as, for example, encapsulating the rendering of components via Web Components.

The web part uses a template system called HTM (Hyperscript Tagged Markup), whose meaning is: "htm is JSX-like syntax in plain JavaScript - no transpiler necessary".

Basically, the template is nothing more than the JS code, which is evaluated through the Function constructor.

...
const evalFunction = new Function(this.properties.template);
...
const executeEvalFunction = () => {
    return evalFunction.call(evalFunctionContext);
};
...
let renderComponent = html`<${executeEvalFunction} />`;
ReactDom.render(renderComponent, this.domElement);

The template must return the object generated by htm which is the component instance that you will have to render.

For HTM syntax please refer to the official GitHub repo).

The Web Part is configured to pass a context object to the template, with the following objects:

  • this.html: Reference to the HTM engine.
  • this.react: Reference to React.
  • this.theme: Reference to the 'Theme' object of SharePoint Page.
  • this.themeVariant: Reference to the Theme Variant object.
  • this.fui: Reference to the 'Fluent UI' namespace.
  • this.fuiHooks: Reference to the 'Fluent UI Hooks' namespace.
  • this.fuiSampleData: Reference to the 'Fluent UI Sample Data' namespace.

Video

Hyperscript Tagged Markup (HTM) Templating with SharePoint Framework

Help

We do not support samples, but this community is always willing to help, and we want to improve these samples. We use GitHub to track issues, which makes it easy for community members to volunteer their time and help resolve issues.

If you're having issues building the solution, please run spfx doctor from within the solution folder to diagnose incompatibility issues with your environment.

You can try looking at issues related to this sample to see if anybody else is having the same issues.

You can also try looking at discussions related to this sample and see what the community is saying. If you encounter any issues while using this sample, create a new issue.

For questions regarding this sample, create a new question.

Finally, if you have an idea for improvement, make a suggestion.

Disclaimer

THIS CODE IS PROVIDED AS IS WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.