scinote-web/app/assets/javascripts/sitewide/atwho_res.js.erb

464 lines
15 KiB
Plaintext
Raw Normal View History

2017-01-10 00:16:39 +08:00
var SmartAnnotation = (function() {
2017-01-05 17:52:00 +08:00
'use strict';
2017-01-09 18:33:28 +08:00
// utilities
var Util = (function() {
// helper method that binds show/hidden action
function showHideBinding() {
$.each(['show', 'hide'], function (i, ev) {
var el = $.fn[ev];
$.fn[ev] = function () {
this.trigger(ev);
return el.apply(this, arguments);
};
});
}
var publicApi = {
showHideBinding: showHideBinding
};
return publicApi;
})();
2017-01-10 00:16:39 +08:00
function setAtWho(field) {
var FilterTypeEnum = Object.freeze({
USER: {tag: "users",
dataUrl: $(document.body).attr('data-atwho-users-url')},
TASK: {tag: "tsk",
dataUrl: $(document.body).attr('data-atwho-task-url')},
PROJECT: {tag: "prj",
dataUrl: $(document.body).attr('data-atwho-project-url')},
EXPERIMENT: {tag: "exp",
dataUrl: $(document.body).attr('data-atwho-experiment-url')},
SAMPLE: {tag: "sam",
dataUrl: $(document.body).attr('data-atwho-sample-url')},
MENU: {tag: "menu",
dataUrl: $(document.body).attr('data-atwho-menu-items')}
});
var prevAt,
// Default selected filter when using '#'
DEFAULT_SEARCH_FILTER = FilterTypeEnum.SAMPLE,
atWhoUpdating = false;
2017-01-05 17:52:00 +08:00
2017-01-09 18:33:28 +08:00
// helper methods for AtWho callback
function _templateEval(_tpl, map) {
var res;
try {
if (map.no_results) {
res = noResultsTemplate();
} else {
res = generateTemplate(map);
}
2017-01-09 18:33:28 +08:00
} catch (_error) {
res = '';
}
return res;
}
2017-01-05 20:29:21 +08:00
function _matchHighlighter(li, query, filterType) {
var $li, re;
2017-01-12 16:52:29 +08:00
function highlight(el, sel, re) {
var prevVal, newVal;
prevVal = el.find(sel).html();
newVal = prevVal.replace(re, '<strong>$&</strong>');
el.find(sel).html(newVal);
}
if (!query || $(li).data('no-results')) {
2017-01-09 18:33:28 +08:00
return li;
}
$li = $(li);
2017-01-09 18:33:28 +08:00
re = new RegExp(query, 'gi');
2017-01-12 16:52:29 +08:00
// search_filter is not passed for the user
if(filterType) {
highlight($li, '[data-val=name]', re);
} else {
highlight($li, '[data-val=full-name]', re);
highlight($li, '[data-val=email]', re);
}
return $li[0].outerHTML
2017-01-09 18:33:28 +08:00
}
function _generateInputTag(value, li) {
2017-01-09 18:33:28 +08:00
var res = '';
res += '[#' + li.attr('data-name');
res += '~' + li.attr('data-type');
res += '~' + li.attr('data-id') + ']';
return res;
}
// check if query has some hits and disables the buttons without it
function resourcesChecker(query, filterTypeTag) {
var $element;
2017-01-12 16:52:29 +08:00
2017-01-05 20:29:21 +08:00
$.getJSON(
FilterTypeEnum.MENU.dataUrl,
2017-01-09 18:33:28 +08:00
{query: query},
function(data){
if(data) {
2017-01-11 00:05:32 +08:00
_.each($('.atwho-header-res .title .btn'), function(el) {
2017-01-10 00:16:39 +08:00
$element = $(el);
if(data[$element.data('filter')].length === 0) {
$element.prop('disabled', true);
$element
2017-01-09 18:33:28 +08:00
.removeClass('btn-primary')
.addClass('btn-default');
$('[data-filter="' + filterTypeTag +'"]')
2017-01-09 18:33:28 +08:00
.removeClass('btn-default')
.addClass('btn-primary');
} else {
2017-01-10 00:16:39 +08:00
$element.prop('disabled', false);
if($element.data('filter') == filterTypeTag) {
2017-01-10 00:16:39 +08:00
$element
.removeClass('btn-default')
.addClass('btn-primary');
} else {
$element
.removeClass('btn-primary')
.addClass('btn-default');
}
2017-01-09 18:33:28 +08:00
}
});
}
});
}
// initialise dropdown dismiss button
function initDismissButton() {
2017-01-11 00:05:32 +08:00
$('.atwho-header-res .dismiss').off('click');
$('.atwho-header-res .dismiss').on('click', function() {
$(field).atwho('destroy');
init();
});
}
// Initialize or update filter buttons
function initButtons(query, filterTypeTag) {
initDismissButton();
resourcesChecker(query, filterTypeTag);
$('.atwho-header-res .title button').off();
2017-01-11 00:05:32 +08:00
$('.atwho-header-res .title button').on('click', function(e) {
// Update the selected filter button
var $selectedBtn = $(this);
var $prevBtn = $selectedBtn.closest('.title').children('.btn-primary');
$selectedBtn.removeClass('btn-default').addClass('btn-primary');
$prevBtn.removeClass('btn-primary').addClass('btn-default');
2017-01-05 20:29:21 +08:00
// Updates query and dropdown elements; focuses input
$(field).click().focus();
2017-01-05 20:29:21 +08:00
});
2017-01-09 18:33:28 +08:00
}
// Generates suggestion dropdown filter
function generateFilterMenu(active, res_data) {
2017-01-11 00:05:32 +08:00
var header = '<div class="atwho-header-res">' +
'<div class="title">' +
'<button data-filter="prj" class="btn btn-xs ' +
2017-01-10 00:16:39 +08:00
(active === 'prj' ? 'btn-primary' : 'btn-default') + '">project#</button>' +
2017-01-11 00:05:32 +08:00
'<button data-filter="exp" class="btn btn-xs ' +
2017-01-10 00:16:39 +08:00
(active === 'exp' ? 'btn-primary' : 'btn-default') + '">experiment#</button>' +
2017-01-11 00:05:32 +08:00
'<button data-filter="tsk" class="btn btn-xs ' +
2017-01-10 00:16:39 +08:00
(active === 'tsk' ? 'btn-primary' : 'btn-default') + '">task#</button>' +
2017-01-11 00:05:32 +08:00
'<button data-filter="sam" class="btn btn-xs ' +
2017-01-10 00:16:39 +08:00
(active === 'sam' ? 'btn-primary' : 'btn-default') + '">sample#</button>' +
2017-01-11 00:05:32 +08:00
'</div>' +
2017-01-09 18:33:28 +08:00
'<div class="help">' +
'<div>' +
'<strong><%= I18n.t("atwho.users.navigate_1") %></strong> ' +
'<%= I18n.t("atwho.users.navigate_2") %>' +
'</div>' +
'<div><strong><%= I18n.t("atwho.users.confirm_1") %></strong> ' +
'<%= I18n.t("atwho.users.confirm_2") %>' +
'</div>' +
'<div>' +
'<strong><%= I18n.t("atwho.users.dismiss_1") %></strong> ' +
'<%= I18n.t("atwho.users.dismiss_2") %>' +
'</div>' +
'<div class="dismiss">' +
'<span class="glyphicon glyphicon-remove"></span>' +
'</div>' +
'</div>' +
'</div>';
2017-01-05 20:29:21 +08:00
2017-01-09 18:33:28 +08:00
return header;
2017-01-05 20:29:21 +08:00
}
function noResultsTemplate() {
var res = '<div class="atwho-no-results" data-no-results="1">';
res += '<span><%= I18n.t("atwho.no_results") %></span>';
res += '</div>';
return res;
}
2017-01-05 17:52:00 +08:00
// Generates resources list items
function generateTemplate(map) {
var res = '';
2017-01-09 18:33:28 +08:00
res += '<li class="atwho-li atwho-li-res" data-name="' +
truncateLongString(map.name,
<%= Constants::NAME_TRUNCATION_LENGTH %>) +
'" data-id="' + map.id + '" data-type="' +
2017-01-09 18:33:28 +08:00
map.type + '">';
2017-01-05 17:52:00 +08:00
switch(map.type) {
case 'tsk':
res += '<span data-type class="res-type">' + map.type + '</span>';
break;
case 'prj':
res += '<span data-type class="res-type">' + map.type + '</span>';
break;
case 'exp':
res += '<span data-type class="res-type">' + map.type + '</span>';
break;
case 'sam':
res += '<span class="glyphicon glyphicon-tint"></span>';
break;
}
res += '&nbsp;';
2017-01-11 00:05:32 +08:00
res += '<span data-val="name" class="res-name">';
res += truncateLongString(map.name,
<%= Constants::NAME_TRUNCATION_LENGTH %>);
2017-01-05 17:52:00 +08:00
res += '</span>';
2017-01-10 21:13:37 +08:00
if(map.archived) {
res += '<%= I18n.t("atwho.res.archived") %></span>';
2017-01-11 00:05:32 +08:00
} else {
res += '</span>';
2017-01-10 21:13:37 +08:00
}
2017-01-05 17:52:00 +08:00
res += '&nbsp;';
switch (map.type) {
case 'tsk':
2017-01-10 21:13:37 +08:00
2017-01-11 00:05:32 +08:00
res += '<span class="res-description">&lt; ' + map.experimentName +
2017-01-05 17:52:00 +08:00
' &lt; ' + map.projectName + '</span>';
break;
case 'exp':
2017-01-11 00:05:32 +08:00
res += '<span class="res-description">&lt; ' + map.projectName + '</span>';
2017-01-05 17:52:00 +08:00
break;
case 'sam':
2017-01-11 00:05:32 +08:00
res += '<span class="res-description">' + map.description + '</span>';
2017-01-05 17:52:00 +08:00
break;
}
res += '</li>';
return res;
}
/**
* Hackish wrapper function to make AtWho work when switching between
* multiple AtWho instances (e.g. from # to task#).
*
* Prevents second execution of AtWho update callback, triggered when user
* switches to different AtWho instance (e.g. from # to task#), which causes
* both of them to be called. In such case, AtWhO modal needs to be
* rerendered.
*/
function atWhoSwitchHack(filterTypeTag, remoteFilterCb) {
if(atWhoUpdating || (!$(field).length && _.isUndefined(filterTypeTag))) {
setTimeout(function() {
2017-01-19 17:12:01 +08:00
$(field).click();
}, 100);
return;
}
atWhoUpdating = true;
setTimeout(function() {
remoteFilterCb();
atWhoUpdating = false;
}, 100);
}
function atWhoSettings(at, defaultFilterType) {
return {
at: at,
callbacks: {
remoteFilter: function(query, callback) {
var filterTypeTag = $('.atwho-view[style] .btn-primary')
.data('filter');
atWhoSwitchHack(filterTypeTag, function() {
var filterType;
if (_.isUndefined(filterTypeTag)) {
// Switched smart annotation type (i.e. changed input)
filterType = defaultFilterType;
} else {
// Switched filtering type (i.e. different filter button
// pressed; works also for specific annotation types, e.g.
// task#, and coverts to the correct annotation type on confirm)
$.each(FilterTypeEnum, function(k, v) {
if (v.tag == filterTypeTag) {
filterType = FilterTypeEnum[k];
return false;
}
});
}
if (prevAt != at) {
// Switching smart annotation type (i.e. chaned input)
prevAt = at;
$('.atwho-view[style]').removeAttr("style");
filterType = defaultFilterType;
}
$.getJSON(
filterType.dataUrl,
{query: query},
function(data) {
if (data.res.length < 1) {
callback([{no_results: 1}]);
} else {
callback(data.res);
}
initButtons(query, filterType.tag);
}
);
});
},
sorter: function(query, items, _searchKey) {
// Sorting is already done on server-side
return items;
},
tplEval: function(_tpl, map) {
return _templateEval(_tpl, map);
},
highlighter: function(li, query) {
return _matchHighlighter(li, query, true);
},
beforeInsert: function(value, li) {
return _generateInputTag(value, li);
}
},
headerTpl: generateFilterMenu(defaultFilterType),
limit: <%= Constants::ATWHO_SEARCH_LIMIT %>,
startWithSpace: true,
acceptSpaceBar: true,
displayTimeout: 120000
}
}
function init() {
2017-01-09 18:33:28 +08:00
$(field)
2017-01-11 00:05:32 +08:00
.atwho({
at: '@',
callbacks: {
remoteFilter: function(query, callback) {
$.getJSON(
FilterTypeEnum.USER.dataUrl,
2017-01-11 00:05:32 +08:00
{query: query},
function(data) {
if (data.users.length < 1) {
callback([{no_results: 1}]);
} else {
callback(data.users);
}
initDismissButton();
2017-01-11 00:05:32 +08:00
}
);
},
sorter: function(query, items, _searchKey) {
// Sorting is already done on server-side
return items;
},
tplEval: function(_tpl, map) {
var res;
try {
if (map.no_results) {
res = noResultsTemplate();
} else {
res = '';
res += '<li class="atwho-li atwho-li-user" ';
res += 'data-id="' + map.id + '" ';
res += 'data-full-name="' + map.full_name + '">';
res += '<img src="' + map.img_url + '" class="avatar" />';
res += '<span data-val="full-name">';
res += map.full_name;
res += '</span>';
res += '<small>';
res += '&nbsp;';
res += '&#183;';
res += '&nbsp;';
res += '<span data-val="email">';
res += map.email;
res += '</span>';
res += '</small>';
res += '</li>';
}
2017-01-11 00:05:32 +08:00
} catch (_error) {
res = '';
}
return res;
},
highlighter: function(li, query) {
return _matchHighlighter(li, query);
2017-01-11 00:05:32 +08:00
},
beforeInsert: function(value, li) {
var res = '';
res += '[@' + li.attr('data-full-name');
res += '~' + li.attr('data-id') + ']';
return res;
}
},
headerTpl:
'<div class="atwho-header-res">' +
'<div class="title title-user"><%= I18n.t("atwho.users.title") %></div>' +
2017-01-11 00:05:32 +08:00
'<div class="help">' +
'<div>' +
'<strong><%= I18n.t("atwho.users.navigate_1") %></strong> ' +
'<%= I18n.t("atwho.users.navigate_2") %>' +
'</div>' +
'<div>' +
'<strong><%= I18n.t("atwho.users.confirm_1") %></strong> ' +
'<%= I18n.t("atwho.users.confirm_2") %>' +
'</div>' +
'<div>' +
'<strong><%= I18n.t("atwho.users.dismiss_1") %></strong> ' +
'<%= I18n.t("atwho.users.dismiss_2") %>' +
'</div>' +
'<div class="dismiss">' +
'<span class="glyphicon glyphicon-remove"></span>' +
'</div>' +
'</div>' +
'</div>',
limit: <%= Constants::ATWHO_SEARCH_LIMIT %>,
startsWithSpace: true,
acceptSpaceBar: true,
displayTimeout: 120000
})
.atwho(atWhoSettings('#', DEFAULT_SEARCH_FILTER))
// .atwho(atWhoSettings('task#', FilterTypeEnum.TASK)) Waiting for better times
// .atwho(atWhoSettings('project#', FilterTypeEnum.PROJECT))
// .atwho(atWhoSettings('experiment#', FilterTypeEnum.EXPERIMENT))
// .atwho(atWhoSettings('sample#', FilterTypeEnum.SAMPLE));
2017-01-05 17:52:00 +08:00
}
2017-01-09 18:33:28 +08:00
return {
init: init
};
2017-01-05 17:52:00 +08:00
}
2017-01-10 00:16:39 +08:00
function initialize(field) {
var atWho = new setAtWho(field);
atWho.init();
}
2017-01-05 17:52:00 +08:00
2017-01-10 00:16:39 +08:00
var publicApi = {
init: initialize
};
2017-01-05 17:52:00 +08:00
2017-01-10 00:16:39 +08:00
return publicApi;
2017-01-05 17:52:00 +08:00
})();
// initialize the smart annotations
(function initSmartAnnotation() {
$(document).on('focus', '[data-atwho-edit]', function() {
2017-01-12 16:52:29 +08:00
if(_.isUndefined($(this).data('atwho'))) {
SmartAnnotation.init(this);
}
});
})();