0.4.6 • Published 6 years ago

sp-formgen-react v0.4.6

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

SharePoint React Form Generator with UI Fabric React Components

All of you are very welcome to contribute with this project! Also my other project formgen-react. This project is only the injection for SharePoint for the formgen-react project. See formgen-react documentation.

[Join the chat at https://gitter.im/formgen-react/Lobby](https://gitter.im/formgen-react/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [npm version](http://badge.fury.io/js/sp-formgen-react) [License: MIT](https://opensource.org/licenses/MIT) [Build Status](https://travis-ci.org/hilkenan/sp-formgen-react) [Dependency Status](https://david-dm.org/hilkenan/sp-formgen-react) [Downloads](https://npmjs.org/package/sp-formgen-react)

Features

  • Same as for formgen-react project
  • Replace the People Picker control with a SharePoint People Picker control
  • Dependency Injection for SharePoint List loading for the controls:
    • DropDonw
    • Combobox
    • Choice Group
    • Cascading Dropdonw (over multiple lists)
  • Load translated list content from sharepoint

Installation

The package can be installed via NPM:

npm install sp-formgen-react --save

Documentation

Full documentation from formgen-react Full documentation from sp-formgen-react

Configuration

The example below shows how to use the form generator with a simple json definition. This JSON need to map to the JSON schema:

import * as React from 'react';
import Form from 'formgen-react';
var jsonForm = require('./test.json');

export class Example extends React.Component {
render() {
  return (
  <SPForm 
    useLocalHost={ false }
    onCancelForm={ () => console.log("cancel click") }
    onSubmitForm={ (formData:any) => console.log("submit click: " + JSON.stringify(formData)) }
    jsonFormData={ jsonForm }  />
);
}

The above ./test.json file could look like this:

{
     "$schema": "../schemas/jfrom-schema.json",
     "id": "testform",
     "theme": "red",
     "title": "Test EN",
     "title_trans": {
         "de": "Test DE",
         "fr": "Test FR",
         "it": "Test IT"
    },
	"sp_config": {
		"lists": [{
			"key": "configKeyList",
			"config": {
				"view_name": "All Elementes",
				"key_field": "ID",
				"list_name": "yoursharepointlist",
				"display_fields": [{
					"internal_name": "Title"
				}]
			}
        }]
    },
    "rows": [{
        "columns": [{
			"controls": [{
                "id": "choiceGroup",
				"title": "ChoiceGroup",
				"dataProviderConfigKeys": [ "configKeyList" ],
                "control_type": [ "ChoiceGroup" ],
                "label_position": [ "Top"]
            }]
        }]
    }]
 }

The JSON has to fit the Schema Definition: [Form Schema](src/schemas/sp-jfrom-schema.json) [SharePoint Config](src/schemas/sp-databinder-config-schema.json) You need also the following global Schemas: [Translation](src/schemas/translation-schema.json) [Object Translation](src/schemas/objecttranslation-schema.json)

Local Development

The master branch contains the latest version of the Form component. To start your example app, use the following steps: 1. npm run proxy 2. Enter your SharePoint Environment url with credentials 3. Ctrl Brack to stop the server 4. npm run serve

We use sp-rest-proxy as server to route the calls to an sharePoint applicaiton. For more info see this module. With "npm run serve" you start this proxy AND a simple webserver on http://localhost:3000. The proxy for your SharePoint runs at http://localhost:4323.

Remark, that the used SharePoint Poeple Picker nor correctly runs with the proxy server. It shows the control but no users are found.

Publishing to SharePoint

When you publish the solution to sharepoint you has to set the property useLocalHost from the SPForm to false:

  <SPForm 
    useLocalHost={ false } />

otherwise it will still search sharepoint at your localhost proxy.

License

Copyright (c) 2018 to hilkenan and individual contributors. Licensed under MIT license, see LICENSE for the full license.

0.4.6

6 years ago

0.4.5

6 years ago

0.4.4

6 years ago

0.4.3

6 years ago

0.4.2

6 years ago

0.4.1

6 years ago

0.4.0

6 years ago

0.3.8

6 years ago

0.3.7

6 years ago

0.3.6

6 years ago

0.3.5

6 years ago

0.3.4

6 years ago

0.3.3

6 years ago

0.3.2

6 years ago

0.3.1

6 years ago

0.3.0

6 years ago

0.2.1

6 years ago

0.2.0

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago