Closed Bug 1677062 Opened 4 years ago Closed 3 years ago

[Compose API] Add onNew, onReply and onForward event or expose gComposeType

Categories

(Thunderbird :: Add-Ons: Extensions API, enhancement)

enhancement

Tracking

(thunderbird_esr78 wontfix)

RESOLVED FIXED
88 Branch
Tracking Status
thunderbird_esr78 --- wontfix

People

(Reporter: TbSync, Assigned: TbSync)

References

Details

(Whiteboard: webextension-api-request)

Attachments

(1 file, 1 obsolete file)

It should be possible to know whether a composer window was created as new, as a reply or as a forward.

We could add onNew, onReply and on Forward events, and/or expose the gComposeType in a usable way. Maybe as part of the ComposeDetails object?

Adding a new type to the ComposeDetails, being "new", "reply", "forward" or "draft".

Comment on attachment 9204539 [details] [diff] [review]
bug1677062_expose_gComposeType.patch

Geoff has a few other reviews, so asking you.

Attachment #9204539 - Flags: review?(mkmelin+mozilla)
Comment on attachment 9204539 [details] [diff] [review]
bug1677062_expose_gComposeType.patch

Review of attachment 9204539 [details] [diff] [review]:
-----------------------------------------------------------------

Stealing this review.

::: mail/components/extensions/parent/ext-compose.js
@@ +291,5 @@
> +    case Ci.nsIMsgCompType.ForwardInline:
> +      type = "forward";
> +      break;
> +    default:
> +      type = composeWindow.gComposeType;

Not sure we could ever get here but it's probably best to leave type undefined if we do.

::: mail/components/extensions/schemas/compose.json
@@ +110,5 @@
>              "optional": true
>            },
> +          "type": {
> +            "type": "string",
> +            "description": "Read-only. Basic type of the compose window.",

This isn't very clear. Maybe something like "What sort of message is being composed."?

::: mail/components/extensions/test/browser/browser_ext_compose_details.js
@@ +718,5 @@
> +  await extension.startup();
> +
> +  // The first part of the test is done in the background script using the
> +  // compose API to open compose windows. For the second part we need to open
> +  // a draft, which is not possible with the compose API.

We should fix that. But not here, obviously.
Attachment #9204539 - Flags: review?(mkmelin+mozilla) → review+

Fixing the reported issues.

Attachment #9204539 - Attachment is obsolete: true
Attachment #9204547 - Flags: review+
Status: NEW → ASSIGNED
Blocks: 1691253

Pushed by geoff@darktrojan.net:
https://hg.mozilla.org/comm-central/rev/947d10fcdca7
Expose gComposeType as type in ComposeDetails. r=darktrojan

Status: ASSIGNED → RESOLVED
Closed: 3 years ago
Resolution: --- → FIXED
Target Milestone: --- → 88 Branch

Excuse the "drive-by" comment, but why do you distinguish starting from a draft from the "new" set which includes Ci.nsIMsgCompType.EditTemplate. In the latter case, the message is most likely not going to be sent, but instead saved as a template again. You can also edit a draft "as new", the difference is that in that case the original draft is not deleted when the message is sent. In comment #0 you said that you wanted to distinguish new, reply and forward, but now you also have draft but don't differentiate messages that were based on another message ("as new") or a template. Hard to tell whether add-ons care.

During my tests draft seemed special, as independent of the original type (new, reply, forward), the saved email would be of type draft and it has a special "This is a draft" notification in the display message area (the original type was no longer recoverable, iirc). Other types like EditTemplate behave like "new".

So from the perspective of an add-on developer I asked myself what types could be useful, trying not to expose too much internal stuff which could get removed/changed in the future. What do you propose to change?

I don't understand the first paragraph. Ci.nsIMsgCompType.Draft means that the composition was started from a draft. It's not really related to the fact that a saved draft in the Drafts folder displays a "This is a draft" notification. Internally and technically, new message from draft/template and "edit new" are mostly the same code path.

As for the question: This is a tough call. You're designing an interface without knowing the future use. I've just noticed an inconsistency. New, reply and forward are clear, but suddenly you've split the "draft new" from the other "news".

I guess I'd have the three initial categories, new, reply, forward, or if you want to split "new" some more, then I'd split it completely:
new - as in brand new
new from draft
new from template (EditTemplate would fall in to the "new from template" category, but different from "Template")
new from other message (edit as new).

You could even stick this into the string, so people who just care about new, can do a pattern matching/substring, so something like:
new, new.draft, new.template, new.edit.

How do I trigger the two template options ("edit template" and "new from template") from within Thunderbird?

First you need to prepare a template by starting a new composition, entering the template information (typically some formatting or standard reply, see below) and saving it as a template. Then go to the template folder, you have "New Message from Template" and "Edit Template" in the context/right-click menu. Double-click triggers the former. FYI, templates are also used in the filter manager, there is a filter action "Reply with Template", so that's TB's version of the "out of office" reply. But it only works if TB is running.

Thanks.

Thinking about this, I tend to remove the drafts type. I see the inconsistency now.

Tough call. Personally, I would have just handed the numeric compose type back. I'd be in favour of returning more information rather than less. You don't want to revisit this when it turns out that people want to distinguish the different types of "new". That said, you filed the bug, so did you have any special requirement in any particular add-on in mind?

I filed in on behalf of someone from discuss.thunderbird.net. Sadly I did not put the bug number in the thread back then and I failed to find it again. But it was about being able to detect replies.

From other implementation I worked I know the WebExtension interface must be sort of independent of TB internals, so we do not break anything if for whatever reason the ids change. So the type must be a well-defined string.

Let us see if I can get some broader feedback.

... it was about being able to detect replies.

With your technique you can only detect the reply when the user replies. If he/she gets interrupted, saves the reply as draft and resumes replying later, you will detect it as new/draft. To detect the message as reply again, one would have to inspect the headers, like the "in-reply-to", which appears to be saved on the draft. I guess that's used to tag the original message as replied when the reply is finally sent, even if it was stored a few times as draft in the meantime. It would be a bit trickier for forward, looks like the "in-reply-to" header appears there, too, and there is also a "X-Forwarded-Message-Id" header. It all depends on what you want to do and what your requirements/specification are.

But that would mean we have to keep the draft type and allow to inspect the headers in order for extension to know what it was before. I think there is a bug for that request already. This would also mean we would need the template type.

(In reply to John Bieling (:TbSync) from comment #11)

Thinking about this, I tend to remove the drafts type. I see the inconsistency now.

(In reply to John Bieling (:TbSync) from comment #15)

But that would mean we have to keep the draft type and allow to inspect the headers in order for extension to know what it was before. I think there is a bug for that request already. This would also mean we would need the template type.

So what's the way forward here? Follow-up bug? Some other bug already exists?

Flags: needinfo?(john)

Follow up bug adding template.

Flags: needinfo?(john)

Please post the number here.

Blocks: 1696646
No longer blocks: 1696646
Regressions: 1696401

Comment on attachment 9204547 [details] [diff] [review]
bug1677062_expose_gComposeType_v2.patch

[Approval Request Comment]
Regression caused by (bug #):
User impact if declined:
Testing completed (on c-c, etc.):
Risk to taking this patch (and alternatives if risky):
I am evaluating.

Attachment #9204547 - Flags: approval-comm-beta?
Attachment #9204547 - Flags: approval-comm-beta?
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: