[ticket/12982] Refactoring: Cleaned up phpbb.search

PHPBB3-12982
This commit is contained in:
Callum Macrae 2014-08-13 23:18:50 +01:00
parent d79fec1c3f
commit 9578fdf7d7
3 changed files with 77 additions and 62 deletions

View file

@ -513,9 +513,9 @@ phpbb.search.cleanKeyword = function(keyword) {
* *
* @return string Clean string. * @return string Clean string.
*/ */
phpbb.search.getKeyword = function(el, keyword, multiline) { phpbb.search.getKeyword = function($el, keyword, multiline) {
if (multiline) { if (multiline) {
var line = phpbb.search.getKeywordLine(el); var line = phpbb.search.getKeywordLine($el);
keyword = keyword.split('\n').splice(line, 1); keyword = keyword.split('\n').splice(line, 1);
} }
return phpbb.search.cleanKeyword(keyword); return phpbb.search.cleanKeyword(keyword);
@ -525,46 +525,47 @@ phpbb.search.getKeyword = function(el, keyword, multiline) {
* Get the textarea line number on which the keyword resides - for textareas * Get the textarea line number on which the keyword resides - for textareas
* that support multiple keywords (one per line). * that support multiple keywords (one per line).
* *
* @param jQuery el Search textarea. * @param jQuery $el Search textarea.
* @return int * @return int
*/ */
phpbb.search.getKeywordLine = function (el) { phpbb.search.getKeywordLine = function ($el) {
return el.val().substr(0, el.get(0).selectionStart).split('\n').length - 1; return $el.val().substr(0, $el.get(0).selectionStart).split('\n').length - 1;
}; };
/** /**
* Set the value on the input|textarea. If textarea supports multiple * Set the value on the input|textarea. If textarea supports multiple
* keywords, only the active keyword is replaced. * keywords, only the active keyword is replaced.
* *
* @param jQuery el Search input|textarea. * @param jQuery $el Search input|textarea.
* @param string value Value to set. * @param string value Value to set.
* @param bool multiline Whether textarea supports multiple search keywords. * @param bool multiline Whether textarea supports multiple search keywords.
* *
* @return undefined * @return undefined
*/ */
phpbb.search.setValue = function(el, value, multiline) { phpbb.search.setValue = function($el, value, multiline) {
if (multiline) { if (multiline) {
var line = phpbb.search.getKeywordLine(el), var line = phpbb.search.getKeywordLine($el),
lines = el.val().split('\n'); lines = $el.val().split('\n');
lines[line] = value; lines[line] = value;
value = lines.join('\n'); value = lines.join('\n');
} }
el.val(value); $el.val(value);
}; };
/** /**
* Sets the onclick event to set the value on the input|textarea to the selected search result. * Sets the onclick event to set the value on the input|textarea to the selected search result.
* *
* @param jQuery el Search input|textarea. * @param jQuery $el Search input|textarea.
* @param object value Result object. * @param object value Result object.
* @param object container jQuery object for the search container. * @param jQuery $row Result element.
* @param jQuery $container jQuery object for the search container.
* *
* @return undefined * @return undefined
*/ */
phpbb.search.setValueOnClick = function(el, value, row, container) { phpbb.search.setValueOnClick = function($el, value, $row, $container) {
row.click(function() { $row.click(function() {
phpbb.search.setValue(el, value.result, el.attr('data-multiline')); phpbb.search.setValue($el, value.result, $el.attr('data-multiline'));
container.hide(); $container.hide();
}); });
}; };
@ -581,11 +582,11 @@ phpbb.search.setValueOnClick = function(el, value, row, container) {
* @return bool Returns false. * @return bool Returns false.
*/ */
phpbb.search.filter = function(data, event, sendRequest) { phpbb.search.filter = function(data, event, sendRequest) {
var el = $(this), var $this = $(this),
dataName = (el.attr('data-name') !== undefined) ? el.attr('data-name') : el.attr('name'), dataName = ($this.attr('data-name') !== undefined) ? $this.attr('data-name') : $this.attr('name'),
minLength = parseInt(el.attr('data-min-length')), minLength = parseInt($this.attr('data-min-length')),
searchID = el.attr('data-results'), searchID = $this.attr('data-results'),
keyword = phpbb.search.getKeyword(el, data[dataName], el.attr('data-multiline')), keyword = phpbb.search.getKeyword($this, data[dataName], $this.attr('data-multiline')),
cache = phpbb.search.cache.get(searchID), cache = phpbb.search.cache.get(searchID),
proceed = true; proceed = true;
data[dataName] = keyword; data[dataName] = keyword;
@ -598,22 +599,22 @@ phpbb.search.filter = function(data, event, sendRequest) {
// Check min length and existence of cache. // Check min length and existence of cache.
if (minLength > keyword.length) { if (minLength > keyword.length) {
proceed = false; proceed = false;
} else if (cache.last_search) { } else if (cache.lastSearch) {
// Has the keyword actually changed? // Has the keyword actually changed?
if (cache.last_search === keyword) { if (cache.lastSearch === keyword) {
proceed = false; proceed = false;
} else { } else {
// Do we already have results for this? // Do we already have results for this?
if (cache.results[keyword]) { if (cache.results[keyword]) {
var response = {keyword: keyword, results: cache.results[keyword]}; var response = {keyword: keyword, results: cache.results[keyword]};
phpbb.search.handleResponse(response, el, true); phpbb.search.handleResponse(response, $this, true);
proceed = false; proceed = false;
} }
// If the previous search didn't yield results and the string only had characters added to it, // If the previous search didn't yield results and the string only had characters added to it,
// then we won't bother sending a request. // then we won't bother sending a request.
if (keyword.indexOf(cache.last_search) === 0 && cache.results[cache.last_search].length === 0) { if (keyword.indexOf(cache.lastSearch) === 0 && cache.results[cache.lastSearch].length === 0) {
phpbb.search.cache.set(searchID, 'last_search', keyword); phpbb.search.cache.set(searchID, 'lastSearch', keyword);
phpbb.search.cache.setResults(searchID, keyword, []); phpbb.search.cache.setResults(searchID, keyword, []);
proceed = false; proceed = false;
} }
@ -645,7 +646,7 @@ phpbb.search.handleResponse = function(res, el, fromCache, callback) {
} }
var searchID = el.attr('data-results'), var searchID = el.attr('data-results'),
container = $(searchID); $container = $(searchID);
if (this.cache.get(searchID).callback) { if (this.cache.get(searchID).callback) {
callback = this.cache.get(searchID).callback; callback = this.cache.get(searchID).callback;
@ -657,8 +658,8 @@ phpbb.search.handleResponse = function(res, el, fromCache, callback) {
this.cache.setResults(searchID, res.keyword, res.results); this.cache.setResults(searchID, res.keyword, res.results);
} }
this.cache.set(searchID, 'last_search', res.keyword); this.cache.set(searchID, 'lastSearch', res.keyword);
this.showResults(res.results, el, container, callback); this.showResults(res.results, el, $container, callback);
}; };
/** /**
@ -666,26 +667,26 @@ phpbb.search.handleResponse = function(res, el, fromCache, callback) {
* *
* @param array results Search results. * @param array results Search results.
* @param jQuery el Search input|textarea. * @param jQuery el Search input|textarea.
* @param jQuery container Search results container element. * @param jQuery $container Search results container element.
* @param function callback Optional callback to run when assigning each search result. * @param function callback Optional callback to run when assigning each search result.
* *
* @return undefined * @return undefined
*/ */
phpbb.search.showResults = function(results, el, container, callback) { phpbb.search.showResults = function(results, el, $container, callback) {
var resultContainer = $('.search-results', container); var $resultContainer = $('.search-results', $container);
this.clearResults(resultContainer); this.clearResults($resultContainer);
if (!results.length) { if (!results.length) {
container.hide(); $container.hide();
return; return;
} }
var searchID = container.attr('id'), var searchID = $container.attr('id'),
tpl, tpl,
row; row;
if (!this.tpl[searchID]) { if (!this.tpl[searchID]) {
tpl = $('.search-result-tpl', container); tpl = $('.search-result-tpl', $container);
this.tpl[searchID] = tpl.clone().removeClass('search-result-tpl'); this.tpl[searchID] = tpl.clone().removeClass('search-result-tpl');
tpl.remove(); tpl.remove();
} }
@ -696,27 +697,27 @@ phpbb.search.showResults = function(results, el, container, callback) {
row.find('.search-result').html(item.display); row.find('.search-result').html(item.display);
if (typeof callback === 'function') { if (typeof callback === 'function') {
callback.call(this, el, item, row, container); callback.call(this, el, item, row, $container);
} }
row.appendTo(resultContainer).show(); row.appendTo($resultContainer).show();
}); });
container.show(); $container.show();
}; };
/** /**
* Clear search results. * Clear search results.
* *
* @param jQuery container Search results container. * @param jQuery $container Search results container.
* @return undefined * @return undefined
*/ */
phpbb.search.clearResults = function(container) { phpbb.search.clearResults = function($container) {
container.children(':not(.search-result-tpl)').remove(); $container.children(':not(.search-result-tpl)').remove();
}; };
$('#phpbb').click(function(e) { $('#phpbb').click(function() {
var target = $(e.target); var $this = $(this);
if (!target.is('.live-search') && !target.parents().is('.live-search')) { if (!$this.is('.live-search') && !$this.parents().is('.live-search')) {
$('.live-search').hide(); $('.live-search').hide();
} }
}); });
@ -731,7 +732,6 @@ phpbb.history = {};
*/ */
phpbb.history.isSupported = function(fn) { phpbb.history.isSupported = function(fn) {
return !(typeof history === 'undefined' || typeof history[fn] === 'undefined'); return !(typeof history === 'undefined' || typeof history[fn] === 'undefined');
}; };
/** /**
@ -802,10 +802,19 @@ phpbb.timezoneSwitchDate = function(keepSelection) {
// We make a backup of the original dropdown, so we can remove optgroups // We make a backup of the original dropdown, so we can remove optgroups
// instead of setting display to none, because IE and chrome will not // instead of setting display to none, because IE and chrome will not
// hide options inside of optgroups and selects via css // hide options inside of optgroups and selects via css
$timezone.clone().attr('id', 'timezone_copy').css('display', 'none').attr('name', 'tz_copy').insertAfter('#timezone'); $timezone.clone()
.attr('id', 'timezone_copy')
.css('display', 'none')
.attr('name', 'tz_copy')
.insertAfter('#timezone');
} else { } else {
// Copy the content of our backup, so we can remove all unneeded options // Copy the content of our backup, so we can remove all unneeded options
$timezone.replaceWith($timezoneCopy.clone().attr('id', 'timezone').css('display', 'block').attr('name', 'tz')); var $replacement = $timezoneCopy.clone();
$replacement.attr('id', 'timezone')
.css('display', 'block')
.attr('name', 'tz');
$timezone.replaceWith($replacement);
} }
if ($tzDate.val() !== '') { if ($tzDate.val() !== '') {
@ -818,7 +827,7 @@ phpbb.timezoneSwitchDate = function(keepSelection) {
$tzSelectDateSuggest.css('display', 'inline'); $tzSelectDateSuggest.css('display', 'inline');
} }
var $tzOptions = $timezone.children('optgroup[label="' + $tzDate.val() + '"]').children('option') var $tzOptions = $timezone.children('optgroup[label="' + $tzDate.val() + '"]').children('option');
if ($tzOptions.length === 1) { if ($tzOptions.length === 1) {
// If there is only one timezone for the selected date, we just select that automatically. // If there is only one timezone for the selected date, we just select that automatically.
@ -1061,7 +1070,10 @@ phpbb.resizeTextArea = function($items, options) {
return; return;
} }
var maxHeight = Math.min(Math.max(windowHeight - configuration.heightDiff, configuration.minHeight), configuration.maxHeight), var maxHeight = Math.min(
Math.max(windowHeight - configuration.heightDiff, configuration.minHeight),
configuration.maxHeight
),
$item = $(item), $item = $(item),
height = parseInt($item.height()), height = parseInt($item.height()),
scrollHeight = (item.scrollHeight) ? item.scrollHeight : 0; scrollHeight = (item.scrollHeight) ? item.scrollHeight : 0;
@ -1123,7 +1135,7 @@ phpbb.inBBCodeTag = function(textarea, startTags, endTags) {
lastStart = Math.max(lastStart, index); lastStart = Math.max(lastStart, index);
} }
} }
if (lastStart == -1) { if (lastStart === -1) {
return false; return false;
} }
@ -1222,7 +1234,7 @@ phpbb.applyCodeEditor = function(textarea) {
var key = event.keyCode || event.which; var key = event.keyCode || event.which;
// intercept tabs // intercept tabs
if (key == keymap.TAB && if (key === keymap.TAB &&
!event.ctrlKey && !event.ctrlKey &&
!event.shiftKey && !event.shiftKey &&
!event.altKey && !event.altKey &&
@ -1235,7 +1247,7 @@ phpbb.applyCodeEditor = function(textarea) {
} }
// intercept new line characters // intercept new line characters
if (key == keymap.ENTER) { if (key === keymap.ENTER) {
if (inTag()) { if (inTag()) {
var lastLine = getLastLine(true), var lastLine = getLastLine(true),
code = '' + /^\s*/g.exec(lastLine); code = '' + /^\s*/g.exec(lastLine);
@ -1279,26 +1291,29 @@ phpbb.toggleDropdown = function() {
var verticalDirection = options.verticalDirection, var verticalDirection = options.verticalDirection,
offset = $this.offset(); offset = $this.offset();
if (direction == 'auto') { if (direction === 'auto') {
if (($(window).width() - $this.outerWidth(true)) / 2 > offset.left) { if (($(window).width() - $this.outerWidth(true)) / 2 > offset.left) {
direction = 'right'; direction = 'right';
} else { } else {
direction = 'left'; direction = 'left';
} }
} }
parent.toggleClass(options.leftClass, direction == 'left').toggleClass(options.rightClass, direction == 'right'); parent.toggleClass(options.leftClass, direction === 'left')
.toggleClass(options.rightClass, direction === 'right');
if (verticalDirection == 'auto') { if (verticalDirection === 'auto') {
var height = $(window).height(), var height = $(window).height(),
top = offset.top - $(window).scrollTop(); top = offset.top - $(window).scrollTop();
verticalDirection = (top < height * 0.7) ? 'down' : 'up'; verticalDirection = (top < height * 0.7) ? 'down' : 'up';
} }
parent.toggleClass(options.upClass, verticalDirection == 'up').toggleClass(options.downClass, verticalDirection == 'down'); parent.toggleClass(options.upClass, verticalDirection === 'up')
.toggleClass(options.downClass, verticalDirection === 'down');
} }
options.dropdown.toggle(); options.dropdown.toggle();
parent.toggleClass(options.visibleClass, !visible).toggleClass('dropdown-visible', !visible); parent.toggleClass(options.visibleClass, !visible)
.toggleClass('dropdown-visible', !visible);
// Check dimensions when showing dropdown // Check dimensions when showing dropdown
// !visible because variable shows state of dropdown before it was toggled // !visible because variable shows state of dropdown before it was toggled
@ -1329,7 +1344,7 @@ phpbb.toggleDropdown = function() {
}); });
var freeSpace = parent.offset().left - 4; var freeSpace = parent.offset().left - 4;
if (direction == 'left') { if (direction === 'left') {
options.dropdown.css('margin-left', '-' + freeSpace + 'px'); options.dropdown.css('margin-left', '-' + freeSpace + 'px');
// Try to position the notification dropdown correctly in RTL-responsive mode // Try to position the notification dropdown correctly in RTL-responsive mode

View file

@ -235,7 +235,7 @@ phpbb.addAjaxCallback('vote_poll', function(res) {
var $this = $(this); var $this = $(this);
var optionId = $this.attr('data-poll-option-id'); var optionId = $this.attr('data-poll-option-id');
var voted = (typeof res.user_votes[optionId] !== 'undefined'); var voted = (typeof res.user_votes[optionId] !== 'undefined');
var mostVoted = (res.vote_counts[optionId] == mostVotes); var mostVoted = (res.vote_counts[optionId] === mostVotes);
var percent = (!res.total_votes) ? 0 : Math.round((res.vote_counts[optionId] / res.total_votes) * 100); var percent = (!res.total_votes) ? 0 : Math.round((res.vote_counts[optionId] / res.total_votes) * 100);
var percentRel = (mostVotes === 0) ? 0 : Math.round((res.vote_counts[optionId] / mostVotes) * 100); var percentRel = (mostVotes === 0) ? 0 : Math.round((res.vote_counts[optionId] / mostVotes) * 100);
@ -245,7 +245,7 @@ phpbb.addAjaxCallback('vote_poll', function(res) {
// Update the bars // Update the bars
var bar = $this.find('.resultbar div'); var bar = $this.find('.resultbar div');
var barTimeLapse = (res.can_vote) ? 500 : 1500; var barTimeLapse = (res.can_vote) ? 500 : 1500;
var newBarClass = (percent == 100) ? 'pollbar5' : 'pollbar' + (Math.floor(percent / 20) + 1); var newBarClass = (percent === 100) ? 'pollbar5' : 'pollbar' + (Math.floor(percent / 20) + 1);
setTimeout(function () { setTimeout(function () {
bar.animate({width: percentRel + '%'}, 500) bar.animate({width: percentRel + '%'}, 500)

View file

@ -15,6 +15,6 @@ $('#tz_select_date_suggest').click(function(){
$(function () { $(function () {
phpbb.timezoneEnableDateSelection(); phpbb.timezoneEnableDateSelection();
phpbb.timezonePreselectSelect($('#tz_select_date_suggest').attr('timezone-preselect') === 'true'); phpbb.timezonePreselectSelect($('#tz_select_date_suggest').attr('timezone-preselect') === 'true');
}) });
})(jQuery); // Avoid conflicts with other libraries })(jQuery); // Avoid conflicts with other libraries