diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /comm/mail/modules/MailViewManager.jsm | |
parent | Initial commit. (diff) | |
download | thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'comm/mail/modules/MailViewManager.jsm')
-rw-r--r-- | comm/mail/modules/MailViewManager.jsm | 169 |
1 files changed, 169 insertions, 0 deletions
diff --git a/comm/mail/modules/MailViewManager.jsm b/comm/mail/modules/MailViewManager.jsm new file mode 100644 index 0000000000..f81221e609 --- /dev/null +++ b/comm/mail/modules/MailViewManager.jsm @@ -0,0 +1,169 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +const EXPORTED_SYMBOLS = ["MailViewManager", "MailViewConstants"]; + +/** + * Put the MailViewConstants in an object so we can export them to + * msgViewPickerOverlay in one blob without contaminating everyone's address + * space who might want to import us. + */ +var MailViewConstants = { + // tag views have kViewTagMarker + their key as value + kViewItemAll: 0, + kViewItemUnread: 1, + kViewItemTags: 2, // former labels used values 2-6 + kViewItemNotDeleted: 3, + // not a real view! a sentinel value to pop up a dialog + kViewItemVirtual: 7, + // not a real view! a sentinel value to pop up a dialog + kViewItemCustomize: 8, + kViewItemFirstCustom: 9, + + kViewCurrent: "current-view", + kViewCurrentTag: "current-view-tag", + kViewTagMarker: ":", +}; + +/** + * MailViews are view 'filters' implemented using search terms. DBViewWrapper + * uses the SearchSpec class to combine the search terms of the mailview with + * those of the virtual folder (if applicable) and the quicksearch (if + * applicable). + */ +var MailViewManager = { + _views: {}, + _customMailViews: Cc["@mozilla.org/messenger/mailviewlist;1"].getService( + Ci.nsIMsgMailViewList + ), + + /** + * Define one of the built-in mail-views. If you want to define your own + * view, you need to define a custom view using nsIMsgMailViewList. + * + * We define our own little view definition abstraction because some day this + * functionality may want to be generalized to be usable by gloda as well. + * + * @param aViewDef The view definition, three attributes are required: + * - name: A string name for the view, for debugging purposes only. This + * should not be localized! + * - index: The index to assign to the view. + * - makeTerms: A function to invoke that returns a list of search terms. + */ + defineView(aViewDef) { + this._views[aViewDef.index] = aViewDef; + }, + + /** + * Wrap a custom view into our cute little view abstraction. We do not cache + * these because views should not change often enough for it to matter from + * a performance perspective, but they will change enough to make stale + * caches a potential issue. + */ + _wrapCustomView(aCustomViewIndex) { + let mailView = this._customMailViews.getMailViewAt(aCustomViewIndex); + return { + name: mailView.prettyName, // since the user created it it's localized + index: aCustomViewIndex, + makeTerms(aSession, aData) { + return mailView.searchTerms; + }, + }; + }, + + _findCustomViewByName(aName) { + let count = this._customMailViews.mailViewCount; + for (let i = 0; i < count; i++) { + let mailView = this._customMailViews.getMailViewAt(i); + if (mailView.mailViewName == aName) { + return this._wrapCustomView(i); + } + } + throw new Error("No custom view with name: " + aName); + }, + + /** + * Return the view definition associated with the given view index. + * + * @param aViewIndex If the value is an integer it references the built-in + * view with the view index from MailViewConstants, or if the index + * is >= MailViewConstants.kViewItemFirstCustom, it is a reference to + * a custom view definition. If the value is a string, it is the name + * of a custom view. The string case is mainly intended for testing + * purposes. + */ + getMailViewByIndex(aViewIndex) { + if (typeof aViewIndex == "string") { + return this._findCustomViewByName(aViewIndex); + } + if (aViewIndex < MailViewConstants.kViewItemFirstCustom) { + return this._views[aViewIndex]; + } + return this._wrapCustomView( + aViewIndex - MailViewConstants.kViewItemFirstCustom + ); + }, +}; + +MailViewManager.defineView({ + name: "all mail", // debugging assistance only! not localized! + index: MailViewConstants.kViewItemAll, + makeTerms(aSession, aData) { + return null; + }, +}); + +MailViewManager.defineView({ + name: "new mail / unread", // debugging assistance only! not localized! + index: MailViewConstants.kViewItemUnread, + makeTerms(aSession, aData) { + let term = aSession.createTerm(); + let value = term.value; + + value.status = Ci.nsMsgMessageFlags.Read; + value.attrib = Ci.nsMsgSearchAttrib.MsgStatus; + term.value = value; + term.attrib = Ci.nsMsgSearchAttrib.MsgStatus; + term.op = Ci.nsMsgSearchOp.Isnt; + term.booleanAnd = true; + + return [term]; + }, +}); + +MailViewManager.defineView({ + name: "tags", // debugging assistance only! not localized! + index: MailViewConstants.kViewItemTags, + makeTerms(aSession, aKeyword) { + let term = aSession.createTerm(); + let value = term.value; + + value.str = aKeyword; + value.attrib = Ci.nsMsgSearchAttrib.Keywords; + term.value = value; + term.attrib = Ci.nsMsgSearchAttrib.Keywords; + term.op = Ci.nsMsgSearchOp.Contains; + term.booleanAnd = true; + + return [term]; + }, +}); + +MailViewManager.defineView({ + name: "not deleted", // debugging assistance only! not localized! + index: MailViewConstants.kViewItemNotDeleted, + makeTerms(aSession, aKeyword) { + let term = aSession.createTerm(); + let value = term.value; + + value.status = Ci.nsMsgMessageFlags.IMAPDeleted; + value.attrib = Ci.nsMsgSearchAttrib.MsgStatus; + term.value = value; + term.attrib = Ci.nsMsgSearchAttrib.MsgStatus; + term.op = Ci.nsMsgSearchOp.Isnt; + term.booleanAnd = true; + + return [term]; + }, +}); |