Some helpful information
Last active
November 17, 2018 19:17
-
-
Save travist/a43350b9ce8b575a0c249e9ec0d41a9b to your computer and use it in GitHub Desktop.
Angular Custom Form Builder
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<label for="title">Title</label> | |
<input name="title" id="title" type="textfield" class="form-control" /><br/> | |
<form-builder [form]="form" [options]="options"></form-builder> | |
<br/> | |
<button class="btn btn-primary" (click)="saveForm($event)">Save Form</button> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Component, AfterViewInit, ViewChild } from '@angular/core'; | |
import { FormioAuthService } from 'angular-formio/auth'; | |
import {FormBuilderComponent, FormioAppConfig} from 'angular-formio'; | |
import Formio from 'formiojs/Formio'; | |
@Component({ | |
templateUrl: './formbuilder.html' | |
}) | |
export class FormBuilderComponent implements AfterViewInit { | |
public form: object = {components: []}; | |
public options: any = { | |
builder: { | |
basic: false, | |
advanced: false, | |
data: false, | |
custom: { | |
title: 'Custom Components', | |
default: true, | |
weight: 10, | |
components: { | |
firstName: { | |
title: 'First Name', | |
key: 'firstName', | |
icon: 'fa fa-terminal', | |
schema: { | |
label: 'First Name', | |
type: 'textfield', | |
key: 'firstName', | |
input: true | |
} | |
}, | |
lastName: { | |
title: 'Last Name', | |
key: 'lastName', | |
icon: 'fa fa-terminal', | |
schema: { | |
label: 'Last Name', | |
type: 'textfield', | |
key: 'lastName', | |
input: true | |
} | |
}, | |
email: { | |
title: 'Email', | |
key: 'email', | |
icon: 'fa fa-at', | |
schema: { | |
label: 'Email', | |
type: 'email', | |
key: 'email', | |
input: true | |
} | |
} | |
} | |
} | |
} | |
}; | |
public builder: any = null; | |
@ViewChild(FormBuilderComponent) formBuilder: FormBuilderComponent; | |
constructor(public auth: FormioAuthService, public config: FormioAppConfig) { } | |
ngAfterViewInit() { | |
this.formBuilder.ready.then((formio) => { | |
this.builder = formio; | |
}); | |
} | |
saveForm() { | |
const title: string = document.getElementById('title').value; | |
const form = this.builder.schema; | |
form.title = title; | |
form.path = title.replace(/[^A-Za-z]*/g, '').toLowerCase(); | |
form.name = title.replace(/[^A-Za-z]*/g, '').toLowerCase(); | |
(new Formio(this.config.appUrl)).saveForm(form).then(function(savedForm) { | |
console.log(savedForm); | |
}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment