Skip to content

Commit 7e1fd8b

Browse files
authored
Merge pull request #11054 from nanaya/all-internal
Update handling method for old web links
2 parents b792d8e + dcb373f commit 7e1fd8b

File tree

2 files changed

+5
-33
lines changed

2 files changed

+5
-33
lines changed

resources/js/turbolinks-overrides.coffee

+5-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# See the LICENCE file in the repository root for full licence text.
33

44
import { currentUrl } from 'utils/turbolinks'
5-
import { isHTML, isInternal } from 'utils/url'
5+
import { isHTML } from 'utils/url'
66

77
# Anchor navigation with turbolinks. Works around [1].
88
# [1] https://github.com/turbolinks/turbolinks/issues/75
@@ -61,4 +61,7 @@ Turbolinks.Controller::replaceHistory = (url) ->
6161
Turbolinks.Snapshot::hasAnchor = -> true
6262

6363
Turbolinks.Controller::locationIsVisitable = (location) ->
64-
location.isPrefixedBy(@view.getRootLocation()) && isInternal(location) && isHTML(location)
64+
location.isPrefixedBy(@view.getRootLocation()) &&
65+
# old website pages
66+
!location.getPath().startsWith('/p/') &&
67+
isHTML(location)

resources/js/utils/url.ts

-31
Original file line numberDiff line numberDiff line change
@@ -10,33 +10,6 @@ import { TurbolinksLocation } from 'turbolinks';
1010
import { generate } from './beatmapset-page-hash';
1111
import { currentUrl } from './turbolinks';
1212

13-
const internalUrls = [
14-
'admin',
15-
'api/v2',
16-
'beatmaps',
17-
'beatmapsets',
18-
'client-verifications',
19-
'comments',
20-
'community',
21-
'help',
22-
'home',
23-
'groups',
24-
'legal',
25-
'multiplayer',
26-
'news',
27-
'notifications',
28-
'oauth',
29-
'rankings',
30-
'scores',
31-
'seasons',
32-
'session',
33-
'store',
34-
'users',
35-
'wiki',
36-
].join('|');
37-
38-
const internalUrlRegExp = RegExp(`^/(?:${internalUrls})(?:$|/|#)`);
39-
4013
interface OsuLinkOptions {
4114
classNames?: string[];
4215
isRemote?: boolean;
@@ -70,10 +43,6 @@ export function isHTML(location: TurbolinksLocation): boolean {
7043
return location.isHTML() || startsWith(location.getPath(), '/home/changelog/');
7144
}
7245

73-
export function isInternal(location: TurbolinksLocation): boolean {
74-
return internalUrlRegExp.test(location.getPath());
75-
}
76-
7746
// external link
7847
export function openBeatmapEditor(timestampWithRange: string): string {
7948
return `osu://edit/${timestampWithRange}`;

0 commit comments

Comments
 (0)