Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Allow automatic rewriting of links to be disabled in ngLocation #5487

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 20 additions & 2 deletions src/ng/location.js
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,8 @@ function locationGetterSetter(property, preprocess) {
*/
function $LocationProvider(){
var hashPrefix = '',
html5Mode = false;
html5Mode = false,
rewriteLinks = true;

/**
* @ngdoc property
Expand Down Expand Up @@ -575,6 +576,23 @@ function $LocationProvider(){
}
};

/**
* @ngdoc property
* @name ng.$locationProvider#rewriteLinks
* @methodOf ng.$locationProvider
* @description
* @param {boolean=} allowRewrite Automatically rewrite links on the page.
* @returns {*} current value if used as getter or itself (chaining) if used as setter
*/
this.rewriteLinks = function(allowRewrite) {
if (isDefined(allowRewrite)) {
rewriteLinks = allowRewrite;
return this;
} else {
return rewriteLinks;
}
};

/**
* @ngdoc event
* @name $location#$locationChangeStart
Expand Down Expand Up @@ -624,7 +642,7 @@ function $LocationProvider(){
// TODO(vojta): rewrite link when opening in new tab/window (in legacy browser)
// currently we open nice url link and redirect then

if (event.ctrlKey || event.metaKey || event.which == 2) return;
if (!rewriteLinks || event.ctrlKey || event.metaKey || event.which == 2) return;

var elm = jqLite(event.target);

Expand Down
19 changes: 18 additions & 1 deletion test/ng/locationSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -779,9 +779,12 @@ describe('$location', function() {

var root, link, originalBrowser, lastEventPreventDefault;

function configureService(linkHref, html5Mode, supportHist, attrs, content) {
function configureService(linkHref, html5Mode, supportHist, attrs, content, allowRewrite) {
module(function($provide, $locationProvider) {
attrs = attrs ? ' ' + attrs + ' ' : '';
if (!isDefined(allowRewrite)) {
allowRewrite = true
}

// fake the base behavior
if (linkHref[0] == '/') {
Expand All @@ -795,6 +798,7 @@ describe('$location', function() {
$provide.value('$sniffer', {history: supportHist});
$locationProvider.html5Mode(html5Mode);
$locationProvider.hashPrefix('!');
$locationProvider.rewriteLinks(allowRewrite);
return function($rootElement, $document) {
$rootElement.append(link);
root = $rootElement[0];
Expand Down Expand Up @@ -957,6 +961,19 @@ describe('$location', function() {
});


it ('should not rewrite links when rewriting links is disabled', function() {
configureService('/a?b=c', true, true, '', 'some content', false);
inject(
initBrowser(),
initLocation(),
function($browser) {
browserTrigger(link, 'click');
expectNoRewrite($browser);
}
);
});


it('should rewrite full url links to same domain and base path', function() {
configureService('http://host.com/base/new', true);
inject(
Expand Down