Skip to content

Instantly share code, notes, and snippets.

@travist
Last active November 30, 2019 23:12
Show Gist options
  • Save travist/59fa77086ec899e24992fc1508e61075 to your computer and use it in GitHub Desktop.
Save travist/59fa77086ec899e24992fc1508e61075 to your computer and use it in GitHub Desktop.
Angular 5 + Form.io Custom Component
import { Component } from '@angular/core';
import { Router } from '@angular/router';
import { FormioAuthService } from 'angular-formio/auth';
import { AppConfig } from '../config';
import { FormioForm } from 'formiojs/full';
import from './CheckMatrix'
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
export class AppComponent {
title = 'app';
offlineCount = 0;
offlineMode: any = null;
offlineError = '';
constructor(private auth: FormioAuthService, private router: Router) {
this.auth.onLogin.subscribe(() => {
this.router.navigate(['/home']);
});
this.auth.onLogout.subscribe(() => {
this.router.navigate(['/auth/login']);
});
this.auth.onRegister.subscribe(() => {
this.router.navigate(['/home']);
});
// Register our custom components.
FormioForm.registerComponent('checkmatrix', CheckMatrix);
}
}
/**
* This file shows how to create a custom component and register that within an Angular application.
*
* Get the base component class by referencing Formio.Components.components map.
*/
import BaseComponent from 'formiojs/components/base/Base';
import TableComponent from 'formiojs/components/table/Table';
import Components from 'formiojs/components/Components';
/**
* Create a new CheckMatrixComponent "class" using ES5 class inheritance notation.
* https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Objects/Inheritance
*
* Here we will derive from the base component which all Form.io form components derive from.
*
* @param component
* @param options
* @param data
* @constructor
*/
export default class CheckMatrixComponent extends BaseComponent {
/**
* Define what the default JSON schema for this component is. We will derive from the BaseComponent
* schema and provide our overrides to that.
* @return {*}
*/
static schema() {
return BaseComponent.schema({
type: 'checkmatrix',
numRows: 3,
numCols: 3
});
}
/**
* Register this component to the Form Builder by providing the "builderInfo" object.
*/
static get builderInfo() {
return {
title: 'Check Matrix',
group: 'basic',
icon: 'fa fa-table',
weight: 70,
documentation: 'http://help.form.io/userguide/#table',
schema: CheckMatrixComponent.schema()
};
}
/**
* Tell the renderer how to build this component using DOM manipulation.
*/
build() {
this.element = this.ce('div', {
class: 'table-responsive'
});
this.createLabel(this.element);
var tableClass = 'table ';
['striped', 'bordered', 'hover', 'condensed'].forEach(function(prop) {
if (this.component[prop]) {
tableClass += `table-${prop} `;
}
}.bind(this));
var table = this.ce('table', {
class: tableClass
});
// Build the body.
var tbody = this.ce('tbody');
this.inputs = [];
this.checks = [];
for (let i = 0; i < this.component.numRows; i++) {
var tr = this.ce('tr');
this.checks.push([]);
for (let j = 0; j < this.component.numCols; j++) {
var td = this.ce('td');
this.checks[i][j] = this.ce('input', {
type: 'checkbox'
});
this.addInput(this.checks[i][j], td);
tr.appendChild(td);
}
tbody.appendChild(tr);
}
table.appendChild(tbody);
this.element.appendChild(table);
}
/**
* Provide the input element information. Because we are using checkboxes, the change event needs to be
* 'click' instead of the default 'change' from the BaseComponent.
*
* @return {{type, component, changeEvent, attr}}
*/
elementInfo() {
const info = super.elementInfo();
info.changeEvent = 'click';
return info;
}
/**
* Tell the renderer how to "get" a value from this component.
*
* @return {Array}
*/
getValue() {
var value = [];
this.checks.forEach((row, rowIndex) => {
value[rowIndex] = [];
row.forEach((col, colIndex) => {
value[rowIndex][colIndex] = !!col.checked;
});
});
return value;
}
/**
* Tell the renderer how to "set" the value of this component.
*
* @param value
* @return {boolean}
*/
setValue(value) {
if (!value) {
return;
}
this.checks.forEach((row, rowIndex) => {
if (!value[rowIndex]) {
return false;
}
row.forEach((col, colIndex) => {
if (!value[rowIndex][colIndex]) {
return false;
}
let checked = value[rowIndex][colIndex] ? 1 : 0;
col.value = checked;
col.checked = checked;
});
});
}
}
// Use the table component edit form.
CheckMatrixComponent.editForm = TableComponent.editForm;
// Register the component to the Formio.Components registry.
Components.addComponent('checkmatrix', CheckMatrixComponent);
{
"type": "checkmatrix",
"input": true,
"numRows": 5,
"numColumns": 5,
"label": "Check Matrix",
"key": "checkMatrix"
}
@srinvasneelamraju
Copy link

any html code for rendering formio custom component..
I have to render custom formio select drop down component in to my application.For that i created one js file like Select.js and i had taken the Select.js code from https://formio.github.io/formio.js/docs/class/src/components/select/Select.js~SelectComponent.html
and also i registered that component into my custom_formio.component.ts as
Formio.registerComponent('custom_formio', SelectComponent);
where custom_formio is the name of my component which having Select.js file and other ts and html and css files. and SelectComponent is the name of class name which is declared in Select.js file.
So i am getting confusion that which code i have to write in html to render select dropdown into my application

@srinvasneelamraju
Copy link

how to disable the popup in check matrix component

@felipebelluco
Copy link

@srinvasneelamraju did you find the solution?

@felipebelluco
Copy link

@travis I'm trying to override the method createModal so as the build method was, but it's never called. Do you know how to do that?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment