From 09f6b4920ec7947e02ab4ced5d36fcf26b6dd66d Mon Sep 17 00:00:00 2001 From: Jessica Jordan Date: Fri, 21 Feb 2020 15:00:39 +0100 Subject: [PATCH 1/5] blog(embertimes#136): add writeup on embermap el. mod. forw. video --- .../2020-02-21-the-ember-times-issue-136.md | 33 +++++++++++-------- 1 file changed, 20 insertions(+), 13 deletions(-) diff --git a/source/2020-02-21-the-ember-times-issue-136.md b/source/2020-02-21-the-ember-times-issue-136.md index 19d599dfd..234a1535a 100644 --- a/source/2020-02-21-the-ember-times-issue-136.md +++ b/source/2020-02-21-the-ember-times-issue-136.md @@ -1,6 +1,6 @@ --- title: The Ember Times - Issue No. 136 -author: Chris Ng, Amy Lam, Isaac Lee, Jared Galanis, Yehuda Katz, the crowd +author: Chris Ng, Amy Lam, Isaac Lee, Jared Galanis, Yehuda Katz, Jessica Jordan, the crowd tags: Recent Posts, Newsletter, Ember.js Times, Ember Times, 2020 alias : "blog/2020/02/21-the-ember-times-issue-136.html" responsive: true @@ -8,12 +8,12 @@ responsive: true Emberistas! 🐹 - Call for videos for the EmberConf keynote πŸ“’, Ember 3.16 released πŸš€, Minesweeper meets Ember Octane πŸ’£, Check out the journey to your first published addon πŸ“…, 2020 Ember Community Survey πŸ“, +learn how to forward element modifiers in < 10 mins ⏰, ... READMORE @@ -54,11 +54,11 @@ It’s that time of year again πŸ˜€, the 6th annual official 2020 Ember Communit Last year over 1200 people participated in the survey. All that participation and your participation over the years has resulted in enough input to make the process more efficient. This year the survey has been considerably slimmed down from previous years! So it should be easier than ever to make a contribution to our community by filling out the survey – let’s keep that participation going! πŸŽ‰ -This year we’d also like to emphasize that contributions from non-Ember users are valuable as well. So if you have co-workers or friends who you think might be interested in filling out the survey, please share it with them. +This year we’d also like to emphasize that contributions from non-Ember users are valuable as well. So if you have co-workers or friends who you think might be interested in filling out the survey, please share it with them. Submissions will be accepted until March 8th, but there’s no need to wait! Go ahead and fill out the [survey here now](https://tilde.wufoo.com/forms/2020-emberjs-community-survey/). πŸ”₯πŸ”₯πŸ”₯ -We look forward to your participation! If you have any immediate questions, feel free to email the survey team via survey@emberjs.com, or ping us in #dev-ember-learning in Discord chat. +We look forward to your participation! If you have any immediate questions, feel free to email the survey team via survey@emberjs.com, or ping us in #dev-ember-learning in Discord chat. But please, don't forget to help us spread the word by sharing the survey landing page on your social network feeds, at meetups and around your office and other communities. πŸ™Œ @@ -76,13 +76,21 @@ Give Tomsweeper a try and leave your feedback in the [#games channel](https://di --- -## [Section title in sentence case 🐹](#section-url) +## [Learn about element modifier forwarding with Ember Map πŸ—Ί](https://embermap.com/topics/what-s-new-in-ember/forwarding-element-modifiers-with-attributes-3-11) - - +Looking for another quick learning today and got **10 minutes** to spare? +Then our friends from [Ember Map](https://embermap.com/) have just the right content for you! - - +In their freely available ["What's New in Ember?"](https://embermap.com/topics/what-s-new-in-ember) video series, +they highlight some of the latest and greatest framework features that make Ember developer lives easier. + +In their latest episode ["Forwarding Element Modifiers with ...attributes"](https://embermap.com/topics/what-s-new-in-ember/forwarding-element-modifiers-with-attributes-3-11), you can learn about the use cases for the handy [splattributes feature](https://emberjs.github.io/rfcs/0311-angle-bracket-invocation.html#html-attributes) that made its way to Ember as part of [the RFC#311 anglebracket invocation feature](https://emberjs.github.io/rfcs/0311-angle-bracket-invocation.html). + +Specifically, the video demonstrates **powerful composition patterns** when using splattributes together with element modifiers, +a feature combination that is available since the implementation of [RFC#435: "Forwarding Element Modifiers with Splattributes"](https://emberjs.github.io/rfcs/0435-modifier-splattributes.html) and has been released with [Ember 3.11](https://blog.emberjs.com/2019/07/15/ember-3-11-released.html). + +So wanna impress yourself (or your co-workers, open-source and Ember friends) with some smart component patterns this week? +Then check out [the video](https://embermap.com/topics/what-s-new-in-ember/forwarding-element-modifiers-with-attributes-3-11) to learn when and how to leverage element modifier forwarding and make your Ember app shine! --- @@ -98,7 +106,7 @@ Give Tomsweeper a try and leave your feedback in the [#games channel](https://di ## [First published addon: ember-fullcalendar πŸ“…](https://dev.to/xiwcx/i-published-my-first-ember-addon-138c) -[i. welch canavan (@xiwcx)](https://github.com/xiwcx) shares the journey of building your very first Ember addon in [this dev.to post](https://dev.to/xiwcx/i-published-my-first-ember-addon-138c). The addon [@mariana-tek/ember-fullcalendar](https://github.com/Mariana-Tek/ember-fullcalendar) wraps [Fullcalendar (v4)](https://fullcalendar.io/) – a tool that provides a fully-featured scheduling calendar with minimal code – into an Ember component. +[i. welch canavan (@xiwcx)](https://github.com/xiwcx) shares the journey of building your very first Ember addon in [this dev.to post](https://dev.to/xiwcx/i-published-my-first-ember-addon-138c). The addon [@mariana-tek/ember-fullcalendar](https://github.com/Mariana-Tek/ember-fullcalendar) wraps [Fullcalendar (v4)](https://fullcalendar.io/) – a tool that provides a fully-featured scheduling calendar with minimal code – into an Ember component. The process started with checking [Ember Observer](https://emberobserver.com/) to see if there is already an addon that provides a similar service as well as checking the general addon structure that packages follow. Next, [fullcalendar-react](https://github.com/fullcalendar/fullcalendar-react) was inspected which provided the idea to avoid explicit bindings for each property or attribute and simply batch updates and pass them along to Fullcalendar. @@ -141,7 +149,7 @@ Try out [@mariana-tek/ember-fullcalendar](https://github.com/Mariana-Tek/ember-f ## [Contributors' Corner πŸ‘](https://guides.emberjs.com/release/contributing/repositories/) -

This week we'd like to thank our siblings for their contributions to Ember and related repositories! πŸ’–

+

This week we'd like to thank @chancancode, @MelSumner, @erikmero, @jenweber, @kellyselden, @Gaurav0, @GCheung55, @cloutierlp, @igorT, @efx, @patricklx, @rwjblue, @krisselden, @Turbo87 and @pzuraq for their contributions to Ember and related repositories! πŸ’–

--- @@ -169,5 +177,4 @@ That's another wrap! ✨ Be kind, -Chris Ng, Amy Lam, Isaac Lee, Jared Galanis, Yehuda Katz, the crowd and the Learning Team - +Chris Ng, Amy Lam, Isaac Lee, Jared Galanis, Yehuda Katz, Jessica Jordan, the crowd and the Learning Team From 673540368c82b1b727f0cde8ec9ac41c252f5f4f Mon Sep 17 00:00:00 2001 From: Jessica Jordan Date: Fri, 21 Feb 2020 15:15:37 +0100 Subject: [PATCH 2/5] Update source/2020-02-21-the-ember-times-issue-136.md --- source/2020-02-21-the-ember-times-issue-136.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/2020-02-21-the-ember-times-issue-136.md b/source/2020-02-21-the-ember-times-issue-136.md index 234a1535a..3a3c61bde 100644 --- a/source/2020-02-21-the-ember-times-issue-136.md +++ b/source/2020-02-21-the-ember-times-issue-136.md @@ -79,7 +79,7 @@ Give Tomsweeper a try and leave your feedback in the [#games channel](https://di ## [Learn about element modifier forwarding with Ember Map πŸ—Ί](https://embermap.com/topics/what-s-new-in-ember/forwarding-element-modifiers-with-attributes-3-11) Looking for another quick learning today and got **10 minutes** to spare? -Then our friends from [Ember Map](https://embermap.com/) have just the right content for you! +Then our friends from [Ember Map](https://embermap.com/) have the right content for you! In their freely available ["What's New in Ember?"](https://embermap.com/topics/what-s-new-in-ember) video series, they highlight some of the latest and greatest framework features that make Ember developer lives easier. From 45f39f2d4b3fc78fa8456fde90f829f5a21c0645 Mon Sep 17 00:00:00 2001 From: Jessica Jordan Date: Fri, 21 Feb 2020 15:54:28 +0100 Subject: [PATCH 3/5] Update source/2020-02-21-the-ember-times-issue-136.md Co-Authored-By: Isaac Lee <16869656+ijlee2@users.noreply.github.com> --- source/2020-02-21-the-ember-times-issue-136.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/2020-02-21-the-ember-times-issue-136.md b/source/2020-02-21-the-ember-times-issue-136.md index 3a3c61bde..2bbd6cd98 100644 --- a/source/2020-02-21-the-ember-times-issue-136.md +++ b/source/2020-02-21-the-ember-times-issue-136.md @@ -76,7 +76,7 @@ Give Tomsweeper a try and leave your feedback in the [#games channel](https://di --- -## [Learn about element modifier forwarding with Ember Map πŸ—Ί](https://embermap.com/topics/what-s-new-in-ember/forwarding-element-modifiers-with-attributes-3-11) +## [Learn about element modifier forwarding with EmberMap πŸ—Ί](https://embermap.com/topics/what-s-new-in-ember/forwarding-element-modifiers-with-attributes-3-11) Looking for another quick learning today and got **10 minutes** to spare? Then our friends from [Ember Map](https://embermap.com/) have the right content for you! From 37e8f17d9595a37140f173c72ef167144914148e Mon Sep 17 00:00:00 2001 From: Jessica Jordan Date: Fri, 21 Feb 2020 15:54:47 +0100 Subject: [PATCH 4/5] Update source/2020-02-21-the-ember-times-issue-136.md Co-Authored-By: Isaac Lee <16869656+ijlee2@users.noreply.github.com> --- source/2020-02-21-the-ember-times-issue-136.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/2020-02-21-the-ember-times-issue-136.md b/source/2020-02-21-the-ember-times-issue-136.md index 2bbd6cd98..314fafbe0 100644 --- a/source/2020-02-21-the-ember-times-issue-136.md +++ b/source/2020-02-21-the-ember-times-issue-136.md @@ -79,7 +79,7 @@ Give Tomsweeper a try and leave your feedback in the [#games channel](https://di ## [Learn about element modifier forwarding with EmberMap πŸ—Ί](https://embermap.com/topics/what-s-new-in-ember/forwarding-element-modifiers-with-attributes-3-11) Looking for another quick learning today and got **10 minutes** to spare? -Then our friends from [Ember Map](https://embermap.com/) have the right content for you! +Then our friends from [EmberMap](https://embermap.com/) have the right content for you! In their freely available ["What's New in Ember?"](https://embermap.com/topics/what-s-new-in-ember) video series, they highlight some of the latest and greatest framework features that make Ember developer lives easier. From 73d918f20d1e90f41926cdb993cc3c799e7b5fb0 Mon Sep 17 00:00:00 2001 From: Jessica Jordan Date: Fri, 21 Feb 2020 15:55:25 +0100 Subject: [PATCH 5/5] Update source/2020-02-21-the-ember-times-issue-136.md Co-Authored-By: Isaac Lee <16869656+ijlee2@users.noreply.github.com> --- source/2020-02-21-the-ember-times-issue-136.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/2020-02-21-the-ember-times-issue-136.md b/source/2020-02-21-the-ember-times-issue-136.md index 314fafbe0..b189a2bf2 100644 --- a/source/2020-02-21-the-ember-times-issue-136.md +++ b/source/2020-02-21-the-ember-times-issue-136.md @@ -84,7 +84,7 @@ Then our friends from [EmberMap](https://embermap.com/) have the right content f In their freely available ["What's New in Ember?"](https://embermap.com/topics/what-s-new-in-ember) video series, they highlight some of the latest and greatest framework features that make Ember developer lives easier. -In their latest episode ["Forwarding Element Modifiers with ...attributes"](https://embermap.com/topics/what-s-new-in-ember/forwarding-element-modifiers-with-attributes-3-11), you can learn about the use cases for the handy [splattributes feature](https://emberjs.github.io/rfcs/0311-angle-bracket-invocation.html#html-attributes) that made its way to Ember as part of [the RFC#311 anglebracket invocation feature](https://emberjs.github.io/rfcs/0311-angle-bracket-invocation.html). +In their latest episode ["Forwarding Element Modifiers with ...attributes"](https://embermap.com/topics/what-s-new-in-ember/forwarding-element-modifiers-with-attributes-3-11), you can learn about the use cases for the handy [splattributes feature](https://emberjs.github.io/rfcs/0311-angle-bracket-invocation.html#html-attributes). Splattributes made their way to Ember as part of [the RFC#311 angle bracket invocation feature](https://emberjs.github.io/rfcs/0311-angle-bracket-invocation.html). Specifically, the video demonstrates **powerful composition patterns** when using splattributes together with element modifiers, a feature combination that is available since the implementation of [RFC#435: "Forwarding Element Modifiers with Splattributes"](https://emberjs.github.io/rfcs/0435-modifier-splattributes.html) and has been released with [Ember 3.11](https://blog.emberjs.com/2019/07/15/ember-3-11-released.html).