blob: 2a298f5864de0c721a4d666b4aa8d6b4e218b2bb (
plain) (
blame)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
/*!
* UF Config Manager - Config Manager Widget
*
* @link https://github.com/lcharette/UF_ConfigManager
* @copyright Copyright (c) 2016 Louis Charette
* @license https://github.com/lcharette/UF_ConfigManager/blob/master/LICENSE (MIT License)
*/
(function( $ ){
'use strict';
var options = {};
var methods = {
init : function(optionsArg) {
// Setup options
options = $.extend( options, $.fn.ConfigManager.defaultOptions, optionsArg );
// To use this inside sub-functions
var elements = this;
// Get the currently selected panel from the url anchor and switch to it
var hash = window.location.hash.substr(1);
if (hash != undefined && hash !== "") {
$(elements).hide();
$("#"+hash).show();
// Change the menu
$(options.menu).find("li").removeClass('active');
$(options.menu).find('a[href="#'+hash+'"]').parent().addClass("active");
}
// Set the menu
$(options.menu).find("li > a").click(function () {
// Change the menu first
$(options.menu).find("li").removeClass('active');
$(this).parent().addClass("active");
// Change the displayed forms next
$(elements).hide();
$("#"+$(this).data('target')).show();
});
// For each element the plugin is called on
this.each(function() {
// To use this inside sub-functions
var formPanel = this;
// ufForm instance. Don't need FormGeneator now
$(formPanel).find("form").ufForm({
validators: options.validators[ $(formPanel).attr('id') ],
msgTarget: $(formPanel).find("form .form-alerts")
}).on("submitSuccess.ufForm", function() {
// Forward to settings page on success
window.location.reload(true);
}).on("submitError.ufForm", function() {
$(formPanel).find("form .form-alerts").show();
});
});
return;
}
};
/*
* Main plugin function
*/
$.fn.ConfigManager = function(methodOrOptions) {
if ( methods[methodOrOptions] ) {
return methods[ methodOrOptions ].apply( this, Array.prototype.slice.call( arguments, 1 ));
} else if ( typeof methodOrOptions === 'object' || ! methodOrOptions ) {
// Default to "init"
return methods.init.apply( this, arguments );
} else {
$.error( 'Method ' + methodOrOptions + ' does not exist on jQuery.ConfigManager' );
}
};
/*
* Default plugin options
*/
$.fn.ConfigManager.defaultOptions = {
menu : $(".configMenu"),
validators: {}
};
})( jQuery );
|