P.S. I am using html5Mode to remove '#' in routing in below scenario Removing the fragment identifier from AngularJS urls (# symbol)
Consider I have two main pages.One is photos where thumbnails are provided and whose url is /someSlug/photos
. Other is the url of a single photo '/someSlug/photos/somePhotoId' which shows a bigger view of a particular photo.
My problem is to show the /someSlug/photos/somePhotoId
page in modal when user clicked on somePhoto thumbnail in photos page (and yes the url should change to /someSlug/photos/somePhotoId
). But if user access it directly like this /someSlug/photos/somePhotoId
single photo page should come. I am able to include the single photo template into my modal but facing issues with routing. Not able to change the url while opening the modal to /someSlug/photos/somePhotoId because it opens up new page.
I have two modules for this:
A-> Used and handles routes of photos page
B-> used and handle routes of single photo
Since B single photo template is used in 'A', I have put dependency of 'B' into 'A'. So whenever I try to change the url to /someSlug/photos/somePhotoId while in modal. B's routing overrides the job and open the page. Best example for this is facebook photos. Tried to create a fiddle but its not giving me routing access. Just have a look on facebook photos URL and you will come to know about it. If you needs more inputs, please let me know :)
I am very new to angularJS (Basics->Advanced Stage). Any help would be highly appreciated.
This can be achieved by creating two states with same URL.
For the state that opens the modal , create a hidden parameter , using
params
option. This is used to find weather the user came from clicking or directly. If user comes by clicking ,then we set a value for the hidden parameter viaui-sref
and show the modal (using UI Bootstrap's $modal). In case user comes directly to the URL, then we redirect them to the other state with same URL but different template and controller. All this is done inside theonEnter
function which is called when this state gets opened. As this state has notemplate
ortemplateUrl
, therefore it doesn't change the view.The state configuration
The template for the parent state , from where we click to show the modal
The parent controller , contains dummy data which is used for
ngRepeat
The template for the Modal State
The controller for modal state , contains method to dismiss the modal & dummy data
You can check a working example at Plunker , check http://run.plnkr.co/plunks/wRqwPr/#/ to see the changes in URL