No description
Find a file
CarlNation ca24cf5917
Merge pull request #2101 from Safelite/feature/CSR-2364
CSR-2364 recycling in cart missing amount
2024-11-12 06:21:58 -05:00
public Update UI with spacing & layout tweaks and new fonts. 2024-11-06 12:17:22 -05:00
src Merge pull request #2101 from Safelite/feature/CSR-2364 2024-11-12 06:21:58 -05:00
.gitattributes Add gitattributes file 2022-10-28 16:42:47 -04:00
.gitignore Added .gitignore for node_modules and other files 2021-09-21 08:34:57 -04:00
.prettierrc Rectify prettier change 2024-08-27 16:18:22 -04:00
azure-pipelines.yml Commenting out prettier for now 2024-08-27 16:02:59 -04:00
babel.config.js Added back jest support for unit testing, added mock unit test 2021-10-27 11:24:32 -04:00
jest.config.js CSR-2303 tests for itac and nocomp 2024-11-05 08:09:33 -05:00
package-lock.json Run npm upgrade and typescript 4.8.4 to 4.9.5 2024-08-23 16:58:20 -04:00
package.json Run npm upgrade and typescript 4.8.4 to 4.9.5 2024-08-23 16:58:20 -04:00
README.md Updated readme 2022-01-26 15:19:43 -05:00
vue.config.js Point local to dev for safelite hop 2024-10-28 12:21:08 -04:00
vue.release.config.js CSR-1392 2023-10-09 10:18:03 -04:00

Fix My Glass Vue Project


This Repository is for Fix My Glass front end Vue and documentation associated with it.

Routing

We are using Vue Router 4.x for our front end routing. We are using a runtime dynamic routing solution. Some more information about dynamic routing can be found on the official Vue Router documentation.

Next() - Is a function that is native to Vue Router in which we call in order to send the user where want them to go based on some logic we have. You can read more about Navigation Guards and the Next() function on the Vue Router documentation.

GetRouteInfoFromPageName(PageName) - This method typically takes the query string value of fmgPage and passes it into a call to our Content Service. The service will pull information on the page; matching page name passed to page name in our Cms. If we have a match, we will compile the route information and send it to our router to process. If we do not have a that page in our Cms, the user will be served back a 404 page while retaining the structure.

GoToFunnelStartOn404(next) - When a user tries to go to a page that doesn't exist in the CMS, they will be put back to the 'Start' of the funnel which is whatever page is marked as the homepage on Sitefinity.