Extended profile - namespace JavaScript functions

This commit is contained in:
Zach Copley 2011-03-15 19:33:05 -07:00
parent 9ea7946172
commit b11a2faf54
1 changed files with 27 additions and 28 deletions

View File

@ -1,4 +1,6 @@
var reorder = function(class) { var SN_EXTENDED = SN_EXTENDED || {};
SN_EXTENDED.reorder = function(class) {
console.log("QQQ Enter reorder"); console.log("QQQ Enter reorder");
var divs = $.find('div[class=' + class + ']'); var divs = $.find('div[class=' + class + ']');
@ -9,7 +11,7 @@ var reorder = function(class) {
$(divs).each(function(i, div) { $(divs).each(function(i, div) {
console.log("ROW " + i); console.log("ROW " + i);
$(div).find('a.remove_row').show(); $(div).find('a.remove_row').show();
replaceIndex(rowIndex(div), i); SN_EXTENDED.replaceIndex(SN_EXTENDED.rowIndex(div), i);
}); });
$this = $(divs).last().closest('tr'); $this = $(divs).last().closest('tr');
@ -23,19 +25,19 @@ var reorder = function(class) {
}; };
var rowIndex = function(div) { SN_EXTENDED.rowIndex = function(div) {
var idstr = $(div).attr('id'); var idstr = $(div).attr('id');
var id = idstr.match(/\d+/); var id = idstr.match(/\d+/);
console.log("id = " + id); console.log("id = " + id);
return id; return id;
}; };
var rowCount = function(class) { SN_EXTENDED.rowCount = function(class) {
var divs = $.find('div[class=' + class + ']'); var divs = $.find('div[class=' + class + ']');
return divs.length; return divs.length;
}; };
var replaceIndex = function(elem, oldIndex, newIndex) { SN_EXTENDED.replaceIndex = function(elem, oldIndex, newIndex) {
$(elem).find('*').each(function() { $(elem).find('*').each(function() {
$.each(this.attributes, function(i, attrib) { $.each(this.attributes, function(i, attrib) {
var regexp = /extprofile-.*-\d.*/; var regexp = /extprofile-.*-\d.*/;
@ -49,12 +51,12 @@ var replaceIndex = function(elem, oldIndex, newIndex) {
}); });
} }
var resetRow = function(elem) { SN_EXTENDED.resetRow = function(elem) {
$(elem).find('input').attr('value', ''); $(elem).find('input').attr('value', '');
$(elem).find("select option[value='office']").attr("selected", true); $(elem).find("select option[value='office']").attr("selected", true);
} }
var addRow = function() { SN_EXTENDED.addRow = function() {
var div = $(this).closest('div'); var div = $(this).closest('div');
var id = $(div).attr('id'); var id = $(div).attr('id');
var class = $(div).attr('class'); var class = $(div).attr('class');
@ -64,44 +66,41 @@ var addRow = function() {
var tr = $(trold).removeClass('supersizeme'); var tr = $(trold).removeClass('supersizeme');
var newtr = $(tr).clone(); var newtr = $(tr).clone();
var newIndex = parseInt(index) + 1; var newIndex = parseInt(index) + 1;
replaceIndex(newtr, index, newIndex); SN_EXTENDED.replaceIndex(newtr, index, newIndex);
resetRow(newtr); SN_EXTENDED.resetRow(newtr);
$(tr).after(newtr); $(tr).after(newtr);
reorder(class); SN_EXTENDED.reorder(class);
}; };
var removeRow = function() { SN_EXTENDED.removeRow = function() {
var div = $(this).closest('div'); var div = $(this).closest('div');
var id = $(div).attr('id'); var id = $(div).attr('id');
var class = $(div).attr('class'); var class = $(div).attr('class');
cnt = rowCount(class); cnt = SN_EXTENDED.rowCount(class);
console.debug("removeRow - cnt = " + cnt); console.debug("removeRow - cnt = " + cnt);
if (cnt > 1) { if (cnt > 1) {
var target = $(this).closest('tr'); var target = $(this).closest('tr');
target.remove(); target.remove();
reorder(class); SN_EXTENDED.reorder(class);
} }
}; };
var init = function() { $(document).ready(
reorder('phone-item');
reorder('experience-item'); function() {
reorder('education-item');
reorder('im-item'); var multifields = ["phone-item", "experience-item", "education-item", "im-item"];
for (f in multifields) {
SN_EXTENDED.reorder(multifields[f]);
}
$("input#extprofile-manager").autocomplete({ $("input#extprofile-manager").autocomplete({
source: 'finduser', source: 'finduser',
minLength: 2 }); minLength: 2 });
} $('.add_row').live('click', SN_EXTENDED.addRow);
$('.remove_row').live('click', SN_EXTENDED.removeRow);
$(document).ready( });
function() {
init();
$('.add_row').live('click', addRow);
$('.remove_row').live('click', removeRow);
}
);