| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- /**
- * Account Settings - Security
- */
-
- 'use strict';
-
- document.addEventListener('DOMContentLoaded', function (e) {
- (function () {
- const formChangePass = document.querySelector('#formAccountSettings'),
- formApiKey = document.querySelector('#formAccountSettingsApiKey');
-
- // Form validation for Change password
- if (formChangePass) {
- const fv = FormValidation.formValidation(formChangePass, {
- fields: {
- currentPassword: {
- validators: {
- notEmpty: {
- message: 'Please current password'
- },
- stringLength: {
- min: 8,
- message: 'Password must be more than 8 characters'
- }
- }
- },
- newPassword: {
- validators: {
- notEmpty: {
- message: 'Please enter new password'
- },
- stringLength: {
- min: 8,
- message: 'Password must be more than 8 characters'
- }
- }
- },
- confirmPassword: {
- validators: {
- notEmpty: {
- message: 'Please confirm new password'
- },
- identical: {
- compare: function () {
- return formChangePass.querySelector('[name="newPassword"]').value;
- },
- message: 'The password and its confirm are not the same'
- },
- stringLength: {
- min: 8,
- message: 'Password must be more than 8 characters'
- }
- }
- }
- },
- plugins: {
- trigger: new FormValidation.plugins.Trigger(),
- bootstrap5: new FormValidation.plugins.Bootstrap5({
- eleValidClass: '',
- rowSelector: '.form-control-validation'
- }),
- submitButton: new FormValidation.plugins.SubmitButton(),
- // Submit the form when all fields are valid
- // defaultSubmit: new FormValidation.plugins.DefaultSubmit(),
- autoFocus: new FormValidation.plugins.AutoFocus()
- },
- init: instance => {
- instance.on('plugins.message.placed', function (e) {
- if (e.element.parentElement.classList.contains('input-group')) {
- e.element.parentElement.insertAdjacentElement('afterend', e.messageElement);
- }
- });
- }
- });
- }
-
- // Form validation for API key
- if (formApiKey) {
- const fvApi = FormValidation.formValidation(formApiKey, {
- fields: {
- apiKey: {
- validators: {
- notEmpty: {
- message: 'Please enter API key name'
- }
- }
- }
- },
- plugins: {
- trigger: new FormValidation.plugins.Trigger(),
- bootstrap5: new FormValidation.plugins.Bootstrap5({
- eleValidClass: ''
- }),
- submitButton: new FormValidation.plugins.SubmitButton(),
- // Submit the form when all fields are valid
- // defaultSubmit: new FormValidation.plugins.DefaultSubmit(),
- autoFocus: new FormValidation.plugins.AutoFocus()
- },
- init: instance => {
- instance.on('plugins.message.placed', function (e) {
- if (e.element.parentElement.classList.contains('input-group')) {
- e.element.parentElement.insertAdjacentElement('afterend', e.messageElement);
- }
- });
- }
- });
- }
- })();
- });
-
- // Select2 (jquery)
- $(function () {
- var select2 = $('.select2');
-
- // Select2 API Key
- if (select2.length) {
- select2.each(function () {
- var $this = $(this);
- $this.wrap('<div class="position-relative"></div>');
- $this.select2({
- dropdownParent: $this.parent()
- });
- });
- }
- });
|