0.9.1 • Published 6 years ago

generator-spreactformfields v0.9.1

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

generator-spreactformfields (SharePoint classic-to-react list form transformation)

npm version

Installation

First, install Yeoman, and two generators: 1. generator-sppp 2. generator-spreactformfields

using npm (we assume you have pre-installed node.js).

npm install -g yo
npm install -g generator-sppp
npm install -g generator-spreactformfields

Then generate your new project:

yo spreactformfields

Bring Office UI Fabric-based forms into SharePoint 2013 / 2016 / Online

This project was intended as NodeJS learning ground, but quickly became an attempt to serve the awesome SharePoint developer community by providing a super easy solution that developers can use to transform OOTB ugly SharePoint forms into beautiful React-based forms.
Insipred by Denis Molodtsov's AngularForms and spforms solutions that do lightweight form transformations in AngularJS.
The scaffolding is based on another awesome Microsoft MVP (which I think should be granted MVP for life), Andrew Koltyakov's yeoman generator, called SharePoint Push'n'Pull
The working React components, such as ListForm and FormField and their interfaces are provided by a separate NPM package that I poured my soul into (so, if it's bad, don't be very harsh!), called sp-react-formfields

Description

The output of this scaffolded solution will be (by default) in the ./dist folder and will contain webpacked .JS / .CSS and .HTML files. The intended purpose of them is to use .HTML files as content sources for Content Editor WebParts (CEWPs). Internally solution relies on a @pnpjs API.

The structure of the scaffolded solution is

img

You are interested in 4 folders:

  • config - this will contain information about your target site (collection), deployment folder in that site (like _catalogs/mycode/... or even just SiteAssets/mycode/... -- your choice!). Fill config by calling NPM RUN CONFIG
  • config / app.json - change "spFolder" property to specify where you want webpacked files to be uploaded
  • scripts - open scripts/root.tsx file if you want to write custom UI for your form (and not just use default one line for one field kind of deal). Look for a function called renderCustomFieldLogic and modify it to return your custom JSX. to create form fields use FormField / FormFieldLabel components and pass internal name as string.
  • webparts - this folder contains two Handlebars template files which if you look at them are just HTML inside with some parameters substituted during build process and it is out of them that we are getting resulting *.HTML files in the ./dist folder. Once ./dist is uploaded - (we have a gulp task for this!!) they will be ready to be referenced in the CEWPs
    • listform.cewp.hbs - this file is designed to be referenced in CEWPs, so good for embedding in pages
    • listform.hbs - this file is a self-sufficient bare-bones HTML page, that can be linked to directly, just pass URL parameters
      • listid - SharePoint list GUID (required)
      • itemid - ID of SharePoint list item (optional)
      • fm - Form mode integer. New: 1, Display: 2, Edit: 3 (optional, default - new form)
      • ContentTypeId - string identifier of a SharePoint content type (optional, when specified fields will be loaded according to ctype settings)
  • tools / tasks this contains two gulp tasks that I specifically wrote for "enhancing" and "de-enhancing" SharePoint list forms
    • call gulp replaceListForm to connect to your configured site, select a list and a Form Mode (New / Edit / Display / All) to transform
    • call gulp restoreListForm to connect to your configured site, select a list and Form Mode to revert back to SharePoint OOTB form

Package managers switch

With --package-manager (or --pm), a package manager can be selected. Possible managers are: pnpm, yarm and npm. npm is used by default and also as a fallback option.

Use yarn:

yo sppp --pm yarn

Use pnpm:

yo sppp --pm pnpm

Features

  • Readily available scaffolding solution
  • Fork, clone and with a few actions you will transform any SharePoint list which uses standard OOTB fields
  • Almost all of the OOTB fields are supported:
    • Text
    • Note (Rich mode as well!)
    • Boolean
    • Attachments!
    • Choice, Multichoice
    • Lookup, Multilookup
    • User, Usermulti
    • URL / Picture
    • Number
    • Currency
    • DateTime
    • Taxonomy!
  • Fields are validation-aware:
    • They react to required setting
    • Number and currency fields know about Min/Max settings
    • Text field reacts to 255 default char limit and to custom limit setting
  • User field correctly suggests principals only from a specific SharePoint group, if that setting is enabled
  • Lookup field renders values from correct lookup list field if anything other than "Title" is in the settings
  • Attachment field is based on DropzoneJS and is basically a droppable area. But users can also click on the area to evoke a standard browser file select dialog

Main components from 'sp-react-formfields'

- ListForm - top-level element, expects information about a list passed to it
- FormField - main component responsible for rendering a particular field from a SharePoint list. Only required that internal name is provided, decided what to render internally
- FormFieldLabel - complimentary component to FormField, you might want to use this to render field's Display Name. It will include red-colored asterisk when a field is marked as required. Also only expects an internal name to be provided

Minimal path to awesome

1. Open code editor after scaffolding with "yo spreactformfields"
2. Run

...

$ npm run config

Open config/app.json and edit "spFolder" property if you need to change the path where webpacked files will be uploaded

To build the solution use

$ npm run build (same as gulp build --prod, this will build in production mode)
or
$ gulp build (to build in dev mode)

To push your build files to a place in your target site

$ gulp push (will push all files)
or
$ gulp push --diff (to only push files that differ from what is in SP)

Useful command while developing - this will launch a background task that on every save of a file will run build and push --diff tasks

$ gulp watch

Transfomation example

img

0.9.1

6 years ago

0.9.0

6 years ago

0.8.1

6 years ago

0.8.0

6 years ago

0.7.3

6 years ago

0.7.2

6 years ago

0.7.1

6 years ago

0.7.0

6 years ago