summaryrefslogtreecommitdiff
path: root/js/form/ValidationTextArea.js
blob: c53260f400d543031e50a2b0dcb34faf18539805 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// https://stackoverflow.com/questions/19317258/how-to-use-dijit-textarea-validation-dojo-1-9
/* eslint-disable no-new */
/* global define */

define(["dojo/_base/declare", "dojo/_base/lang", "dijit/form/SimpleTextarea", "dijit/form/ValidationTextBox"],
    function(declare, lang, SimpleTextarea, ValidationTextBox) {

        return declare('fox.form.ValidationTextArea', [SimpleTextarea, ValidationTextBox], {
            constructor: function(params){
                this.constraints = {};
                this.baseClass += ' dijitValidationTextArea';
            },
            // eslint-disable-next-line no-template-curly-in-string
            templateString: "<textarea ${!nameAttrSetting} data-dojo-attach-point='focusNode,containerNode,textbox' autocomplete='off'></textarea>",
            validator: function(value, constraints) {
                //console.log(this, value, constraints);

                if (this.required && this._isEmpty(value))
                    return false;

                if (this.validregexp) {
                    try {
                        new RegExp("/" + value + "/");
                    } catch (e) {
                        return false;
                    }
                }

                return value.match(new RegExp(this._computeRegexp(constraints)));

                /*return (new RegExp("^(?:" + this._computeRegexp(constraints) + ")"+(this.required?"":"?")+"$",["m"])).test(value) &&
                    (!this.required || !this._isEmpty(value)) &&
                    (this._isEmpty(value) || this.parse(value, constraints) !== undefined); // Boolean*/
            }
        })
    });