-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7999 from elastic/jasper/backport/6773/4.x
[backport] PR #6773 to 4.x - IE length warning
- Loading branch information
Showing
8 changed files
with
160 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<div class="app-container error-url-overflow-app"> | ||
<h3> | ||
<i aria-hidden="true" class="fa fa-warning text-danger"></i> Woah there! | ||
</h3> | ||
<p> | ||
That's a big URL you have there. I have some unfortunate news: Your browser doesn't play nice with Kibana's bacon-double-cheese-burger-with-extra-fries sized URL. To keep you from running into problems Kibana limits URLs in your browser to {{controller.limit}} characters for your safety. | ||
</p> | ||
|
||
<h3>Ok, how do I fix this?</h3> | ||
<p>This usually only happens with big, complex dashboards, so you have some options:</p> | ||
<ol> | ||
<li>Remove some stuff from your dashboard. This will reduce the length of the URL and keep IE in a good place.</li> | ||
<li>Don't use IE. Every other supported browser we know of doesn't have this limit.</li> | ||
</ol> | ||
<br> | ||
<br> | ||
<p><small>Foot note: Party size candy bars are tiny. Party size sub sandwiches are massive. Really makes you think.</small></p> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import uiRoutes from 'ui/routes'; | ||
import uiModules from 'ui/modules'; | ||
import KbnUrlProvider from 'ui/url'; | ||
|
||
import './error_url_overflow.less'; | ||
import template from './error_url_overflow.html'; | ||
import { UrlOverflowServiceProvider } from './url_overflow_service'; | ||
|
||
export * from './url_overflow_service'; | ||
|
||
uiRoutes | ||
.when('/error/url-overflow', { | ||
template, | ||
controllerAs: 'controller', | ||
controller: class OverflowController { | ||
constructor(Private, config, $scope) { | ||
const kbnUrl = Private(KbnUrlProvider); | ||
const urlOverflow = Private(UrlOverflowServiceProvider); | ||
|
||
if (!urlOverflow.get()) { | ||
kbnUrl.redirectPath('/'); | ||
return; | ||
} | ||
|
||
this.url = urlOverflow.get(); | ||
this.limit = urlOverflow.failLength(); | ||
$scope.$on('$destroy', () => urlOverflow.clear()); | ||
} | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
.error-url-overflow-app { | ||
padding: 25px; | ||
|
||
pre { | ||
white-space: pre-wrap; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
const URL_MAX_IE = 2000; | ||
const URL_MAX_OTHERS = 25000; | ||
const IE_REGEX = /(;MSIE |Edge\/\d)/; | ||
|
||
export class UrlOverflowService { | ||
constructor() { | ||
const key = 'error/url-overflow/url'; | ||
const store = window.sessionStorage || { | ||
getItem() {}, | ||
setItem() {}, | ||
removeItem() {}, | ||
}; | ||
|
||
// FIXME: Couldn't find a way to test for browser compatibility without | ||
// complex redirect and cookie based "feature-detection" page, so going | ||
// with user-agent detection for now. | ||
this._ieLike = IE_REGEX.test(window.navigator.userAgent); | ||
|
||
this._val = store.getItem(key); | ||
this._sync = () => { | ||
if (this._val == null) store.removeItem(key); | ||
else store.setItem(key, this._val); | ||
}; | ||
} | ||
|
||
failLength() { | ||
return this._ieLike ? URL_MAX_IE : URL_MAX_OTHERS; | ||
} | ||
|
||
set(v) { | ||
this._val = v; | ||
this._sync(); | ||
} | ||
|
||
get() { | ||
return this._val; | ||
} | ||
|
||
check(absUrl) { | ||
if (!this.get()) { | ||
const urlLength = absUrl.length; | ||
const remaining = this.failLength() - urlLength; | ||
|
||
if (remaining > 0) { | ||
return remaining; | ||
} | ||
|
||
this.set(absUrl); | ||
} | ||
|
||
throw new Error(` | ||
The URL has gotten too big and kibana can no longer | ||
continue. Please refresh to return to your previous state. | ||
`); | ||
} | ||
|
||
clear() { | ||
this._val = undefined; | ||
this._sync(); | ||
} | ||
} | ||
|
||
export function UrlOverflowServiceProvider() { | ||
return new UrlOverflowService(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters