This gist aims to describe the way I usually code front-end when there are pages that require specific functionality to run.
JS modules keep code organized and neat, they group significant classes together. Also, a important factor I consider when to apply this pattern is how extensive is the website, that is, doesn't make a lot of sense breaking down code into several files if there are only a few pages with no forecast of expansion.
All classes are wrapped in a anonymous function closure, that is to enforce that functions and variables created in that module/class remain inside the scope and don't pollute the global scope.
I'd like to highlight here 3 files that I use in http://bgr.herokuapp.com
- main.js which is initialized for every page. It enables the login popover, and also hold some utility
- serp_view.js is only initialized on the search results page. Activate results filtering
- game_view.js is only initialized on the game view page. Enable hide/show reviews in the page