forked from 0x2620/pandora
fix various bugs in manage personal lists menu
This commit is contained in:
parent
80e4d41fb2
commit
afde04460d
1 changed files with 26 additions and 44 deletions
|
@ -39,14 +39,14 @@ pandora.ui.folders = function(section) {
|
||||||
extras = [
|
extras = [
|
||||||
pandora.$ui.personalListsMenu = Ox.MenuButton({
|
pandora.$ui.personalListsMenu = Ox.MenuButton({
|
||||||
items: [
|
items: [
|
||||||
{ id: 'newlist', title: Ox._('New List') },
|
{ id: 'newlist', title: Ox._('New List'), keyboard: 'control n' },
|
||||||
{ id: 'newlistfromselection', title: Ox._('New List from Selection'), disabled: ui.listSelection.length == 0 },
|
{ id: 'newlistfromselection', title: Ox._('New List from Selection'), keyboard: 'shift control n', disabled: ui.listSelection.length == 0 },
|
||||||
{ id: 'newsmartlist', title: Ox._('New Smart List') },
|
{ id: 'newsmartlist', title: Ox._('New Smart List'), keyboard: 'alt control n' },
|
||||||
{ id: 'newsmartlistfromresults', title: Ox._('New Smart List from Results') },
|
{ id: 'newsmartlistfromresults', title: Ox._('New Smart List from Results'), keyboard: 'shift alt control n' },
|
||||||
{},
|
{},
|
||||||
{ id: 'duplicatelist', title: Ox._('Duplicate Selected List'), disabled: !ui._list },
|
{ id: 'duplicatelist', title: Ox._('Duplicate Selected List'), keyboard: 'control d', disabled: !ui._list },
|
||||||
{ id: 'editlist', title: Ox._('Edit Selected List...'), disabled: !editable },
|
{ id: 'editlist', title: Ox._('Edit Selected List...'), keyboard: 'control e', disabled: !editable },
|
||||||
{ id: 'deletelist', title: Ox._('Delete Selected List...'), disabled: !editable }
|
{ id: 'deletelist', title: Ox._('Delete Selected List...'), keyboard: 'delete', disabled: !editable }
|
||||||
],
|
],
|
||||||
title: 'edit',
|
title: 'edit',
|
||||||
tooltip: Ox._('Manage Personal Lists'),
|
tooltip: Ox._('Manage Personal Lists'),
|
||||||
|
@ -93,13 +93,13 @@ pandora.ui.folders = function(section) {
|
||||||
extras = [
|
extras = [
|
||||||
pandora.$ui.personalListsMenu = Ox.MenuButton({
|
pandora.$ui.personalListsMenu = Ox.MenuButton({
|
||||||
items: [
|
items: [
|
||||||
{ id: 'newedit', title: Ox._('New Edit') },
|
{ id: 'newedit', title: Ox._('New Edit'), keyboard: 'control n' },
|
||||||
{ id: 'neweditfromselection', title: Ox._('New Edit from Selection'), disabled: ui.edit && ui.edits[ui.edit].selection.length },
|
{ id: 'neweditfromselection', title: Ox._('New Edit from Selection'), keyboard: 'shift control n', disabled: ui.edit && ui.edits[ui.edit].selection.length },
|
||||||
{ id: 'newsmartedit', title: Ox._('New Smart Edit') },
|
{ id: 'newsmartedit', title: Ox._('New Smart Edit'), keyboard: 'alt control n'},
|
||||||
{},
|
{},
|
||||||
{ id: 'duplicateedit', title: Ox._('Duplicate Selected Edit'), disabled: !ui.edit },
|
{ id: 'duplicateedit', title: Ox._('Duplicate Selected Edit'), keyboard: 'control d', disabled: !ui.edit },
|
||||||
{ id: 'editedit', title: Ox._('Edit Selected Edit...'), disabled: !editable },
|
{ id: 'editedit', title: Ox._('Edit Selected Edit...'), keyboard: 'control e', disabled: !editable },
|
||||||
{ id: 'deleteedit', title: Ox._('Delete Selected Edit...'), disabled: !editable }
|
{ id: 'deleteedit', title: Ox._('Delete Selected Edit...'), keyboard: 'delete', disabled: !editable }
|
||||||
],
|
],
|
||||||
title: 'edit',
|
title: 'edit',
|
||||||
tooltip: Ox._('Manage Personal Edits'),
|
tooltip: Ox._('Manage Personal Edits'),
|
||||||
|
@ -138,11 +138,11 @@ pandora.ui.folders = function(section) {
|
||||||
extras = [
|
extras = [
|
||||||
pandora.$ui.personalListsMenu = Ox.MenuButton({
|
pandora.$ui.personalListsMenu = Ox.MenuButton({
|
||||||
items: [
|
items: [
|
||||||
{ id: 'newtext', title: Ox._('New Text') },
|
{ id: 'newtext', title: Ox._('New Text'), keyboard: 'control n' },
|
||||||
{ id: 'newpdf', title: Ox._('New PDF') },
|
{ id: 'newpdf', title: Ox._('New PDF'), keyboard: 'alt control n' },
|
||||||
{},
|
{},
|
||||||
{ id: 'edittext', title: Ox._('Edit Selected Text...'), disabled: !editable },
|
{ id: 'edittext', title: Ox._('Edit Selected Text...'), keyboard: 'control e', disabled: !editable },
|
||||||
{ id: 'deletetext', title: Ox._('Delete Selected Text...'), disabled: !editable }
|
{ id: 'deletetext', title: Ox._('Delete Selected Text...'), keyboard: 'delete', disabled: !editable }
|
||||||
],
|
],
|
||||||
title: 'edit',
|
title: 'edit',
|
||||||
tooltip: Ox._('Manage Personal Texts'),
|
tooltip: Ox._('Manage Personal Texts'),
|
||||||
|
@ -152,7 +152,7 @@ pandora.ui.folders = function(section) {
|
||||||
click: function(data) {
|
click: function(data) {
|
||||||
var $list = pandora.$ui.folderList[folder.id];
|
var $list = pandora.$ui.folderList[folder.id];
|
||||||
if (data.id == 'newtext') {
|
if (data.id == 'newtext') {
|
||||||
pandora.addText({type: 'text'});
|
pandora.addText({type: 'html'});
|
||||||
} else if (data.id == 'newpdf') {
|
} else if (data.id == 'newpdf') {
|
||||||
pandora.addText({type: 'pdf'});
|
pandora.addText({type: 'pdf'});
|
||||||
} else if (data.id == 'edittext') {
|
} else if (data.id == 'edittext') {
|
||||||
|
@ -312,33 +312,11 @@ pandora.ui.folders = function(section) {
|
||||||
title: Ox._(folder.title)
|
title: Ox._(folder.title)
|
||||||
})
|
})
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
// fixme: duplicated
|
|
||||||
click: function(data) {
|
click: function(data) {
|
||||||
var $list = pandora.$ui.folderList[i],
|
|
||||||
hasFocus, id;
|
|
||||||
if (data.id == 'new' || data.id == 'newsmart') {
|
if (data.id == 'new' || data.id == 'newsmart') {
|
||||||
pandora.api.addList({
|
pandora.addFolderItem(section, data.id == 'newsmart', false);
|
||||||
name: Ox._('Untitled'),
|
|
||||||
status: 'private',
|
|
||||||
type: data.id == 'new' ? 'static' : 'smart'
|
|
||||||
}, function(result) {
|
|
||||||
id = result.data.id;
|
|
||||||
pandora.URL.set('?find=list:' + id)
|
|
||||||
Ox.Request.clearCache(); // fixme: remove
|
|
||||||
$list.reloadList().bindEventOnce({
|
|
||||||
load: function(data) {
|
|
||||||
$list.gainFocus()
|
|
||||||
.options({selected: [id]})
|
|
||||||
.editCell(id, 'name');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
} else if (data.id == 'browse') {
|
} else if (data.id == 'browse') {
|
||||||
// alert('??')
|
// ...
|
||||||
/*
|
|
||||||
pandora.$sectionList[1].replaceWith(pandora.$ui.publicLists = pandora.ui.publicLists());
|
|
||||||
pandora.site.showAllPublicLists = true;
|
|
||||||
*/
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
toggle: function(data) {
|
toggle: function(data) {
|
||||||
|
@ -414,10 +392,14 @@ pandora.ui.folders = function(section) {
|
||||||
}
|
}
|
||||||
that.bindEvent({
|
that.bindEvent({
|
||||||
pandora_edit: function() {
|
pandora_edit: function() {
|
||||||
if (!pandora.user.ui.edit) {
|
var folder = pandora.getListData().folder,
|
||||||
|
edit = pandora.user.ui.edit,
|
||||||
|
previousEdit = pandora.UI.getPrevious().edit;
|
||||||
|
if (edit != previousEdit) {
|
||||||
Ox.forEach(pandora.$ui.folderList, function($list, id) {
|
Ox.forEach(pandora.$ui.folderList, function($list, id) {
|
||||||
$list.options('selected', []);
|
id != folder && $list.options('selected', []);
|
||||||
});
|
});
|
||||||
|
folder && pandora.$ui.folderList[folder].options({selected: [edit]});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
pandora_find: function() {
|
pandora_find: function() {
|
||||||
|
|
Loading…
Reference in a new issue