File tree 2 files changed +5
-33
lines changed
2 files changed +5
-33
lines changed Original file line number Diff line number Diff line change 2
2
# See the LICENCE file in the repository root for full licence text.
3
3
4
4
import { currentUrl } from ' utils/turbolinks'
5
- import { isHTML, isInternal } from ' utils/url'
5
+ import { isHTML } from ' utils/url'
6
6
7
7
# Anchor navigation with turbolinks. Works around [1].
8
8
# [1] https://github.com/turbolinks/turbolinks/issues/75
@@ -61,4 +61,7 @@ Turbolinks.Controller::replaceHistory = (url) ->
61
61
Turbolinks .Snapshot :: hasAnchor = -> true
62
62
63
63
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)
Original file line number Diff line number Diff line change @@ -10,33 +10,6 @@ import { TurbolinksLocation } from 'turbolinks';
10
10
import { generate } from './beatmapset-page-hash' ;
11
11
import { currentUrl } from './turbolinks' ;
12
12
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
-
40
13
interface OsuLinkOptions {
41
14
classNames ?: string [ ] ;
42
15
isRemote ?: boolean ;
@@ -70,10 +43,6 @@ export function isHTML(location: TurbolinksLocation): boolean {
70
43
return location . isHTML ( ) || startsWith ( location . getPath ( ) , '/home/changelog/' ) ;
71
44
}
72
45
73
- export function isInternal ( location : TurbolinksLocation ) : boolean {
74
- return internalUrlRegExp . test ( location . getPath ( ) ) ;
75
- }
76
-
77
46
// external link
78
47
export function openBeatmapEditor ( timestampWithRange : string ) : string {
79
48
return `osu://edit/${ timestampWithRange } ` ;
You can’t perform that action at this time.
0 commit comments