Closed
Bug 982656
Opened 11 years ago
Closed 10 years ago
'Restore Defaults' should place all 3rd party widgets in the palette
Categories
(Firefox :: Toolbars and Customization, defect)
Firefox
Toolbars and Customization
Tracking
()
VERIFIED
FIXED
Firefox 33
People
(Reporter: jaws, Assigned: jaws)
References
(Depends on 2 open bugs, Blocks 2 open bugs)
Details
(Whiteboard: [Australis:P4+] p=3 s=33.1 [qa!] )
Attachments
(1 file, 3 obsolete files)
6.40 KB,
patch
|
Gijs
:
review+
|
Details | Diff | Splinter Review |
From Asa,
> Add-on toolbar buttons should not be allowed to claim to be "default"
> buttons and be restored to my toolbar when I tell Firefox to "Restore
> Defaults." This button should do what it claims to do and what users
> will expect it to do. It should undo what everdamage has been done to
> the user's toolbar, whether self-inflicted or by way of a pushy add-on.
Assignee | ||
Comment 1•11 years ago
|
||
Discussion can be found here, https://mail.mozilla.org/pipermail/firefox-dev/2014-March/001472.html
Assignee | ||
Comment 2•11 years ago
|
||
Attachment #8389962 -
Flags: review?(mconley)
Comment 3•11 years ago
|
||
Comment on attachment 8389962 [details] [diff] [review]
Patch
Review of attachment 8389962 [details] [diff] [review]:
-----------------------------------------------------------------
I've got some questions with this patch, and I'm not 100% sure just my eyes should be on it. I think Gijs or Unfocused should look at it too.
::: browser/components/customizableui/src/CustomizableUI.jsm
@@ +1670,5 @@
> let defaults = gAreas.get(aArea).get("defaultPlacements");
> if (defaults) {
> + for (let id of defaults) {
> + let widget = gPalette.get(id);
> + if (!aIsReset || !widget || widget.source == CustomizableUI.SOURCE_BUILTIN) {
Wait... why are we adding it if !widget? Not too clear what the logic is doing here. If this is doing what you wanted, some documentation to clear it up would probably be good.
@@ +1809,5 @@
> this.notifyListeners("onWidgetCreated", widget.id);
>
> if (widget.defaultArea) {
> let area = gAreas.get(widget.defaultArea);
> + let areaIsDefaultCollapsed = area.get("defaultCollapsed") === null;
Wait... so if area.get("defaultCollapsed") returns true, then areaIsDefaultCollapsed is false?
That doesn't seem right...
@@ +1810,5 @@
>
> if (widget.defaultArea) {
> let area = gAreas.get(widget.defaultArea);
> + let areaIsDefaultCollapsed = area.get("defaultCollapsed") === null;
> + if (areaIsDefaultCollapsed ||
So we will let add-ons default themselves to collapsed toolbars?
Attachment #8389962 -
Flags: review?(mconley)
Assignee | ||
Comment 4•11 years ago
|
||
(In reply to Mike Conley (:mconley) from comment #3)
>
> @@ +1809,5 @@
> > this.notifyListeners("onWidgetCreated", widget.id);
> >
> > if (widget.defaultArea) {
> > let area = gAreas.get(widget.defaultArea);
> > + let areaIsDefaultCollapsed = area.get("defaultCollapsed") === null;
>
> Wait... so if area.get("defaultCollapsed") returns true, then
> areaIsDefaultCollapsed is false?
>
> That doesn't seem right...
If an area has defaultCollapsed==null, then we don't care about what the defaultPlacements are for that area since the area is not taken in to account for reset/inDefaultState calculations.
> @@ +1810,5 @@
> >
> > if (widget.defaultArea) {
> > let area = gAreas.get(widget.defaultArea);
> > + let areaIsDefaultCollapsed = area.get("defaultCollapsed") === null;
> > + if (areaIsDefaultCollapsed ||
>
> So we will let add-ons default themselves to collapsed toolbars?
Yes, this is necessary for an add-on that registers a toolbar and also populates that toolbar with some default items.
Comment 5•11 years ago
|
||
(In reply to Jared Wein [:jaws] (please needinfo? me) from comment #4)
> (In reply to Mike Conley (:mconley) from comment #3)
> >
> > @@ +1809,5 @@
> > > this.notifyListeners("onWidgetCreated", widget.id);
> > >
> > > if (widget.defaultArea) {
> > > let area = gAreas.get(widget.defaultArea);
> > > + let areaIsDefaultCollapsed = area.get("defaultCollapsed") === null;
> >
> > Wait... so if area.get("defaultCollapsed") returns true, then
> > areaIsDefaultCollapsed is false?
> >
> > That doesn't seem right...
>
> If an area has defaultCollapsed==null, then we don't care about what the
> defaultPlacements are for that area since the area is not taken in to
> account for reset/inDefaultState calculations.
>
> > @@ +1810,5 @@
> > >
> > > if (widget.defaultArea) {
> > > let area = gAreas.get(widget.defaultArea);
> > > + let areaIsDefaultCollapsed = area.get("defaultCollapsed") === null;
> > > + if (areaIsDefaultCollapsed ||
> >
> > So we will let add-ons default themselves to collapsed toolbars?
>
> Yes, this is necessary for an add-on that registers a toolbar and also
> populates that toolbar with some default items.
Ah, I see - so you're using the defaultCollapsed property as a way of determining whether or not the toolbar is provided from an add-on. I wonder if instead of doing this instead, an area can have a "source" property, mapped to SOURCE_BUILTIN or SOURCE_EXTERNAL (I know those are only for widgets right now, but we could extend their usage).
At the very least, if we went this route, I think we should rename the variable to isExternalToolbar or something.
Comment 6•11 years ago
|
||
We should figure this out, but we discussed on IRC that we should probably deprio for 29
Whiteboard: [Australis:P2] → [Australis:P4+]
Assignee | ||
Updated•11 years ago
|
Assignee: jaws → nobody
Status: ASSIGNED → NEW
Updated•11 years ago
|
Flags: firefox-backlog+
Summary: 'Restore Defaults' should place all 3rd party widgets in the palette → [UX] 'Restore Defaults' should place all 3rd party widgets in the palette
Whiteboard: [Australis:P4+] → [Australis:P4+] [ux] p=0
Updated•11 years ago
|
Whiteboard: [Australis:P4+] [ux] p=0 → [Australis:P4+] [ux] p=3
Comment 7•11 years ago
|
||
Some more context - this need a decision:
10:55 Gijs madhava: I think we first need to figure out what the desired end state is though. Both Blair and I think that we should provide add-ons with a way to say "insert this button here by default".
10:55 madhava is that the same as "insert it here on install?"
10:55 Gijs madhava: I guess that is a question.
10:55 Gijs s/a/the/
10:55 Gijs madhava: there's an argument that it should be limited to install, and an argument that it should not
10:56 Gijs madhava: for some context, add-on devs have complained since approximately forever that for whatever reason, their buttons get removed, and that's why they used to *always* insert into the navbar/add-on bar if they found their button wasn't in the document after the window had loaded
10:56 Gijs madhava: the current system basically says "that is evil, don't do it, use this property instead"
10:57 madhava I see
10:57 Gijs madhava: this way, if the user removes the button in customize mode, it gets removed and stays removed
10:57 madhava so we should tread lightly around changing the thing we've given them so that they don't behave badly
10:57 madhava I get it
10:57 Gijs madhava: but equally, using "restore defaults" will put it back so that it doesn't get "lost"
10:58 madhava I'm going to paste this in the bug
10:58 Gijs (although arguably, with the current customize mode, buttons are never as lost as they were, as it's so much more accessible)
Updated•11 years ago
|
Whiteboard: [Australis:P4+] [ux] p=3 → [Australis:P4+] [ux] p=3 [qa-]
Assignee | ||
Comment 8•11 years ago
|
||
If and when this bug gets fixed, it should get QA attention as it will noticeable affect the behavior of how Restore Defaults works.
Whiteboard: [Australis:P4+] [ux] p=3 [qa-] → [Australis:P4+] [ux] p=3 [qa+]
Comment 9•11 years ago
|
||
(In reply to Jared Wein [:jaws] (please needinfo? me) from comment #8)
> If and when this bug gets fixed, it should get QA attention as it will
> noticeable affect the behavior of how Restore Defaults works.
This was originally set as a UX bug by Madhava in the priority list and that's why I set the verification as [qa-]. I've sent a 'need info' to him to confirm if this is still the case.
Flags: needinfo?(madhava)
Assignee | ||
Comment 10•11 years ago
|
||
Ok, the confusion stems from this starting out as a bug that has a patch and is in progress of making the change. I missed the redirect of it to a [ux] bug.
Comment 11•11 years ago
|
||
Jared - I set it as a UX bug because the last I saw there was some debate still about whether changing this behavior would just cause more add-ons authors to do even more to add their add-ons on every restart (Gijs was explaining this in the block in Comment 7. I.e. are we just going to make things worse?
Maybe we have an answer for this right now, but otherwise I think the next step here is to make a decision. What do y
Flags: needinfo?(madhava)
Assignee | ||
Comment 12•11 years ago
|
||
Now that it is easier for people to customize their browser, and thus harder for people to "lose" items, I think we can let "Restore Defaults" do the full job of restoring the toolbars and menus to their default state.
Updated•11 years ago
|
Summary: [UX] 'Restore Defaults' should place all 3rd party widgets in the palette → 'Restore Defaults' should place all 3rd party widgets in the palette
Whiteboard: [Australis:P4+] [ux] p=3 [qa+] → [Australis:P4+] p=3 [qa+]
Comment 13•11 years ago
|
||
This made it out of priority backlog unassigned; adding [diamond] status. Jaws, you feel like mentoring this one, should a contributor step up?
Flags: needinfo?(jaws)
Whiteboard: [Australis:P4+] p=3 [qa+] → [Australis:P4+] p=3 [qa+] [diamond]
Assignee | ||
Comment 14•11 years ago
|
||
Not really. The patch attached here is pretty close to complete. We discussed this over Vidyo about the potential issue that Gijs brought up in comment #7 and decided to move forward with this patch. So this patch will probably need to be rebased and go through the review process. I don't know if that is something good for a new contributor to pick up?
Flags: needinfo?(jaws)
Whiteboard: [Australis:P4+] p=3 [qa+] [diamond] → [Australis:P4+] p=3 [qa+]
Comment 15•11 years ago
|
||
Nope, if you're going with that patch, that's fine. Thanks!
Assignee | ||
Updated•11 years ago
|
Assignee: nobody → jaws
Assignee | ||
Comment 16•11 years ago
|
||
Attachment #8389962 -
Attachment is obsolete: true
Attachment #8433610 -
Flags: review?(gijskruitbosch+bugs)
Assignee | ||
Updated•11 years ago
|
Status: NEW → ASSIGNED
Comment 17•11 years ago
|
||
Comment on attachment 8433610 [details] [diff] [review]
Patch (rebased)
Review of attachment 8433610 [details] [diff] [review]:
-----------------------------------------------------------------
::: browser/components/customizableui/src/CustomizableUI.jsm
@@ +1930,5 @@
> this.notifyListeners("onWidgetCreated", widget.id);
>
> if (widget.defaultArea) {
> let area = gAreas.get(widget.defaultArea);
> + let areaIsDefaultCollapsed = area.get("defaultCollapsed") === null;
I agree with Mike's comments here that we shouldn't use the defaultCollapsed property as a proxy for "is this an add-on area".
There's a list of builtin toolbars on CustomizableUI already. We could use that + it being a toolbar instead?
@@ +1932,5 @@
> if (widget.defaultArea) {
> let area = gAreas.get(widget.defaultArea);
> + let areaIsDefaultCollapsed = area.get("defaultCollapsed") === null;
> + if (areaIsDefaultCollapsed ||
> + widget.source == CustomizableUI.SOURCE_BUILTIN) {
So, I'm not a fan of the SOURCE_BUILTIN checking as it is, because only things in CustomizableWidgets.jsm will be marked as builtin. There's no way for external consumers elsewhere in the fx tree to create 'builtin' items. That sets us up for bloating CustomizableWidgets.jsm, and not being able to keep each widget with the rest of its feature's implementation.
That said, I don't know how to fix this in a simple fashion. We could allow consumers to specify this, but the obvious problem with that is that add-ons might abuse it. We could potentially make AMO check for this? It's possibly worth consulting with Jorge or others on this. Do you have any other ideas on how we could correctly distinguish this?
::: browser/components/customizableui/test/browser_982656_restore_defaults_builtin_widgets.js
@@ +5,5 @@
> +"use strict";
> +
> +// Restoring default should not place addon widgets back in the toolbar
> +add_task(function() {
> + ok(CustomizableUI.inDefaultState, "Default state to begin");
We used to do this in head.js but it got lost with the switch to add_task. It should already be the case everywhere... if you feel brave enough, please ensure this gets run after every test from head.js (which might be tricky because it needs to be after any cleanups added by the test itself...) - or file a followup for it. Having it in every test is a little redundant and makes us find the issue *after* it's happened (ie it's not this test's fault if it's not finding the browser in its default state).
@@ +7,5 @@
> +// Restoring default should not place addon widgets back in the toolbar
> +add_task(function() {
> + ok(CustomizableUI.inDefaultState, "Default state to begin");
> +
> + const kWidgetId = "add-on-widget";
This is left in gSeenWidgets afterwards; can you make the ID more unique so that we can be sure it doesn't cause subtle and hard-to-detect issues with later/other tests? Other tests all use some description of what the test is testing with the widget (or should, anyway).
Attachment #8433610 -
Flags: review?(gijskruitbosch+bugs)
Assignee | ||
Comment 18•10 years ago
|
||
(In reply to :Gijs Kruitbosch from comment #17)
> So, I'm not a fan of the SOURCE_BUILTIN checking as it is, because only
> things in CustomizableWidgets.jsm will be marked as builtin. There's no way
> for external consumers elsewhere in the fx tree to create 'builtin' items.
> That sets us up for bloating CustomizableWidgets.jsm, and not being able to
> keep each widget with the rest of its feature's implementation.
>
> That said, I don't know how to fix this in a simple fashion. We could allow
> consumers to specify this, but the obvious problem with that is that add-ons
> might abuse it. We could potentially make AMO check for this? It's possibly
> worth consulting with Jorge or others on this. Do you have any other ideas
> on how we could correctly distinguish this?
Yeah, this is a difficult problem but one that I don't think needs to be addressed immediately. I would rather handle this in a follow-up.
> :::
> browser/components/customizableui/test/
> browser_982656_restore_defaults_builtin_widgets.js
> @@ +5,5 @@
> > +"use strict";
> > +
> > +// Restoring default should not place addon widgets back in the toolbar
> > +add_task(function() {
> > + ok(CustomizableUI.inDefaultState, "Default state to begin");
>
> We used to do this in head.js but it got lost with the switch to add_task.
> It should already be the case everywhere... if you feel brave enough, please
> ensure this gets run after every test from head.js (which might be tricky
> because it needs to be after any cleanups added by the test itself...) - or
> file a followup for it.
This again is something I'd like to handle in a follow-up, as the test cleanup functions that are run in a separate add_task may need some refactoring.
https://tbpl.mozilla.org/?tree=Try&rev=d42b786254cc
Attachment #8433610 -
Attachment is obsolete: true
Attachment #8436149 -
Flags: review?(gijskruitbosch+bugs)
Comment 19•10 years ago
|
||
So, I must have misunderstood something.
(In reply to Jared Wein [:jaws] (please needinfo? me) from comment #4)
> (In reply to Mike Conley (:mconley) from comment #3)
> >
> > @@ +1809,5 @@
> > > this.notifyListeners("onWidgetCreated", widget.id);
> > >
> > > if (widget.defaultArea) {
> > > let area = gAreas.get(widget.defaultArea);
> > > + let areaIsDefaultCollapsed = area.get("defaultCollapsed") === null;
> >
> > Wait... so if area.get("defaultCollapsed") returns true, then
> > areaIsDefaultCollapsed is false?
> >
> > That doesn't seem right...
>
> If an area has defaultCollapsed==null, then we don't care about what the
> defaultPlacements are for that area since the area is not taken in to
> account for reset/inDefaultState calculations.
I don't believe this is true, looking at the inDefaultState implementation. We do also return external toolbars to their defined defaultState. This will also mean that if an add-on, for instance, defined a toolbar with defaultPlacements: ["home-button"], the behaviour of reset() would be undefined (probably dependent on the registration order). That edgecase can be a followup, but I believe the current code you have is just strange:
+ if (CustomizableUI.isBuiltinToolbar(widget.defaultArea) &&
+ widget.source == CustomizableUI.SOURCE_BUILTIN) {
+ // < add to defaultPlacements >
So this essentially means that:
(1) add-ons can't add stuff to the defaultPlacements of the toolbars (OK)
(2) add-ons can't add stuff to the defaultPlacements of add-on-provided toolbars (maybe OK, but I don't think so...)
(3) nobody (incl. builtin widgets) can add stuff to the defaultPlacements of the menu panel (definitely not OK)
At the moment I guess there is redundancy in the sense that we define the defaultPlacements for the menupanel /anyway/, but I don't think the check as it is right now makes sense.
>
> > @@ +1810,5 @@
> > >
> > > if (widget.defaultArea) {
> > > let area = gAreas.get(widget.defaultArea);
> > > + let areaIsDefaultCollapsed = area.get("defaultCollapsed") === null;
> > > + if (areaIsDefaultCollapsed ||
> >
> > So we will let add-ons default themselves to collapsed toolbars?
>
> Yes, this is necessary for an add-on that registers a toolbar and also
> populates that toolbar with some default items.
Right, so this seems to imply you don't think (2) is OK either. :-)
Updated•10 years ago
|
Attachment #8436149 -
Flags: review?(gijskruitbosch+bugs)
Assignee | ||
Comment 20•10 years ago
|
||
This should address the issues you brought up in the previous review pass. I was able to simplify the patch as it now only deals with building up the defaultset. I also added a test for the custom toolbar case.
While working on the test I noticed that we check for a null areaNode in CustomizeMode._getCustomizableChildForNode in one part but forget to check for null a couple lines later. I added a null check for this.
Attachment #8436149 -
Attachment is obsolete: true
Attachment #8437242 -
Flags: review?(gijskruitbosch+bugs)
Comment 21•10 years ago
|
||
Comment on attachment 8437242 [details] [diff] [review]
Patch v2
Review of attachment 8437242 [details] [diff] [review]:
-----------------------------------------------------------------
This looks good apart from the nits below. Please file followups as previously discussed.
::: browser/components/customizableui/src/CustomizableUI.jsm
@@ +1930,3 @@
> let area = gAreas.get(widget.defaultArea);
> //XXXgijs this won't have any effect for legacy items. Sort of OK because
> // consumers can modify currentset? Maybe?
Nit: I think you can just remove this comment.
@@ +1932,5 @@
> // consumers can modify currentset? Maybe?
> + if (widget.source == CustomizableUI.SOURCE_BUILTIN) {
> + addToDefaultPlacements = true;
> + } else if (!CustomizableUI.isBuiltinToolbar(widget.defaultArea) &&
> + !widget.defaultArea == CustomizableUI.AREA_PANEL) {
!foo == bar ? ITYM widget.defaultArea != CustomizableUI.AREA_PANEL maybe?
Attachment #8437242 -
Flags: review?(gijskruitbosch+bugs) → review+
Assignee | ||
Comment 22•10 years ago
|
||
Flags: in-testsuite+
Whiteboard: [Australis:P4+] p=3 [qa+] → [Australis:P4+] p=3 [qa+] [fixed-in-fx-team] s=33.1
Updated•10 years ago
|
Whiteboard: [Australis:P4+] p=3 [qa+] [fixed-in-fx-team] s=33.1 → [Australis:P4+] [fixed-in-fx-team] p=3 s=33.1 [qa+]
Assignee | ||
Comment 23•10 years ago
|
||
Filed bug 1023319 and bug 1023322 as follow-ups.
Assignee | ||
Updated•10 years ago
|
Version: 30 Branch → Trunk
Comment 24•10 years ago
|
||
Backed out for failures in browser_982656_restore_defaults_builtin_widgets.js:
https://tbpl.mozilla.org/?tree=Fx-Team&rev=e888096eee4b&jobname=browser-chrome-1
remote: https://hg.mozilla.org/integration/fx-team/rev/abe2531afc3d
Assignee | ||
Comment 25•10 years ago
|
||
Relanded with test fixed, https://hg.mozilla.org/integration/fx-team/rev/d93b579522fd
Status: ASSIGNED → RESOLVED
Closed: 10 years ago
Resolution: --- → FIXED
Whiteboard: [Australis:P4+] [fixed-in-fx-team] p=3 s=33.1 [qa+] → [Australis:P4+] p=3 s=33.1 [qa+]
Target Milestone: --- → Firefox 33
Updated•10 years ago
|
QA Contact: petruta.rasa
Comment 27•10 years ago
|
||
Tested 33.0a1 Nightly under Win 7 64-bit, Ubuntu 12.10 32-bit and Mac OSX 32-bit.
I installed several add-ons (Adblock Plus, Firebug, Ghostery, Greasemonkey, LastPass, SessionManager..) in order to reproduce the issue.
In a Nightly build before the fix, after 'Restore Default', all the add-ons were moved to the palette except for Adblock Plus.
In Nightly 2014-06-11, Adblock Plus is moved to the palette too.
Is this the expected behavior? Are there any other add-ons I could use for tests?
Also, please see what I encountered while testing the customization option: this image http://i.imgur.com/LExzbmH.png appeared for a second every time when exiting Customization. Unfortunately I couldn't find steps to reproduce and I couldn't see it again with the same profile, different builds / different profile, same build.
Maybe someone saw this too or has an idea of where those icons come from. I reproduced it under Win 7, Nightly 2014-06-11.
Comment 28•10 years ago
|
||
(In reply to Petruta Rasa [QA] [:petruta] from comment #27)
> Tested 33.0a1 Nightly under Win 7 64-bit, Ubuntu 12.10 32-bit and Mac OSX
> 32-bit.
>
> I installed several add-ons (Adblock Plus, Firebug, Ghostery, Greasemonkey,
> LastPass, SessionManager..) in order to reproduce the issue.
> In a Nightly build before the fix, after 'Restore Default', all the add-ons
> were moved to the palette except for Adblock Plus.
> In Nightly 2014-06-11, Adblock Plus is moved to the palette too.
> Is this the expected behavior? Are there any other add-ons I could use for
> tests?
Yes and no, that I know of, respectively.
> Also, please see what I encountered while testing the customization option:
> this image http://i.imgur.com/LExzbmH.png appeared for a second every time
> when exiting Customization. Unfortunately I couldn't find steps to reproduce
> and I couldn't see it again with the same profile, different builds /
> different profile, same build.
Did you still have all the add-ons installed, and could you not reproduce without them? It sounds like the issue was introduced by one of the add-ons. If you can figure out steps to reproduce, please file a new bug.
Comment 29•10 years ago
|
||
Thanks, Gijs!
Jared, any other thoughts? If not, I'll mark this bug accordingly. Thank you!
Flags: needinfo?(jaws)
Comment 31•10 years ago
|
||
Marking as verified based on comment 27.
(In reply to :Gijs Kruitbosch from comment #28)
> Did you still have all the add-ons installed, and could you not reproduce
> without them? It sounds like the issue was introduced by one of the add-ons.
> If you can figure out steps to reproduce, please file a new bug.
Now I can't reproduce with or without add-ons. I'll add a new bug once I see it again.
Status: RESOLVED → VERIFIED
Whiteboard: [Australis:P4+] p=3 s=33.1 [qa+] → [Australis:P4+] p=3 s=33.1 [qa!]
You need to log in
before you can comment on or make changes to this bug.
Description
•