mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 04:27:37 +00:00
294 lines
8.7 KiB
JavaScript
294 lines
8.7 KiB
JavaScript
/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
* The contents of this file are subject to the Netscape Public
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is Mozilla Communicator client code, released
|
|
* March 31, 1998.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*/
|
|
|
|
var gLastMessageUriToLoad = null;
|
|
|
|
function ThreadPaneOnClick(event)
|
|
{
|
|
var t = event.originalTarget;
|
|
|
|
if (t.localName != "treecell" &&
|
|
t.localName != "treeitem" &&
|
|
t.localName != "image")
|
|
return;
|
|
|
|
// fix for #48424. bail out of here when the user is
|
|
// clicking on the column headers
|
|
if (t.localName == "treecell") {
|
|
if (t.parentNode && (t.parentNode.getAttribute("id") == "headRow")) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
var targetclass = "";
|
|
|
|
if (t.localName == "image" && (t.getAttribute('twisty') != 'true'))
|
|
targetclass = t.parentNode.getAttribute('class');
|
|
|
|
//dump('targetclass = ' + targetclass + '\n');
|
|
|
|
if(targetclass.indexOf('unreadcol') != -1)
|
|
{
|
|
ToggleMessageRead(t.parentNode.parentNode.parentNode);
|
|
}
|
|
if(targetclass.indexOf('flagcol') != -1)
|
|
{
|
|
ToggleMessageFlagged(t.parentNode.parentNode.parentNode);
|
|
}
|
|
else if (t.getAttribute('twisty') == 'true') {
|
|
// The twisty is nested three below the treeitem:
|
|
// <treeitem>
|
|
// <treerow>
|
|
// <treecell>
|
|
// <button class="tree-cell-twisty"> <!-- anonymous -->
|
|
var treeitem = t.parentNode.parentNode.parentNode;
|
|
var open = treeitem.getAttribute('open');
|
|
if(open == "true")
|
|
{
|
|
//open all of the children of the treeitem
|
|
msgNavigationService.OpenTreeitemAndDescendants(treeitem);
|
|
}
|
|
}
|
|
else if(event.detail == 2)
|
|
{
|
|
ThreadPaneDoubleClick();
|
|
}
|
|
}
|
|
|
|
|
|
function MsgComposeDraftMessage()
|
|
{
|
|
var loadedFolder = GetLoadedMsgFolder();
|
|
var messageArray = GetSelectedMessages();
|
|
|
|
ComposeMessage(msgComposeType.Draft, msgComposeFormat.Default, loadedFolder, messageArray);
|
|
}
|
|
|
|
function ThreadPaneDoubleClick()
|
|
{
|
|
var loadedFolder;
|
|
var messageArray;
|
|
var messageUri;
|
|
|
|
if(IsSpecialFolderSelected("Drafts"))
|
|
{
|
|
MsgComposeDraftMessage();
|
|
}
|
|
else if(IsSpecialFolderSelected("Templates"))
|
|
{
|
|
loadedFolder = GetLoadedMsgFolder();
|
|
messageArray = GetSelectedMessages();
|
|
ComposeMessage(msgComposeType.Template, msgComposeFormat.Default, loadedFolder, messageArray);
|
|
}
|
|
else
|
|
{
|
|
MsgOpenSelectedMessages();
|
|
}
|
|
}
|
|
|
|
function ThreadPaneKeyPress(event)
|
|
{
|
|
if (event.keyCode == 13)
|
|
ThreadPaneDoubleClick();
|
|
return;
|
|
}
|
|
|
|
function MsgSortByDate()
|
|
{
|
|
SortThreadPane('DateColumn', 'http://home.netscape.com/NC-rdf#Date', null, true, null, true);
|
|
}
|
|
|
|
function MsgSortBySender()
|
|
{
|
|
SortThreadPane('AuthorColumn', 'http://home.netscape.com/NC-rdf#Sender', 'http://home.netscape.com/NC-rdf#Date', true, null, true);
|
|
}
|
|
|
|
function MsgSortByRecipient()
|
|
{
|
|
SortThreadPane('AuthorColumn', 'http://home.netscape.com/NC-rdf#Recipient', 'http://home.netscape.com/NC-rdf#Date', true, null, true);
|
|
}
|
|
|
|
function MsgSortByStatus()
|
|
{
|
|
SortThreadPane('StatusColumn', 'http://home.netscape.com/NC-rdf#Status', 'http://home.netscape.com/NC-rdf#Date', true, null, true);
|
|
}
|
|
|
|
function MsgSortBySubject()
|
|
{
|
|
SortThreadPane('SubjectColumn', 'http://home.netscape.com/NC-rdf#Subject', 'http://home.netscape.com/NC-rdf#Date', true, null, true);
|
|
}
|
|
|
|
function MsgSortByFlagged()
|
|
{
|
|
SortThreadPane('FlaggedButtonColumn', 'http://home.netscape.com/NC-rdf#Flagged', 'http://home.netscape.com/NC-rdf#Date', true, null, true);
|
|
}
|
|
|
|
function MsgSortByPriority()
|
|
{
|
|
SortThreadPane('PriorityColumn', 'http://home.netscape.com/NC-rdf#Priority', 'http://home.netscape.com/NC-rdf#Date',true, null, true);
|
|
}
|
|
|
|
function MsgSortBySize()
|
|
{
|
|
SortThreadPane('MemoryColumn', 'http://home.netscape.com/NC-rdf#Size', 'http://home.netscape.com/NC-rdf#Date', true, null, true);
|
|
}
|
|
|
|
function MsgSortByLines()
|
|
{
|
|
SortThreadPane('MemoryColumn', 'http://home.netscape.com/NC-rdf#Lines', 'http://home.netscape.com/NC-rdf#Date', true, null, true);
|
|
}
|
|
|
|
|
|
function MsgSortByUnread()
|
|
{
|
|
SortThreadPane('UnreadColumn', 'http://home.netscape.com/NC-rdf#TotalUnreadMessages','http://home.netscape.com/NC-rdf#Date', true, null, true);
|
|
}
|
|
|
|
function MsgSortByOrderReceived()
|
|
{
|
|
SortThreadPane('OrderReceivedColumn', 'http://home.netscape.com/NC-rdf#OrderReceived','http://home.netscape.com/NC-rdf#Date', true, null, true);
|
|
}
|
|
|
|
function MsgSortByRead()
|
|
{
|
|
SortThreadPane('UnreadButtonColumn', 'http://home.netscape.com/NC-rdf#IsUnread','http://home.netscape.com/NC-rdf#Date', true, null,true);
|
|
}
|
|
|
|
function MsgSortByTotal()
|
|
{
|
|
SortThreadPane('TotalColumn', 'http://home.netscape.com/NC-rdf#TotalMessages', 'http://home.netscape.com/NC-rdf#Date', true, null, true);
|
|
}
|
|
|
|
function MsgSortByThread()
|
|
{
|
|
ChangeThreadView()
|
|
}
|
|
|
|
function ChangeThreadView()
|
|
{
|
|
var folder = GetSelectedFolder();
|
|
|
|
var threadColumn = document.getElementById('ThreadColumnHeader');
|
|
if(threadColumn)
|
|
{
|
|
var currentView = threadColumn.getAttribute('currentView');
|
|
if(currentView== 'threaded')
|
|
{
|
|
ShowThreads(false);
|
|
if(folder)
|
|
folder.setAttribute('threaded', "false");
|
|
SetTemplateTreeItemOpen(false);
|
|
}
|
|
else if(currentView == 'unthreaded')
|
|
{
|
|
ShowThreads(true);
|
|
if(folder)
|
|
folder.setAttribute('threaded', "true");
|
|
}
|
|
RefreshThreadTreeView();
|
|
}
|
|
}
|
|
|
|
function IsSpecialFolderSelected(folderName)
|
|
{
|
|
var selectedFolder = GetThreadTreeFolder();
|
|
var id = selectedFolder.getAttribute('ref');
|
|
var folderResource = RDF.GetResource(id);
|
|
if(!folderResource)
|
|
return false;
|
|
|
|
var db = GetFolderDatasource();
|
|
|
|
var property =
|
|
RDF.GetResource('http://home.netscape.com/NC-rdf#SpecialFolder');
|
|
if (!property) return false;
|
|
var result = db.GetTarget(folderResource, property , true);
|
|
if (!result) return false;
|
|
result = result.QueryInterface(Components.interfaces.nsIRDFLiteral);
|
|
if (!result) return false;
|
|
if(result.Value == folderName)
|
|
return true;
|
|
|
|
return false;
|
|
}
|
|
|
|
//Called when selection changes in the thread pane.
|
|
function ThreadPaneSelectionChange(fromDeleteOrMoveHandler)
|
|
{
|
|
// we are batching. bail out, we'll be back when the batch is over
|
|
if (gBatching) return;
|
|
|
|
var collapsed = IsThreadAndMessagePaneSplitterCollapsed();
|
|
|
|
var tree = GetThreadTree();
|
|
var selectedMessages = tree.selectedItems;
|
|
var numSelected = selectedMessages.length;
|
|
var messageUriToLoad = null;
|
|
|
|
if (!gNextMessageAfterDelete && selectedMessages && (numSelected == 1) ) {
|
|
messageUriToLoad = selectedMessages[0].getAttribute('id');
|
|
}
|
|
|
|
// if the message pane isn't collapsed, and we have a message to load
|
|
// go ahead and load the message
|
|
if (!collapsed && messageUriToLoad) {
|
|
LoadMessageByUri(messageUriToLoad);
|
|
}
|
|
|
|
// if gNextMessageAfterDelete is true, we can skip updating the commands because
|
|
// we'll be coming back to load that message, and we'll update the commands then
|
|
//
|
|
// if fromDeleteOrMoveHandler is true, we are calling ThreadPaneSelectionChange after handling
|
|
// a message delete or message move, so we might need to update the commands. (see below)
|
|
//
|
|
// if gCurrentLoadingFolderURI is non null, we are loading a folder, so we need to update the commands
|
|
//
|
|
// if messageUriToLoad is non null, we are loading a message, so we might need to update commmands. (see below)
|
|
if (!gNextMessageAfterDelete && (gCurrentLoadingFolderURI || fromDeleteOrMoveHandler || messageUriToLoad)) {
|
|
// if we are moving or deleting, we'll come in here twice. once to load the message and once when
|
|
// we are done moving or deleting. when we loaded the message the first time, we called updateCommands().
|
|
// there is no need to do it again.
|
|
if (fromDeleteOrMoveHandler && messageUriToLoad && (messageUriToLoad == gLastMessageUriToLoad)) {
|
|
// skip the call to updateCommands()
|
|
}
|
|
else {
|
|
document.commandDispatcher.updateCommands('threadTree-select');
|
|
}
|
|
}
|
|
|
|
//remember the last message we loaded
|
|
gLastMessageUriToLoad = messageUriToLoad;
|
|
}
|
|
|
|
function GetThreadTree()
|
|
{
|
|
if (gThreadTree) return gThreadTree;
|
|
var threadTree = document.getElementById('threadTree');
|
|
gThreadTree = threadTree;
|
|
return threadTree;
|
|
}
|
|
|
|
function GetThreadTreeFolder()
|
|
{
|
|
var tree = GetThreadTree();
|
|
return tree;
|
|
}
|
|
|