[de-xbl] convert calendar view bindings: calendar-day-view, calendar-week-view, calendar-multiweek-view, calendar-month-view, calendar-multiday-view, calendar-multiday-view, calendar-month-base-view
Categories
(Calendar :: Calendar Frontend, task)
Tracking
(Not tracked)
People
(Reporter: mkmelin, Assigned: pmorris)
References
Details
Attachments
(5 files, 8 obsolete files)
1.46 KB,
patch
|
Details | Diff | Splinter Review | |
3.56 KB,
patch
|
Details | Diff | Splinter Review | |
20.60 KB,
patch
|
Details | Diff | Splinter Review | |
21.30 KB,
patch
|
Details | Diff | Splinter Review | |
470.42 KB,
patch
|
Details | Diff | Splinter Review |
Convert the calendar-views.xml bindings to custom element.
https://searchfox.org/comm-central/rev/b2c998eb41d696d31a87384487514e9b386f201c/calendar/base/content/calendar-views.xml#14
Inheritance is from calendar-multiday-view, so that also needs to be included in this conversion.
https://searchfox.org/comm-central/rev/b2c998eb41d696d31a87384487514e9b386f201c/calendar/base/content/calendar-multiday-view.xml#2443
But that inherits from
https://searchfox.org/comm-central/rev/b2c998eb41d696d31a87384487514e9b386f201c/calendar/base/content/calendar-base-view.xml#14
... and that is used in calendar-month-base-view
https://searchfox.org/comm-central/source/calendar/base/content/calendar-month-view.xml#341
Unfortunately they will all probably need to be converted in one shot due to the inheritance...
Updated•6 years ago
|
Assignee | ||
Comment 1•6 years ago
|
||
1 of 5 patches. This one improves the mozmill test infrastructure so you can use single class selectors. (Trying this again, see bug 1545142.)
Assignee | ||
Comment 2•6 years ago
|
||
2 of 5 patches. Part 1 of 4 for this bug. Rename a file we can better preserve history.
Assignee | ||
Comment 3•6 years ago
|
||
3 of 5 patches. Part 2 of 4 for this bug. Rename a file for more consistent file naming. ("calendar-views.js" will be the custom element file and "calendar-views-utils.js" will be for related code.)
Assignee | ||
Comment 4•6 years ago
|
||
4 of 5 patches. Part 3 of 4 for this bug.
This is the main patch with the de-xbl work for the calendar views. Apologies for its size.
I ran into some issues with XBL <-> custom elements interoperability with the <calendar-time-bar>
element. It seemed better to just go ahead and de-xbl it rather than put time into figuring out the issues. So I went ahead and did that as part of this patch.
Then there were some XUL layout issues with <calendar-time-bar>
and it seemed easier to just use HTML instead of XUL for it. (And I just remembered that its class is still extending MozXULELement. Seems to work fine but maybe that should change?)
Assignee | ||
Comment 5•6 years ago
|
||
5 of 5 patches. Part 4 of 4 for this bug.
While I was removing the aArgs from the other files this calendar-views-utils.js
file was open in my editor, and I removed the aArgs from it before realizing that wasn't strictly needed for this patch. So I'm including it as a separate patch so the work doesn't go to waste.
Assignee | ||
Comment 6•6 years ago
|
||
Try server run looks good, only known failures:
https://treeherder.mozilla.org/#/jobs?repo=try-comm-central&revision=e2d1eefb6a15d00afece31fa3f9b716e954a8f87
Reporter | ||
Updated•5 years ago
|
Reporter | ||
Updated•5 years ago
|
Reporter | ||
Updated•5 years ago
|
Reporter | ||
Comment 7•5 years ago
|
||
Assignee | ||
Comment 8•5 years ago
|
||
(In reply to Magnus Melin [:mkmelin] from comment #7)
re const/let - I think there was some discussion in another bug.
I don't have a very strong opinion, but might go with let for non-constants
(even if they do not change, they can in future code)
Yeah, this came up very briefly here. Philipp asked why I was using const, and I explained the reasoning (for example: https://eslint.org/docs/rules/prefer-const). I still think it's better to prefer const over let. If something needs to change in the future you can always switch to let.
Even if the decision is to prefer let over const overall, then I'd say it's not worth the effort to change the consts back to lets in these patches.
@@ +937,5 @@
disconnectedCallback() {
if (this.mCalendar) {
this.mCalendar.removeObserver(this.mObserver);
}
looks like this would not necessarily work correctly. There must be symmetry
with connectedCallback and disconnectedCallback so that they can run
mulitple times without losing some part (like this.mObserver)
Hmm, okay, I see the issue. (If only JS classes had a destructor method...) Seems like the solution would be to:
- Move all the code in the connectedCallback into a constructor method.
- Put the code that is undone in disconnectedCallback back into the connectedCallback and make connectedCallback able to fire more than once.
- In child classes, similarly divide code into constructor and connectedCallback, and make the connectedCallbacks able to fire more than once.
Does that sound right? Am I missing something?
On the other hand, I don't think these elements are ever disconnected, so is disconnecedCallback ever called? Is it even needed? Even if you disable/uninstall Lightning, that (currently) requires a restart.
I've made the other changes locally. Would be interested to know your thoughts (mkmelin), on this before heading down one path or the other.
Reporter | ||
Comment 9•5 years ago
|
||
In the constructor you're not allowed to add children or set attributes. Adding event handling is ok.
It's possible some of the tear down needed really should be like we did in bug 1549257, using an onload listener that's called just once.
disconnectedCallback can be fired e.g. if the node gets moved I think. connectedCallback also seems to run more than once for some situations.
Reporter | ||
Updated•5 years ago
|
Reporter | ||
Comment 10•5 years ago
|
||
Assignee | ||
Comment 11•5 years ago
|
||
Okay, I've addressed all the comments from mkmelin's review.
Also, I've re-ordered the last two patches.
This "more-aArgs" patch is now "part3" of 4 in the series (for this bug).
Next I'll upload the main "de-xbl" patch which is now "part4" of 4 in the series (for this bug).
This way we can go ahead and land all of the patches except for the main de-xbl one, which needs review from Fallen before landing.
Assignee | ||
Comment 12•5 years ago
|
||
This is the main patch, part 4 of 4 for this bug. It needs Fallen's review.
(The other patches are ready to go ahead and land.)
Comment 13•5 years ago
|
||
Assignee | ||
Comment 14•5 years ago
|
||
Thanks for the review. I did use the XBL converter. I've rebased on current trunk and am uploading the rebased patches.
This is the first one, with the mozmill change.
Assignee | ||
Comment 18•5 years ago
|
||
Part 4 of 4.
I ran the calendar mozmill tests locally with the rebased patches and they all passed. So these are ready for checkin. (Let me know if another try server run is needed.)
Assignee | ||
Updated•5 years ago
|
Assignee | ||
Comment 19•5 years ago
|
||
Sigh... In that previous "Part 4 of 4" patch (calendar-views-part4-de-xbl-2.patch) somehow in the rebasing process Mercurial lost the trail that the new js files were copied/renamed from the deleted xbl files.
This new "Part 4 of 4" patch restores the linkage between the deleted xbl files and new js files (for history's sake).
Comment 20•5 years ago
|
||
Thes patches are in conflict with bug 1504416, but applying bug 1504416 last gave worse errors:
applying calendar-views-rename-part2-1.patch
unable to find 'calendar/base/content/widgets/calendar-list-tree.xml' for patching
(use '--prefix' to apply patch relative to the current directory)
1 out of 1 hunks FAILED -- saving rejects to file calendar/base/content/widgets/calendar-list-tree.xml.rej
patching file calendar/lightning/content/messenger-overlay-sidebar.xul
Hunk #1 FAILED at 42
1 out of 1 hunks FAILED -- saving rejects to file calendar/lightning/content/messenger-overlay-sidebar.xul.rej
applying calendar-views-part4-de-xbl-3.patch
patching file calendar/base/jar.mn
Hunk #1 succeeded at 12 with fuzz 2 (offset -1 lines).
patching file calendar/lightning/content/messenger-overlay-sidebar.xul
Hunk #1 FAILED at 42
1 out of 1 hunks FAILED -- saving rejects to file calendar/lightning/content/messenger-overlay-sidebar.xul.rej
I did the best I could, obviously for calendar-list-tree.xml there was nothing to fix.
Comment 21•5 years ago
|
||
Pushed by mozilla@jorgk.com:
https://hg.mozilla.org/comm-central/rev/7adb743c979a
part 1: Rename calendar-base-view.js to calendar-day-label.js. r=mkmelin
https://hg.mozilla.org/comm-central/rev/13cd5bcce746
part 2: Rename calendar-views.js to calendar-views-utils.js. r=mkmelin
https://hg.mozilla.org/comm-central/rev/8c9c30927876
part 3: Remove aArgs from calendar-views-utils.js
. r=mkmelin
https://hg.mozilla.org/comm-central/rev/c3195cbed417
part 4: [de-xbl] Convert calendar view bindings. r=philipp
Comment 22•5 years ago
|
||
Also landed with the wrong bug number:
https://hg.mozilla.org/comm-central/rev/92b567487475
Let mozmill tests work with multiple classes. r=mkmelin
Assignee | ||
Comment 23•5 years ago
|
||
Ah... sorry I didn't think about this mid-air collision, and thanks for resolving it. Also sorry for the bug number mix up. That issue first came up in the minimonth bug, and I forgot to update it. I'll be more careful with similar cases in the future.
Description
•