Files
Mozilla/mozilla/mailnews/compose/resources/content/addressAutoComplete.js
ducarroz%netscape.com c9277036eb Fix for bugs 12507, 15103, 15105, 22077, 25137, 26408, 10932. A lot of UI work. R=hangas
git-svn-id: svn://10.0.0.236/trunk@59791 18797224-902f-48f8-a5cc-f745e15eee43
2000-02-04 22:52:03 +00:00

93 lines
2.6 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.org code.
*
* The Initial Developer of the Original Code is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
* Jean-Francois Ducarroz <ducarroz@netscape.com>
* Seth Spitzer <sspitzer@netscape.com>
* Alec Flett <alecf@netscape.com>
*/
// get the current identity from the UI
var identityElement;
var accountManager = Components.classes["component://netscape/messenger/account-manager"].getService(Components.interfaces.nsIMsgAccountManager);
var AddressAutoCompleteListener = {
onAutoCompleteResult: function(aItem, aOriginalString, aMatch) {
dump("aItem = " + aItem + "\n");
if ( aItem )
{
dump("value = " + aItem.value + "\n");
dump("aOriginalString = " + aOriginalString + "\n");
dump("aMatch = " + aMatch + "\n");
aItem.value = aMatch;
aItem.lastValue = aMatch;
}
}
};
function AutoCompleteAddress(inputElement)
{
///////////// (select_doc_id, doc_id)
dump("inputElement = " + inputElement + "\n");
//Do we really have to autocomplete?
if (inputElement.lastValue && inputElement.lastValue == inputElement.value)
return;
var row = awGetRowByInputElement(inputElement);
var select = awGetPopupElement(row);
dump("select = " + select + "\n");
dump("select.value = " + select.value + "\n");
if (select.value == "")
return;
if (select.value == "addr_newsgroups") {
dump("don't autocomplete, it's a newsgroup");
return;
}
var ac = Components.classes['component://netscape/messenger/autocomplete&type=addrbook'];
if (ac) {
ac = ac.getService();
}
if (ac) {
ac = ac.QueryInterface(Components.interfaces.nsIAutoCompleteSession);
}
if (!identityElement)
identityElement = document.getElementById("msgIdentity");
var identity=null;
if (identityElement) {
idKey = identityElement.value;
identity = accountManager.getIdentity(idKey);
}
ac.autoComplete(identity, inputElement, inputElement.value, AddressAutoCompleteListener);
}