2010-02-27 01:16:44 +01:00
|
|
|
function ListFacet(div, config, options, selection) {
|
2010-01-30 02:05:30 +01:00
|
|
|
this._div = div;
|
|
|
|
this._config = config;
|
2010-02-02 02:36:02 +01:00
|
|
|
|
|
|
|
this._options = options || {};
|
|
|
|
if (!("sort" in this._options)) {
|
|
|
|
this._options.sort = "name";
|
|
|
|
}
|
|
|
|
|
2010-02-27 01:16:44 +01:00
|
|
|
this._selection = selection || [];
|
2010-02-27 07:59:55 +01:00
|
|
|
this._blankChoice = null;
|
|
|
|
this._errorChoice = null;
|
|
|
|
|
2010-01-30 02:05:30 +01:00
|
|
|
this._data = null;
|
|
|
|
|
|
|
|
this.render();
|
|
|
|
}
|
|
|
|
|
2010-02-27 01:16:44 +01:00
|
|
|
ListFacet.reconstruct = function(div, uiState) {
|
|
|
|
return new ListFacet(div, uiState.c, uiState.o, uiState.s);
|
|
|
|
};
|
|
|
|
|
2010-03-23 19:53:29 +01:00
|
|
|
ListFacet.prototype.reset = function() {
|
|
|
|
this._selection = [];
|
|
|
|
this._blankChoice = null;
|
|
|
|
this._errorChoice = null;
|
|
|
|
};
|
|
|
|
|
2010-02-27 01:16:44 +01:00
|
|
|
ListFacet.prototype.getUIState = function() {
|
|
|
|
var json = {
|
|
|
|
c: this.getJSON(),
|
|
|
|
o: this._options
|
|
|
|
};
|
|
|
|
|
|
|
|
json.s = json.c.selection;
|
|
|
|
delete json.c.selection;
|
|
|
|
|
|
|
|
return json;
|
2010-04-08 21:52:23 +02:00
|
|
|
};
|
2010-02-27 01:16:44 +01:00
|
|
|
|
2010-01-30 02:05:30 +01:00
|
|
|
ListFacet.prototype.getJSON = function() {
|
2010-02-19 00:27:40 +01:00
|
|
|
var o = {
|
|
|
|
type: "list",
|
|
|
|
name: this._config.name,
|
|
|
|
columnName: this._config.columnName,
|
|
|
|
expression: this._config.expression,
|
2010-03-07 23:54:02 +01:00
|
|
|
omitBlank: "omitBlank" in this._config ? this._config.omitBlank : false,
|
|
|
|
omitError: "omitError" in this._config ? this._config.omitError : false,
|
2010-02-27 07:59:55 +01:00
|
|
|
selection: [],
|
|
|
|
selectBlank: this._blankChoice != null && this._blankChoice.s,
|
|
|
|
selectError: this._errorChoice != null && this._errorChoice.s
|
2010-04-08 21:52:23 +02:00
|
|
|
};
|
2010-01-30 02:05:30 +01:00
|
|
|
for (var i = 0; i < this._selection.length; i++) {
|
2010-02-19 00:27:40 +01:00
|
|
|
var choice = {
|
|
|
|
v: cloneDeep(this._selection[i].v)
|
|
|
|
};
|
2010-01-30 02:05:30 +01:00
|
|
|
o.selection.push(choice);
|
|
|
|
}
|
|
|
|
return o;
|
|
|
|
};
|
|
|
|
|
2010-02-01 01:19:41 +01:00
|
|
|
ListFacet.prototype.hasSelection = function() {
|
2010-02-27 07:59:55 +01:00
|
|
|
return this._selection.length > 0 ||
|
|
|
|
(this._blankChoice != null && this._blankChoice.s) ||
|
|
|
|
(this._errorChoice != null && this._errorChoice.s);
|
2010-02-01 01:19:41 +01:00
|
|
|
};
|
|
|
|
|
2010-01-30 02:05:30 +01:00
|
|
|
ListFacet.prototype.updateState = function(data) {
|
|
|
|
this._data = data;
|
|
|
|
|
2010-03-12 21:08:50 +01:00
|
|
|
if ("choices" in data) {
|
|
|
|
var selection = [];
|
|
|
|
var choices = data.choices;
|
|
|
|
for (var i = 0; i < choices.length; i++) {
|
|
|
|
var choice = choices[i];
|
|
|
|
if (choice.s) {
|
|
|
|
selection.push(choice);
|
|
|
|
}
|
2010-01-30 02:05:30 +01:00
|
|
|
}
|
2010-03-12 21:08:50 +01:00
|
|
|
this._selection = selection;
|
|
|
|
this._reSortChoices();
|
2010-01-30 02:05:30 +01:00
|
|
|
|
2010-03-12 21:08:50 +01:00
|
|
|
this._blankChoice = data.blankChoice || null;
|
|
|
|
this._errorChoice = data.errorChoice || null;
|
|
|
|
}
|
2010-02-27 07:59:55 +01:00
|
|
|
|
2010-01-30 02:05:30 +01:00
|
|
|
this.render();
|
|
|
|
};
|
|
|
|
|
2010-02-02 02:36:02 +01:00
|
|
|
ListFacet.prototype._reSortChoices = function() {
|
|
|
|
this._data.choices.sort(this._options.sort == "name" ?
|
|
|
|
function(a, b) {
|
|
|
|
return a.v.l.localeCompare(b.v.l);
|
|
|
|
} :
|
|
|
|
function(a, b) {
|
|
|
|
return b.c - a.c;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2010-01-30 02:05:30 +01:00
|
|
|
ListFacet.prototype.render = function() {
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
var scrollTop = 0;
|
|
|
|
try {
|
|
|
|
scrollTop = this._div[0].childNodes[1].scrollTop;
|
|
|
|
} catch (e) {
|
|
|
|
}
|
|
|
|
var container = this._div.empty();
|
|
|
|
|
|
|
|
var headerDiv = $('<div></div>').addClass("facet-title").appendTo(container);
|
|
|
|
$('<span></span>').text(this._config.name).appendTo(headerDiv);
|
|
|
|
|
2010-02-26 23:24:25 +01:00
|
|
|
var removeButton = $('<img>')
|
|
|
|
.attr("src", "images/close.png")
|
|
|
|
.attr("title", "Remove this facet")
|
|
|
|
.addClass("facet-choice-link")
|
|
|
|
.click(function() {
|
|
|
|
self._remove();
|
|
|
|
}).prependTo(headerDiv);
|
2010-02-01 01:19:41 +01:00
|
|
|
|
2010-03-05 02:51:01 +01:00
|
|
|
var bodyDiv = $('<div></div>').addClass("facet-body");
|
2010-02-02 02:36:02 +01:00
|
|
|
if (!("scroll" in this._options) || this._options.scroll) {
|
|
|
|
bodyDiv.addClass("facet-body-scrollable");
|
|
|
|
}
|
|
|
|
|
2010-04-08 22:16:08 +02:00
|
|
|
if (!this._data) {
|
2010-03-12 21:08:50 +01:00
|
|
|
$('<div>').text("Loading...").addClass("facet-body-message").appendTo(bodyDiv);
|
|
|
|
bodyDiv.appendTo(container);
|
|
|
|
} else if ("error" in this._data) {
|
|
|
|
$('<div>').text(this._data.error).addClass("facet-body-message").appendTo(bodyDiv);
|
2010-03-05 02:51:01 +01:00
|
|
|
bodyDiv.appendTo(container);
|
2010-01-30 02:05:30 +01:00
|
|
|
} else {
|
2010-02-27 07:59:55 +01:00
|
|
|
var selectionCount = this._selection.length
|
|
|
|
+ (this._blankChoice != null && this._blankChoice.s ? 1 : 0)
|
|
|
|
+ (this._errorChoice != null && this._errorChoice.s ? 1 : 0);
|
|
|
|
|
2010-01-30 02:05:30 +01:00
|
|
|
if (selectionCount > 0) {
|
|
|
|
var reset = function() {
|
|
|
|
self._reset();
|
|
|
|
};
|
2010-02-01 01:19:41 +01:00
|
|
|
removeButton.after(
|
|
|
|
$('<a href="javascript:{}"></a>').addClass("facet-choice-link").text("reset").click(reset)
|
|
|
|
);
|
2010-01-30 02:05:30 +01:00
|
|
|
}
|
|
|
|
|
2010-03-08 20:07:16 +01:00
|
|
|
var renderEdit = this._config.expression == "value";
|
2010-02-27 07:59:55 +01:00
|
|
|
var renderChoice = function(choice, customLabel) {
|
|
|
|
var label = customLabel || choice.v.l;
|
2010-01-30 02:05:30 +01:00
|
|
|
var count = choice.c;
|
|
|
|
|
|
|
|
var choiceDiv = $('<div></div>').addClass("facet-choice").appendTo(bodyDiv);
|
|
|
|
if (choice.s) {
|
|
|
|
choiceDiv.addClass("facet-choice-selected");
|
|
|
|
}
|
|
|
|
|
|
|
|
var a = $('<a href="javascript:{}"></a>').addClass("facet-choice-label").text(label).appendTo(choiceDiv);
|
|
|
|
$('<span></span>').addClass("facet-choice-count").text(count).appendTo(choiceDiv);
|
|
|
|
|
|
|
|
var select = function() {
|
|
|
|
self._select(choice, false);
|
|
|
|
};
|
|
|
|
var selectOnly = function() {
|
|
|
|
self._select(choice, true);
|
|
|
|
};
|
|
|
|
var deselect = function() {
|
|
|
|
self._deselect(choice);
|
|
|
|
};
|
|
|
|
|
|
|
|
if (choice.s) { // selected
|
|
|
|
if (selectionCount > 1) {
|
|
|
|
// select only
|
|
|
|
a.click(selectOnly);
|
|
|
|
} else {
|
|
|
|
// deselect
|
|
|
|
a.click(deselect);
|
|
|
|
}
|
|
|
|
|
|
|
|
// remove link
|
|
|
|
$('<a href="javascript:{}"></a>').addClass("facet-choice-link").text("remove").click(deselect).prependTo(choiceDiv);
|
|
|
|
} else if (selectionCount > 0) {
|
|
|
|
a.click(selectOnly);
|
|
|
|
|
|
|
|
// include link
|
2010-03-08 20:07:16 +01:00
|
|
|
$('<a href="javascript:{}"></a>').addClass("facet-choice-link").text("include").click(select).prependTo(choiceDiv);
|
2010-01-30 02:05:30 +01:00
|
|
|
} else {
|
|
|
|
a.click(select);
|
|
|
|
}
|
|
|
|
|
2010-03-08 20:07:16 +01:00
|
|
|
if (renderEdit && customLabel === undefined) {
|
|
|
|
// edit link
|
|
|
|
var editLink = $('<a href="javascript:{}"></a>').addClass("facet-choice-edit").text("edit").click(function() {
|
|
|
|
self._editChoice(choice, choiceDiv);
|
|
|
|
}).appendTo(choiceDiv);
|
|
|
|
|
|
|
|
choiceDiv
|
|
|
|
.mouseenter(function() {
|
|
|
|
editLink.css("visibility", "visible");
|
|
|
|
})
|
|
|
|
.mouseleave(function() {
|
|
|
|
editLink.css("visibility", "hidden");
|
|
|
|
});
|
|
|
|
}
|
2010-01-30 02:05:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
var choices = this._data.choices;
|
|
|
|
for (var i = 0; i < choices.length; i++) {
|
|
|
|
renderChoice(choices[i]);
|
|
|
|
}
|
2010-02-27 07:59:55 +01:00
|
|
|
if (this._blankChoice != null) {
|
|
|
|
renderChoice(this._blankChoice, "(blank)");
|
|
|
|
}
|
|
|
|
if (this._errorChoice != null) {
|
|
|
|
renderChoice(this._errorChoice, "(error)");
|
|
|
|
}
|
2010-01-30 02:05:30 +01:00
|
|
|
|
2010-03-05 02:51:01 +01:00
|
|
|
bodyDiv.appendTo(container);
|
2010-01-30 02:05:30 +01:00
|
|
|
bodyDiv[0].scrollTop = scrollTop;
|
2010-02-02 02:36:02 +01:00
|
|
|
|
|
|
|
var footerDiv = $('<div></div>').addClass("facet-footer").appendTo(container);
|
2010-02-26 23:24:25 +01:00
|
|
|
|
|
|
|
$('<span>').text(choices.length + " choices: ").appendTo(footerDiv);
|
2010-02-02 02:36:02 +01:00
|
|
|
if (this._options.sort == "name") {
|
2010-02-23 21:20:14 +01:00
|
|
|
$('<a href="javascript:{}"></a>').addClass("action").text("re-sort by count").click(function() {
|
2010-02-02 02:36:02 +01:00
|
|
|
self._options.sort = "count";
|
|
|
|
self._reSortChoices();
|
|
|
|
self.render();
|
|
|
|
}).appendTo(footerDiv);
|
|
|
|
} else {
|
2010-02-23 21:20:14 +01:00
|
|
|
$('<a href="javascript:{}"></a>').addClass("action").text("re-sort by name").click(function() {
|
2010-02-02 02:36:02 +01:00
|
|
|
self._options.sort = "name";
|
|
|
|
self._reSortChoices();
|
|
|
|
self.render();
|
|
|
|
}).appendTo(footerDiv);
|
|
|
|
}
|
2010-03-02 20:58:47 +01:00
|
|
|
|
2010-03-08 20:07:16 +01:00
|
|
|
if (this._config.expression == "value") {
|
|
|
|
$('<span>').html(" • ").appendTo(footerDiv);
|
|
|
|
$('<a href="javascript:{}"></a>').addClass("action").text("cluster").click(function() {
|
|
|
|
self._doEdit();
|
|
|
|
}).appendTo(footerDiv);
|
|
|
|
}
|
2010-03-02 20:58:47 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
ListFacet.prototype._doEdit = function() {
|
2010-03-13 10:32:06 +01:00
|
|
|
new ClusteringDialog(this._config.columnName, this._config.expression);
|
2010-01-30 02:05:30 +01:00
|
|
|
};
|
|
|
|
|
2010-03-08 20:07:16 +01:00
|
|
|
ListFacet.prototype._editChoice = function(choice, choiceDiv) {
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
var menu = MenuSystem.createMenu().addClass("data-table-cell-editor").width("400px");
|
|
|
|
menu.html(
|
|
|
|
'<table class="data-table-cell-editor-layout">' +
|
|
|
|
'<tr>' +
|
|
|
|
'<td colspan="3">' +
|
|
|
|
'<textarea class="data-table-cell-editor-editor" bind="textarea" />' +
|
|
|
|
'</td>' +
|
|
|
|
'</tr>' +
|
|
|
|
'<tr>' +
|
|
|
|
'<td width="1%" align="center">' +
|
|
|
|
'<button bind="okButton">Apply</button><br/>' +
|
|
|
|
'<span class="data-table-cell-editor-key">Enter</span>' +
|
|
|
|
'</td>' +
|
|
|
|
'<td width="1%" align="center">' +
|
|
|
|
'<button bind="cancelButton">Cancel</button><br/>' +
|
|
|
|
'<span class="data-table-cell-editor-key">Esc</span>' +
|
|
|
|
'</td>' +
|
|
|
|
'<td>' +
|
|
|
|
'</td>' +
|
|
|
|
'</tr>' +
|
|
|
|
'</table>'
|
|
|
|
);
|
|
|
|
var elmts = DOM.bind(menu);
|
|
|
|
|
|
|
|
MenuSystem.showMenu(menu, function(){});
|
|
|
|
MenuSystem.positionMenuLeftRight(menu, choiceDiv);
|
|
|
|
|
|
|
|
var originalContent = choice.v.v;
|
|
|
|
var commit = function() {
|
|
|
|
var text = elmts.textarea[0].value;
|
|
|
|
|
|
|
|
MenuSystem.dismissAll();
|
|
|
|
|
|
|
|
Gridworks.postProcess(
|
|
|
|
"mass-edit",
|
|
|
|
{},
|
|
|
|
{
|
|
|
|
columnName: self._config.columnName,
|
|
|
|
expression: "value",
|
|
|
|
edits: JSON.stringify([{
|
|
|
|
from: [ originalContent ],
|
|
|
|
to: text
|
|
|
|
}])
|
|
|
|
},
|
|
|
|
{ cellsChanged: true },
|
|
|
|
{
|
|
|
|
onDone: function(o) {
|
|
|
|
var selection = [];
|
|
|
|
var gotSelection = false;
|
|
|
|
for (var i = 0; i < self._selection.length; i++) {
|
|
|
|
var choice = self._selection[i];
|
|
|
|
if (choice.v.v == originalContent) {
|
|
|
|
if (gotSelection) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
choice.v.v = text;
|
|
|
|
gotSelection = true; // eliminate duplicated selections due to changing one selected choice to another
|
|
|
|
}
|
|
|
|
selection.push(choice);
|
|
|
|
}
|
|
|
|
self._selection = selection;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
elmts.okButton.click(commit);
|
|
|
|
elmts.textarea
|
|
|
|
.text(originalContent)
|
|
|
|
.keydown(function(evt) {
|
2010-03-08 20:27:37 +01:00
|
|
|
if (!evt.shiftKey) {
|
|
|
|
if (evt.keyCode == 13) {
|
|
|
|
commit();
|
|
|
|
} else if (evt.keyCode == 27) {
|
|
|
|
MenuSystem.dismissAll();
|
|
|
|
}
|
2010-03-08 20:07:16 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
.select()
|
|
|
|
.focus();
|
|
|
|
|
|
|
|
elmts.cancelButton.click(function() {
|
|
|
|
MenuSystem.dismissAll();
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2010-01-30 02:05:30 +01:00
|
|
|
ListFacet.prototype._select = function(choice, only) {
|
|
|
|
if (only) {
|
|
|
|
this._selection = [];
|
2010-02-27 07:59:55 +01:00
|
|
|
if (this._blankChoice != null) {
|
|
|
|
this._blankChoice.s = false;
|
|
|
|
}
|
|
|
|
if (this._errorChoice != null) {
|
|
|
|
this._errorChoice.s = false;
|
|
|
|
}
|
2010-01-30 02:05:30 +01:00
|
|
|
}
|
2010-02-27 07:59:55 +01:00
|
|
|
|
|
|
|
choice.s = true;
|
|
|
|
if (choice !== this._errorChoice && choice !== this._blankChoice) {
|
|
|
|
this._selection.push(choice);
|
|
|
|
}
|
|
|
|
|
2010-01-30 02:05:30 +01:00
|
|
|
this._updateRest();
|
|
|
|
};
|
|
|
|
|
|
|
|
ListFacet.prototype._deselect = function(choice) {
|
2010-02-27 07:59:55 +01:00
|
|
|
if (choice === this._errorChoice || choice === this._blankChoice) {
|
|
|
|
choice.s = false;
|
|
|
|
} else {
|
|
|
|
for (var i = this._selection.length - 1; i >= 0; i--) {
|
|
|
|
if (this._selection[i] === choice) {
|
|
|
|
this._selection.splice(i, 1);
|
|
|
|
break;
|
|
|
|
}
|
2010-01-30 02:05:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
this._updateRest();
|
|
|
|
};
|
|
|
|
|
|
|
|
ListFacet.prototype._reset = function() {
|
|
|
|
this._selection = [];
|
2010-02-27 07:59:55 +01:00
|
|
|
this._blankChoice = null;
|
|
|
|
this._errorChoice = null;
|
|
|
|
|
2010-01-30 02:05:30 +01:00
|
|
|
this._updateRest();
|
|
|
|
};
|
|
|
|
|
2010-02-01 01:19:41 +01:00
|
|
|
ListFacet.prototype._remove = function() {
|
|
|
|
ui.browsingEngine.removeFacet(this);
|
|
|
|
|
|
|
|
this._div = null;
|
|
|
|
this._config = null;
|
2010-02-27 07:59:55 +01:00
|
|
|
|
2010-02-01 01:19:41 +01:00
|
|
|
this._selection = null;
|
2010-02-27 07:59:55 +01:00
|
|
|
this._blankChoice = null;
|
|
|
|
this._errorChoice = null;
|
2010-02-01 01:19:41 +01:00
|
|
|
this._data = null;
|
|
|
|
};
|
|
|
|
|
2010-01-30 02:05:30 +01:00
|
|
|
ListFacet.prototype._updateRest = function() {
|
2010-02-26 22:56:41 +01:00
|
|
|
Gridworks.update({ engineChanged: true });
|
2010-02-01 01:19:41 +01:00
|
|
|
};
|