mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/15766] Docblocks, comments and longhand variable names
PHPBB3-15766
This commit is contained in:
parent
18e75202d7
commit
87fe2847f0
1 changed files with 38 additions and 13 deletions
|
@ -269,8 +269,14 @@ function mark_one_option(id, field_name, s) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Reset role dropdown field to Select role... if an option gets changed
|
* (Re)set the permission role dropdown.
|
||||||
*/
|
*
|
||||||
|
* Try and match the set permissions to an existing role.
|
||||||
|
* Otherwise reset the dropdown to "Select a role.."
|
||||||
|
*
|
||||||
|
* @param {string} id The fieldset identifier
|
||||||
|
* @returns {void}
|
||||||
|
*/
|
||||||
function reset_role(id) {
|
function reset_role(id) {
|
||||||
var t = document.getElementById(id);
|
var t = document.getElementById(id);
|
||||||
|
|
||||||
|
@ -278,14 +284,16 @@ function reset_role(id) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Before resetting the role dropdown, try and match any permission role
|
||||||
var parent = t.parentNode,
|
var parent = t.parentNode,
|
||||||
roleId = match_role_settings(id.replace('role', 'perm')),
|
roleId = match_role_settings(id.replace('role', 'perm')),
|
||||||
text = no_role_assigned,
|
text = no_role_assigned,
|
||||||
index = 0;
|
index = 0;
|
||||||
|
|
||||||
|
// If a role permissions was matched, grab that option's value and index
|
||||||
if (roleId) {
|
if (roleId) {
|
||||||
for (var i = 0; i < t.options.length; i++) {
|
for (var i = 0; i < t.options.length; i++) {
|
||||||
if (t.options[i].value == roleId) {
|
if (parseInt(t.options[i].value, 10) === roleId) {
|
||||||
text = t.options[i].text;
|
text = t.options[i].text;
|
||||||
index = i;
|
index = i;
|
||||||
break;
|
break;
|
||||||
|
@ -293,9 +301,11 @@ function reset_role(id) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Update the select's value and selected index
|
||||||
t.value = roleId;
|
t.value = roleId;
|
||||||
t.options[index].selected = true;
|
t.options[index].selected = true;
|
||||||
|
|
||||||
|
// Update the dropdown trigger to show the new value
|
||||||
parent.querySelector('span.dropdown-trigger').innerText = text;
|
parent.querySelector('span.dropdown-trigger').innerText = text;
|
||||||
parent.querySelector('input[data-name^=role]').value = roleId;
|
parent.querySelector('input[data-name^=role]').value = roleId;
|
||||||
}
|
}
|
||||||
|
@ -304,7 +314,7 @@ function reset_role(id) {
|
||||||
* Load role and set options accordingly
|
* Load role and set options accordingly
|
||||||
*/
|
*/
|
||||||
function set_role_settings(role_id, target_id) {
|
function set_role_settings(role_id, target_id) {
|
||||||
settings = role_options[role_id];
|
var settings = role_options[role_id];
|
||||||
|
|
||||||
if (!settings) {
|
if (!settings) {
|
||||||
return;
|
return;
|
||||||
|
@ -318,32 +328,47 @@ function set_role_settings(role_id, target_id) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function match_role_settings(id)
|
/**
|
||||||
{
|
* Match the set permissions against the available roles.
|
||||||
var fs = document.getElementById(id),
|
*
|
||||||
cbs = fs.getElementsByTagName('input'),
|
* @param {string} id The parent fieldset identifier
|
||||||
|
* @return {number} The permission role identifier
|
||||||
|
*/
|
||||||
|
function match_role_settings(id) {
|
||||||
|
var fieldset = document.getElementById(id),
|
||||||
|
radios = fieldset.getElementsByTagName('input'),
|
||||||
set = {};
|
set = {};
|
||||||
|
|
||||||
for (var i = 0; i < cbs.length; i++) {
|
// Iterate over all the radio buttons
|
||||||
var matches = cbs[i].id.match(/setting\[\d+]\[\d+]\[([a-z_]+)]/);
|
for (var i = 0; i < radios.length; i++) {
|
||||||
|
var matches = radios[i].id.match(/setting\[\d+]\[\d+]\[([a-z_]+)]/);
|
||||||
|
|
||||||
if (matches !== null && cbs[i].checked && cbs[i].value !== '-1') {
|
// Make sure the name attribute matches, the radio is checked and it is not the "No" (-1) value.
|
||||||
set[matches[1]] = parseInt(cbs[i].value);
|
if (matches !== null && radios[i].checked && radios[i].value !== '-1') {
|
||||||
|
set[matches[1]] = parseInt(radios[i].value, 10);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Sort and stringify the 'set permissions' object
|
||||||
set = sort_and_stringify(set);
|
set = sort_and_stringify(set);
|
||||||
|
|
||||||
|
// Iterate over the available role options and return the first match
|
||||||
for (var r in role_options)
|
for (var r in role_options)
|
||||||
{
|
{
|
||||||
if (sort_and_stringify(role_options[r]) === set) {
|
if (sort_and_stringify(role_options[r]) === set) {
|
||||||
return r;
|
return parseInt(r, 10);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sort and stringify an Object so it can be easily compared against another object.
|
||||||
|
*
|
||||||
|
* @param {object} obj The object to sort (by key) and stringify
|
||||||
|
* @return {string} The sorted object as a string
|
||||||
|
*/
|
||||||
function sort_and_stringify(obj) {
|
function sort_and_stringify(obj) {
|
||||||
return JSON.stringify(Object.keys(obj).sort().reduce(function (result, key) {
|
return JSON.stringify(Object.keys(obj).sort().reduce(function (result, key) {
|
||||||
result[key] = obj[key];
|
result[key] = obj[key];
|
||||||
|
|
Loading…
Add table
Reference in a new issue