PWA URL Rewriting - intershop/intershop-pwa GitHub Wiki
see also:
New Routes
- http://jxdhoffmann.dhcp.j.ad.intershop.net:5400/Computer/Notebooks-und-PCs/Notebooks/Microsoft-Surface-Laptop-sku201807204-01-catComputers.1835.151
- http://jxdhoffmann.dhcp.j.ad.intershop.net:5400/Cameras/Action-Cameras-catCameras-Camcorders.832
German:
TODO
- filter out URL params for matching http://jxdhoffmann.dhcp.j.ad.intershop.net:5400/sku201807204-01;lang=de_DE
- Apply new scheme to PWA? With compatibility layer? - Yes!
- include variation in URL, i.e. http://jxdhoffmann.dhcp.j.ad.intershop.net:5400/Computer/Notebooks-und-PCs/Notebooks/Microsoft-Surface-Laptop-Platin-256GB-sku201807204-01-catComputers.1835.151
- umlauts have to be transformed! - URL encode - Angular takes care of everything. No action needed.
- LineItemView.product must be ProductView
- /page/page.aboutus -> /Ueber-Uns (CMS pages) - use Page Title
- Documentation
Open Questions
- truncate category ID and always use defaultCategory on product? - No
- reset current URL to canonical if they don't match? i.e. http://jxdhoffmann.dhcp.j.ad.intershop.net:5400/sku201807204-01 - No
- encode required path information to some URL friendly format? - No i.e. http://jxdhoffmann.dhcp.j.ad.intershop.net:5400/something/irrelevant-sku4784530-catComputers.191.194 -> http://jxdhoffmann.dhcp.j.ad.intershop.net:5400/something/irrelevant/product/c2t1NDc4NDUzMC1jYXRDb21wdXRlcnMuMTkxLjE5NA==
- also transform other routes?
- /home -> /Startseite (any route) -> static routes can be handled manually, so No
- :warning: /page/page.aboutus -> /Ueber-Uns (CMS pages)
- currently there's no easy way to retrieve localized display names for CMS pages without fetching them directly.
- list call
/cms/pages
returns
{ "elements": [ { "type": "Link", "uri": "inSPIRED-inTRONICS-Site/-/cms/pages/systempage.account.giftCertificates.pagelet2-Page", "title": "systempage.account.giftCertificates.pagelet2-Page" }, { "type": "Link", "uri": "inSPIRED-inTRONICS-Site/-/cms/pages/systempage.account.giftCertificatesBalance.pagelet2-Page", "title": "systempage.account.giftCertificatesBalance.pagelet2-Page" }, ...
- will later be returning localized titles. INTERNAL IS-29331(https://jira.intershop.de/browse/IS-29331)