FOR All App Versions❗ #6
monacodelisa
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Anchor elements use
[routerLink]
not click events<a>
to use[routerLink]
for navigating between componentspost-details
open in a new tab
appeared in the context menuDomSanitizer
has to remain as a custom pipe in thepipes
folderDomSanitizer
directly within the componentDomSanitizer
must be kept as apipe
separately/post
is to remain in the route path forpost-details
app.routes.ts
we should usepath: 'post/:postSlug'
instead of onlypath: ':postSlug''
post/
does not interfere with sharing individual posts by URL- but it does interfere with routing, more specifically the redirect for non existing paths was not working when only
':postSlug'
was usedpost-details
no matter that another component was assignedLayout component is to be removed, no lazy loading of child components
in order to avoid issues and the following error in console:
routing has been adjusted
post-details
pagepostSlug
on the components side so the mini header is not showing onseries
setting
og:image
and other tags dynamically remains to be configuredog:
tags present in theindex.html
are the existing ones that mattermeta
tags added updated or removed dynamically during runtime do not take effectmeta
tags in theindex.html
so that they contain the required databuild script
Not using Truncate Pipe for shortening title names
slicePipe
directly in theposts
andseries
components since this is the only two places where this functionality is currently neededBeta Was this translation helpful? Give feedback.
All reactions