Closed
Bug 958300
Opened 11 years ago
Closed 11 years ago
UITour: give tour page ability to query browser for Sync configured/not configured state
Categories
(Firefox :: General, defect, P1)
Firefox
General
Tracking
()
RESOLVED
FIXED
Firefox 29
People
(Reporter: Gavin, Assigned: MattN)
References
Details
Attachments
(2 files, 1 obsolete file)
We'd like to limit Sync promotion in 29 to users who've not already set up Sync in versions prior to 29, for various reasons.
This means that if we have a "Hey, try out sync" in the Australis/29 whatsnew experience, it needs to be able to hide itself if the browser already has sync set up. That requires some way for the page to say "tell me whether sync is set up", and for the browser to respond with a yes/no.
Comment 1•11 years ago
|
||
is there a tracking bug for this Sync fadeout? Cause I suppose you may also want to hide the Sync promo links we show on the bookmarks and add-ons panels (fwiw there to detect Sync we just check Services.prefs.prefHasUserValue("services.sync.username")).
Reporter | ||
Comment 2•11 years ago
|
||
(In reply to Marco Bonardo [:mak] from comment #1)
> is there a tracking bug for this Sync fadeout? Cause I suppose you may also
> want to hide the Sync promo links we show on the bookmarks and add-ons
> panels (fwiw there to detect Sync we just check
> Services.prefs.prefHasUserValue("services.sync.username")).
The panel promo links don't show up for users with sync already set up, right? So we don't need to worry about that, but it is worth worrying about making sure those panel links work correctly in the new world, and also worth considering re-setting browser.syncPromoViewsLeftMap (annoying that it looks like we can't differentiate "user clicked the X" and "we showed the notification 5 times already").
Reporter | ||
Comment 3•11 years ago
|
||
Filed bug 960047 for that.
Updated•11 years ago
|
Whiteboard: [maybe-fix-on-aurora]
Assignee | ||
Updated•11 years ago
|
Assignee: nobody → MattN+bmo
Status: NEW → ASSIGNED
Assignee | ||
Comment 4•11 years ago
|
||
Mark, can you confirm that the existing of the services.sync.username pref will still be enough with FxA sync?
Attachment #8361140 -
Flags: review?(mhammond)
Attachment #8361140 -
Flags: review?(bmcbride)
Comment 5•11 years ago
|
||
Comment on attachment 8361140 [details] [diff] [review]
v.1 getSyncConfiguration which checks services.sync.username
Review of attachment 8361140 [details] [diff] [review]:
-----------------------------------------------------------------
The "is sync configured" check of the username LGTM
::: browser/modules/test/browser.ini
@@ +9,5 @@
> [browser_UITour.js]
> skip-if = os == "linux" # Intermittent failures, bug 951965
> [browser_UITour2.js]
> [browser_UITour3.js]
> +[browser_UITour_sync.js]
is this file missing from the patch?
Attachment #8361140 -
Flags: review?(mhammond) → review+
Comment 6•11 years ago
|
||
Comment on attachment 8361140 [details] [diff] [review]
v.1 getSyncConfiguration which checks services.sync.username
Review of attachment 8361140 [details] [diff] [review]:
-----------------------------------------------------------------
I think a test file is sitting lonely on your hardrive somewhere.
::: browser/modules/UITour.jsm
@@ +235,5 @@
> this.endUrlbarCapture(window);
> break;
> }
> +
> + case "getSyncConfiguration": {
Make this "getConfiguration", and have the page pass in what they want to know (uitour.js library API can stay the same). Otherwise we're going to end up with several verbs like this, and a ton of boilerplate code.
Attachment #8361140 -
Flags: review?(bmcbride) → review-
Assignee | ||
Comment 7•11 years ago
|
||
(In reply to Blair McBride [:Unfocused] from comment #6)
> I think a test file is sitting lonely on your hardrive somewhere.
Sorry, I attached that during a meeting so didn't double-check all changes were included. Carrying-forward r=mhammond on the pref checking.
Attachment #8361140 -
Attachment is obsolete: true
Attachment #8361393 -
Flags: review?(bmcbride)
Assignee | ||
Comment 8•11 years ago
|
||
I believe we want to have the tour ready to test with users on Aurora so I don't think it's a good candidate for an Aurora fix.
Whiteboard: [maybe-fix-on-aurora]
Comment 9•11 years ago
|
||
Comment on attachment 8361393 [details] [diff] [review]
v.2 getConfiguration with "sync" argument. r=mhammond
Review of attachment 8361393 [details] [diff] [review]:
-----------------------------------------------------------------
r+ with the following fix:
::: browser/modules/UITour.jsm
@@ +236,5 @@
> break;
> }
> +
> + case "getConfiguration": {
> + this.getConfiguration(contentDocument, data.configuration, data.callbackID);
We need to be paranoid about the data coming from these events - bail out early here if data.configuration isn't a string.
Attachment #8361393 -
Flags: review?(bmcbride) → review+
Assignee | ||
Comment 10•11 years ago
|
||
(In reply to Blair McBride [:Unfocused] from comment #9)
> Comment on attachment 8361393 [details] [diff] [review]
> v.2 getConfiguration with "sync" argument. r=mhammond
>
> We need to be paranoid about the data coming from these events - bail out
> early here if data.configuration isn't a string.
OK, typeof check added.
https://hg.mozilla.org/integration/fx-team/rev/4129ed8dfd2b
Assignee | ||
Comment 11•11 years ago
|
||
Comment 12•11 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 11 years ago
Flags: in-testsuite+
Resolution: --- → FIXED
Target Milestone: --- → Firefox 29
You need to log in
before you can comment on or make changes to this bug.
Description
•