You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gristlabs_grist-core/app/client/components/DocConfigTab.js

35 lines
1.0 KiB

var dispose = require('../lib/dispose');
var dom = require('../lib/dom');
var ValidationPanel = require('./ValidationPanel');
/**
* Document level configuration settings.
* @param {Object} options.gristDoc A reference to the GristDoc object
* @param {Function} docName A knockout observable containing a String
*/
function DocConfigTab(options, docName) {
this.gristDoc = options.gristDoc;
// Panel to configure validation rules.
this.validationPanel = this.autoDispose(ValidationPanel.create({gristDoc: this.gristDoc}));
this.autoDispose(
this.gristDoc.addOptionsTab(
'Validate Data',
dom('span.glyphicon.glyphicon-check'),
this.buildValidationsConfigDomObj(),
{ 'shortLabel': 'Valid' }
)
);
}
dispose.makeDisposable(DocConfigTab);
DocConfigTab.prototype.buildValidationsConfigDomObj = function() {
return [{
'buildDom': this.validationPanel.buildDom.bind(this.validationPanel),
'keywords': ['document', 'validations', 'rules', 'validate']
}];
};
module.exports = DocConfigTab;