2013-03-12 23:57:42 +01:00
|
|
|
/**
|
2013-04-13 21:00:13 +02:00
|
|
|
* EGroupware eTemplate2 - JS Favorite widget
|
2013-03-12 23:57:42 +01:00
|
|
|
*
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @package etemplate
|
|
|
|
* @subpackage api
|
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @author Nathan Gray
|
|
|
|
* @copyright Nathan Gray 2013
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
/*egw:uses
|
|
|
|
et2_dropdown_button;
|
|
|
|
et2_extension_nextmatch;
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Favorites widget, designed for use with a nextmatch widget
|
|
|
|
*
|
2013-11-12 08:51:28 +01:00
|
|
|
* The primary control is a split/dropdown button. Clicking on the left side of the button filters the
|
2013-03-12 23:57:42 +01:00
|
|
|
* nextmatch list by the user's default filter. The right side of the button gives a list of
|
|
|
|
* saved filters, pulled from preferences. Clicking a filter from the dropdown list sets the
|
|
|
|
* filters as saved.
|
|
|
|
*
|
|
|
|
* Favorites can also automatically be shown in the sidebox, using the special ID favorite_sidebox.
|
|
|
|
* Use the following code to generate the sidebox section:
|
|
|
|
* display_sidebox($appname,lang('Favorites'),array(
|
2013-11-12 08:51:28 +01:00
|
|
|
* array(
|
2013-03-12 23:57:42 +01:00
|
|
|
* 'no_lang' => true,
|
|
|
|
* 'text'=>'<span id="favorite_sidebox"/>',
|
|
|
|
* 'link'=>false,
|
|
|
|
* 'icon' => false
|
|
|
|
* )
|
|
|
|
* ));
|
|
|
|
* This sidebox list will be automatically generated and kept up to date.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Favorites are implemented by saving the values for [column] filters. Filters are stored
|
|
|
|
* in preferences, with the name favorite_<name>. The favorite favorite used for clicking on
|
|
|
|
* the filter button is stored in nextmatch-<columnselection_pref>-favorite.
|
2013-11-12 08:51:28 +01:00
|
|
|
*
|
2013-04-13 21:00:13 +02:00
|
|
|
* @augments et2_dropdown_button
|
2013-03-12 23:57:42 +01:00
|
|
|
*/
|
2013-04-13 21:00:13 +02:00
|
|
|
var et2_favorites = et2_dropdown_button.extend([et2_INextmatchHeader],
|
|
|
|
{
|
2013-03-12 23:57:42 +01:00
|
|
|
attributes: {
|
|
|
|
"default_pref": {
|
|
|
|
"name": "Default preference key",
|
|
|
|
"type": "string",
|
|
|
|
"description": "The preference key where default favorite is stored (not the value)"
|
|
|
|
},
|
|
|
|
"sidebox_target": {
|
|
|
|
"name": "Sidebox target",
|
|
|
|
"type": "string",
|
|
|
|
"description": "ID of element to insert favorite list into",
|
|
|
|
"default": "favorite_sidebox"
|
|
|
|
},
|
|
|
|
"app": {
|
|
|
|
"name": "Application",
|
|
|
|
"type": "string",
|
|
|
|
"description": "Application to show favorites for"
|
|
|
|
},
|
|
|
|
"filters": {
|
|
|
|
"name": "Extra filters",
|
|
|
|
"type": "any",
|
|
|
|
"description": "Array of extra filters to include in the saved favorite"
|
|
|
|
},
|
|
|
|
|
|
|
|
// These are particular to favorites
|
|
|
|
id: {"default": "favorite"},
|
|
|
|
label: {"default": ""},
|
2013-04-13 21:00:13 +02:00
|
|
|
label_updates: { "default": false},
|
2013-03-12 23:57:42 +01:00
|
|
|
image: {"default": "etemplate/fav_filter"},
|
2013-06-17 23:22:32 +02:00
|
|
|
statustext: {"default": "Favorite queries", "type": "string"}
|
2013-03-12 23:57:42 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
// Some convenient variables, used in closures / event handlers
|
|
|
|
header: null,
|
|
|
|
nextmatch: null,
|
|
|
|
favorite_prefix: "favorite_",
|
2013-05-06 23:34:47 +02:00
|
|
|
stored_filters: {},
|
2013-03-12 23:57:42 +01:00
|
|
|
|
|
|
|
// If filter was set server side, we need to remember it until nm is created
|
|
|
|
nm_filter: false,
|
|
|
|
|
2013-04-13 21:00:13 +02:00
|
|
|
/**
|
|
|
|
* Constructor
|
2013-11-12 08:51:28 +01:00
|
|
|
*
|
2013-04-13 21:00:13 +02:00
|
|
|
* @memberOf et2_favorites
|
|
|
|
*/
|
2013-03-12 23:57:42 +01:00
|
|
|
init: function() {
|
|
|
|
this._super.apply(this, arguments);
|
|
|
|
this.sidebox_target = $j("#"+this.options.sidebox_target);
|
|
|
|
if(this.sidebox_target.length == 0 && egw_getFramework() != null)
|
|
|
|
{
|
|
|
|
var egw_fw = egw_getFramework();
|
2013-04-10 10:00:31 +02:00
|
|
|
this.sidebox_target = $j("#"+this.options.sidebox_target,egw_fw.sidemenuDiv);
|
2013-03-12 23:57:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
var apps = egw().user('apps');
|
|
|
|
this.is_admin = (typeof apps['admin'] != "undefined");
|
|
|
|
|
2013-05-06 23:34:47 +02:00
|
|
|
this.stored_filters = this.load_favorites(this.options.app);
|
|
|
|
|
2013-03-18 21:58:55 +01:00
|
|
|
this.preferred = egw.preference(this.options.default_pref,this.options.app);
|
2013-03-12 23:57:42 +01:00
|
|
|
if(!this.preferred || typeof this.stored_filters[this.preferred] == "undefined")
|
|
|
|
{
|
|
|
|
this.preferred = "blank";
|
|
|
|
}
|
|
|
|
|
2013-09-10 19:06:15 +02:00
|
|
|
// It helps to have the ID properly set before we get too far
|
|
|
|
this.set_id(this.id);
|
2013-11-12 08:51:28 +01:00
|
|
|
|
2013-03-12 23:57:42 +01:00
|
|
|
this.init_filters(this);
|
|
|
|
|
|
|
|
this.menu.addClass("favorites");
|
|
|
|
|
|
|
|
// Set the default (button) value
|
|
|
|
this.set_value(this.preferred,true);
|
|
|
|
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
// Add a listener on the radio buttons to set default filter
|
|
|
|
$j(this.menu).on("click","input:radio", function(event){
|
|
|
|
// Don't do the menu
|
|
|
|
event.stopImmediatePropagation();
|
2013-11-12 08:51:28 +01:00
|
|
|
|
2013-03-12 23:57:42 +01:00
|
|
|
// Save as default favorite - used when you click the button
|
2013-05-06 23:34:47 +02:00
|
|
|
self.egw().set_preference(self.options.app,self.options.default_pref,$j(this).val());
|
2013-03-13 16:23:21 +01:00
|
|
|
self.preferred = $j(this).val();
|
2013-03-12 23:57:42 +01:00
|
|
|
|
|
|
|
// Update sidebox, if there
|
|
|
|
if(self.sidebox_target.length)
|
|
|
|
{
|
2014-02-12 22:51:25 +01:00
|
|
|
self.sidebox_target.find("div.ui-icon-heart")
|
|
|
|
.replaceWith("<div class='sideboxstar'/>");
|
|
|
|
$j("li[data-id='"+self.preferred+"'] div.sideboxstar",self.sidebox_target)
|
2013-03-12 23:57:42 +01:00
|
|
|
.replaceWith("<div class='ui-icon ui-icon-heart'/>");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Close the menu
|
|
|
|
self.menu.hide();
|
|
|
|
|
|
|
|
// Some user feedback
|
|
|
|
self.button.addClass("ui-state-active", 500,"swing",function(){
|
|
|
|
self.button.removeClass("ui-state-active",2000);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
// Add a listener on the delete to remove
|
2013-12-13 00:45:09 +01:00
|
|
|
this.menu.on("click","div.ui-icon-trash", app[self.options.app], function() {
|
|
|
|
// App instance might not be ready yet, so don't bind directly
|
|
|
|
app[self.options.app].delete_favorite.apply(app[self.options.app],arguments);
|
|
|
|
})
|
2013-03-12 23:57:42 +01:00
|
|
|
// Wrap and unwrap because jQueryUI styles use a parent, and we don't want to change the state of the menu item
|
|
|
|
// Wrap in a span instead of a div because div gets a border
|
|
|
|
.on("mouseenter","div.ui-icon-trash", function() {$j(this).wrap("<span class='ui-state-active'/>");})
|
|
|
|
.on("mouseleave","div.ui-icon-trash", function() {$j(this).unwrap();});
|
|
|
|
|
|
|
|
// Trigger refresh of menu options now that events are registered
|
|
|
|
// to update sidebox
|
|
|
|
if(this.sidebox_target.length > 0)
|
|
|
|
{
|
|
|
|
this.init_filters(this);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Load favorites from preferences
|
|
|
|
*
|
|
|
|
* @param app String Load favorites from this application
|
|
|
|
*/
|
|
|
|
load_favorites: function(app) {
|
|
|
|
|
|
|
|
// Default blank filter
|
|
|
|
var stored_filters = {
|
|
|
|
'blank': {
|
2013-03-13 16:23:21 +01:00
|
|
|
name: this.egw().lang("No filters"),
|
2013-12-13 00:45:09 +01:00
|
|
|
state: {},
|
2013-03-12 23:57:42 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Load saved favorites
|
2013-03-18 21:58:55 +01:00
|
|
|
var preferences = egw.preference("*",app);
|
2013-03-12 23:57:42 +01:00
|
|
|
for(var pref_name in preferences)
|
|
|
|
{
|
|
|
|
if(pref_name.indexOf(this.favorite_prefix) == 0)
|
|
|
|
{
|
|
|
|
var name = pref_name.substr(this.favorite_prefix.length);
|
|
|
|
stored_filters[name] = preferences[pref_name];
|
2013-12-11 00:16:08 +01:00
|
|
|
// Keep older favorites working - they used to store nm filters in 'filters',not state
|
|
|
|
if(preferences[pref_name].filters)
|
|
|
|
{
|
|
|
|
stored_filters[pref_name].state = preferences[pref_name].filters
|
|
|
|
}
|
2013-03-12 23:57:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if(typeof stored_filters == "undefined" || !stored_filters)
|
|
|
|
{
|
|
|
|
stored_filters = {};
|
|
|
|
}
|
|
|
|
|
|
|
|
return stored_filters;
|
|
|
|
},
|
|
|
|
|
|
|
|
// Create & set filter options for dropdown menu
|
|
|
|
init_filters: function(widget, filters)
|
|
|
|
{
|
|
|
|
if(typeof filters == "undefined")
|
|
|
|
{
|
|
|
|
filters = this.stored_filters;
|
|
|
|
}
|
|
|
|
|
|
|
|
var options = {};
|
|
|
|
for(var name in filters)
|
|
|
|
{
|
2013-11-12 08:51:28 +01:00
|
|
|
options[name] = "<input type='radio' name='"+this.internal_ids.menu+"[button][favorite]' value='"+name+"' title='" +
|
2013-03-12 23:57:42 +01:00
|
|
|
this.egw().lang('Set as default') + "'/>"+
|
2013-11-12 08:51:28 +01:00
|
|
|
(filters[name].name != undefined ? filters[name].name : name) +
|
2013-03-12 23:57:42 +01:00
|
|
|
(filters[name].group != false && !this.is_admin || name == 'blank' ? "" :
|
|
|
|
"<div class='ui-icon ui-icon-trash' title='" + this.egw().lang('Delete') + "'/>");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Only add 'Add current' if we have a nextmatch
|
|
|
|
if(this.nextmatch)
|
|
|
|
{
|
|
|
|
options.add = "<img src='"+this.egw().image("new") +"'/>Add current";
|
|
|
|
}
|
2013-10-09 14:14:36 +02:00
|
|
|
widget.set_select_options.call(widget,options);
|
2013-03-12 23:57:42 +01:00
|
|
|
|
|
|
|
// Set radio to current value
|
|
|
|
$j("input[value='"+ this.preferred +"']:radio", this.menu).attr("checked",true);
|
2013-09-10 19:06:15 +02:00
|
|
|
},
|
2013-11-12 08:51:28 +01:00
|
|
|
|
2013-03-12 23:57:42 +01:00
|
|
|
set_nm_filters: function(filters)
|
|
|
|
{
|
|
|
|
if(this.nextmatch)
|
|
|
|
{
|
|
|
|
this.nextmatch.activeFilters = filters;
|
|
|
|
this.nextmatch.applyFilters();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
console.log(filters);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onclick: function(node) {
|
|
|
|
// Apply preferred filter - make sure it's an object, and not a reference
|
|
|
|
if(this.preferred && this.stored_filters[this.preferred])
|
|
|
|
{
|
|
|
|
this.set_nm_filters(jQuery.extend({},this.stored_filters[this.preferred].filter));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
alert(this.egw().lang("No default set"));
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
// Apply the favorite when you pick from the list
|
|
|
|
change: function(selected_node) {
|
2013-09-10 19:06:15 +02:00
|
|
|
this.value = $j(selected_node).attr("data-id");
|
2013-03-12 23:57:42 +01:00
|
|
|
if(this.value == "add" && this.nextmatch)
|
|
|
|
{
|
|
|
|
// Get current filters
|
2013-12-13 00:45:09 +01:00
|
|
|
var current_filters = $j.extend({},this.nextmatch.activeFilters);
|
2013-03-12 23:57:42 +01:00
|
|
|
|
2013-11-12 21:14:33 +01:00
|
|
|
// Add in extras
|
|
|
|
for(var extra in this.options.filters)
|
|
|
|
{
|
|
|
|
// Don't overwrite what nm has, chances are nm has more up-to-date value
|
2013-12-13 00:45:09 +01:00
|
|
|
if(typeof current_filters == 'undefined')
|
2013-11-12 21:14:33 +01:00
|
|
|
{
|
2013-12-13 00:45:09 +01:00
|
|
|
current_filters[extra] = this.nextmatch.options.settings[extra];
|
2013-11-12 21:14:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-12 23:57:42 +01:00
|
|
|
// Skip columns for now
|
2013-12-13 00:45:09 +01:00
|
|
|
delete current_filters.selcolumns;
|
2013-03-12 23:57:42 +01:00
|
|
|
|
|
|
|
// Add in application's settings
|
|
|
|
if(this.filters != true)
|
|
|
|
{
|
|
|
|
for(var i = 0; i < this.filters.length; i++)
|
|
|
|
{
|
2013-12-13 00:45:09 +01:00
|
|
|
current_filters[this.options.filters[i]] = this.nextmatch.options.settings[this.options.filters[i]];
|
2013-03-12 23:57:42 +01:00
|
|
|
}
|
|
|
|
}
|
2013-11-12 08:51:28 +01:00
|
|
|
|
2013-12-13 00:45:09 +01:00
|
|
|
// Call framework
|
|
|
|
app[this.options.app].add_favorite(current_filters);
|
2013-03-12 23:57:42 +01:00
|
|
|
|
|
|
|
// Reset value
|
|
|
|
this.set_value(this.preferred,true);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
set_value: function(filter_name, parent) {
|
|
|
|
if(parent)
|
|
|
|
{
|
|
|
|
return this._super.apply(filter_name);
|
|
|
|
}
|
2013-12-13 00:45:09 +01:00
|
|
|
|
2013-12-16 21:37:38 +01:00
|
|
|
if(filter_name == 'add') return false;
|
2014-02-12 22:51:25 +01:00
|
|
|
|
2013-12-13 00:45:09 +01:00
|
|
|
app[this.options.app].setState(this.stored_filters[filter_name]);
|
|
|
|
return false;
|
2013-03-12 23:57:42 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
getValue: function()
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the nextmatch to filter
|
|
|
|
* From et2_INextmatchHeader interface
|
|
|
|
*/
|
|
|
|
setNextmatch: function(nextmatch)
|
|
|
|
{
|
|
|
|
this.nextmatch = nextmatch;
|
|
|
|
|
|
|
|
if(this.nm_filter)
|
|
|
|
{
|
|
|
|
this.set_value(this.nm_filter);
|
|
|
|
this.nm_filter = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Re-generate filter list so we can add 'Add current'
|
|
|
|
this.init_filters(this);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
et2_register_widget(et2_favorites, ["favorites"]);
|