{"id":1872,"date":"2023-12-12T05:00:00","date_gmt":"2023-12-12T13:00:00","guid":{"rendered":"https:\/\/www.angulartraining.com\/daily-newsletter\/?p=1872"},"modified":"2023-12-11T11:36:27","modified_gmt":"2023-12-11T19:36:27","slug":"code-challenge-2-solution","status":"publish","type":"post","link":"https:\/\/www.angulartraining.com\/daily-newsletter\/code-challenge-2-solution\/","title":{"rendered":"Code challenge #2 Solution"},"content":{"rendered":"\n<p>In yesterday&#8217;s <a href=\"https:\/\/www.angulartraining.com\/daily-newsletter\/code-challenge-2-di-or-not-di\/\" target=\"_blank\" rel=\"noopener\" title=\"\">code challenge<\/a>, our application wasn&#8217;t displaying any data. There were two reasons for that problem:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><code>HttpClient<\/code> was not provided in the application<\/li>\n\n\n\n<li>The <a href=\"https:\/\/www.angulartraining.com\/daily-newsletter\/change-detection-for-angular-components\/\" target=\"_blank\" rel=\"noopener\" title=\"\">change detection strategy<\/a> <code>OnPush<\/code> wasn&#8217;t compatible with the data flow of the application<\/li>\n<\/ol>\n\n\n\n<p>I&#8217;m including links to previous newsletter entries for deeper dives on the different topics involved in that solution. And there are quite a few subtleties to overcome.<\/p>\n\n\n\n<p>Let&#8217;s tackle the first issue, which was providing the HTTP client. We can use one of the several <a href=\"https:\/\/www.angulartraining.com\/daily-newsletter\/standalone-application-and-router-config\/\" target=\"_blank\" rel=\"noopener\" title=\"\">utility functions for standalone app config<\/a>, in our case, <code><a href=\"https:\/\/angular.dev\/api\/common\/http\/provideHttpClient\" target=\"_blank\" rel=\"noopener\" title=\"\">provideHttpClient<\/a><\/code>:<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"804\" height=\"100\" src=\"https:\/\/www.angulartraining.com\/daily-newsletter\/wp-content\/uploads\/2023\/12\/image-10.png\" alt=\"\" class=\"wp-image-1873\" srcset=\"https:\/\/www.angulartraining.com\/daily-newsletter\/wp-content\/uploads\/2023\/12\/image-10.png 804w, https:\/\/www.angulartraining.com\/daily-newsletter\/wp-content\/uploads\/2023\/12\/image-10-300x37.png 300w, https:\/\/www.angulartraining.com\/daily-newsletter\/wp-content\/uploads\/2023\/12\/image-10-768x96.png 768w\" sizes=\"auto, (max-width: 804px) 100vw, 804px\" \/><\/figure>\n<\/div>\n\n\n<p><\/p>\n\n\n\n<p>The second problem can be solved in two different ways:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Remove change detection <code>onPush<\/code> to use the <code>default<\/code> one instead<\/li>\n\n\n\n<li>Use the <a href=\"https:\/\/www.angulartraining.com\/daily-newsletter\/async-pipe-signals-and-change-detection\/\" target=\"_blank\" rel=\"noopener\" title=\"\"><code>async<\/code> pipe or Signals to trigger change detection<\/a> in that <code>OnPush<\/code> component<\/li>\n<\/ol>\n\n\n\n<p>Because it&#8217;s always <a href=\"https:\/\/www.angulartraining.com\/daily-newsletter\/how-to-avoid-memory-leaks-with-rxjs-observables\/\" target=\"_blank\" rel=\"noopener\" title=\"\">better to use the <code>async<\/code> pipe<\/a>, I&#8217;m going with that option in our template:<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"688\" height=\"191\" src=\"https:\/\/www.angulartraining.com\/daily-newsletter\/wp-content\/uploads\/2023\/12\/image-11.png\" alt=\"\" class=\"wp-image-1874\" srcset=\"https:\/\/www.angulartraining.com\/daily-newsletter\/wp-content\/uploads\/2023\/12\/image-11.png 688w, https:\/\/www.angulartraining.com\/daily-newsletter\/wp-content\/uploads\/2023\/12\/image-11-300x83.png 300w\" sizes=\"auto, (max-width: 688px) 100vw, 688px\" \/><\/figure>\n<\/div>\n\n\n<p><\/p>\n\n\n\n<p>In our component class, I stored the Observable from our service instead of storing the data. No more constructor needed:<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"650\" height=\"196\" src=\"https:\/\/www.angulartraining.com\/daily-newsletter\/wp-content\/uploads\/2023\/12\/image-12.png\" alt=\"\" class=\"wp-image-1875\" srcset=\"https:\/\/www.angulartraining.com\/daily-newsletter\/wp-content\/uploads\/2023\/12\/image-12.png 650w, https:\/\/www.angulartraining.com\/daily-newsletter\/wp-content\/uploads\/2023\/12\/image-12-300x90.png 300w\" sizes=\"auto, (max-width: 650px) 100vw, 650px\" \/><\/figure>\n<\/div>\n\n\n<p><\/p>\n\n\n\n<p>You can see that <a href=\"https:\/\/stackblitz.com\/edit\/at-code-challenge-2-solution?description=An%20angular-cli%20project%20based%20on%20@angular\/animations,%20@angular\/common,%20@angular\/compiler,%20@angular\/core,%20@angular\/forms,%20@angular\/platform-browser,%20@angular\/platform-browser-dynamic,%20@angular\/router,%20core-js,%20rxjs,%20tslib%20and%20zone.js&amp;file=src%2Fmain.ts,src%2Fdata.service.ts&amp;title=Angular%20Starter\" target=\"_blank\" rel=\"noopener\" title=\"\">solution in action on Stackblitz here<\/a>. We fixed our code and added some performance improvements as well by ensuring we can&#8217;t get into memory leaks and optimizing change detection for that component.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In yesterday&#8217;s code challenge, our application wasn&#8217;t displaying any data. There were two reasons for that problem: I&#8217;m including links to previous newsletter entries for deeper dives on the different topics involved in that solution. And there are quite a few subtleties to overcome. Let&#8217;s tackle the first issue, which was providing the HTTP client. [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4,40],"tags":[],"class_list":["post-1872","post","type-post","status-publish","format-standard","hentry","category-angular","category-code-challenge"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/www.angulartraining.com\/daily-newsletter\/wp-json\/wp\/v2\/posts\/1872","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.angulartraining.com\/daily-newsletter\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.angulartraining.com\/daily-newsletter\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.angulartraining.com\/daily-newsletter\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.angulartraining.com\/daily-newsletter\/wp-json\/wp\/v2\/comments?post=1872"}],"version-history":[{"count":2,"href":"https:\/\/www.angulartraining.com\/daily-newsletter\/wp-json\/wp\/v2\/posts\/1872\/revisions"}],"predecessor-version":[{"id":1877,"href":"https:\/\/www.angulartraining.com\/daily-newsletter\/wp-json\/wp\/v2\/posts\/1872\/revisions\/1877"}],"wp:attachment":[{"href":"https:\/\/www.angulartraining.com\/daily-newsletter\/wp-json\/wp\/v2\/media?parent=1872"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.angulartraining.com\/daily-newsletter\/wp-json\/wp\/v2\/categories?post=1872"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.angulartraining.com\/daily-newsletter\/wp-json\/wp\/v2\/tags?post=1872"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}