File tree 5 files changed +19
-2
lines changed
5 files changed +19
-2
lines changed Original file line number Diff line number Diff line change @@ -37,14 +37,15 @@ module.exports = function(eleventyConfig) {
37
37
*/
38
38
39
39
let pathPrefix = "/docs/head/" ;
40
+ const isNumberVersion = process . env . BRANCH && / ^ v \d + \. x $ / u. test ( process . env . BRANCH ) ;
40
41
41
42
if ( process . env . CONTEXT === "deploy-preview" ) {
42
43
pathPrefix = "/" ;
43
44
} else if ( process . env . BRANCH === "latest" ) {
44
45
pathPrefix = "/docs/latest/" ;
45
46
} else if ( process . env . BRANCH === "next" ) {
46
47
pathPrefix = "/docs/next/" ;
47
- } else if ( process . env . BRANCH && / ^ v \d + \. x $ / u . test ( process . env . BRANCH ) ) {
48
+ } else if ( isNumberVersion ) {
48
49
pathPrefix = `/docs/${ process . env . BRANCH } /` ; // `/docs/v8.x/`, `/docs/v9.x/`, `/docs/v10.x/` ...
49
50
}
50
51
@@ -60,6 +61,7 @@ module.exports = function(eleventyConfig) {
60
61
eleventyConfig . addGlobalData ( "HEAD" , process . env . BRANCH === "main" ) ;
61
62
eleventyConfig . addGlobalData ( "NOINDEX" , process . env . BRANCH !== "latest" ) ;
62
63
eleventyConfig . addGlobalData ( "PATH_PREFIX" , pathPrefix ) ;
64
+ eleventyConfig . addGlobalData ( "is_number_version" , isNumberVersion ) ;
63
65
eleventyConfig . addDataExtension ( "yml" , contents => yaml . load ( contents ) ) ;
64
66
65
67
//------------------------------------------------------------------------------
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ module.exports = async function() {
31
31
const { items } = data ;
32
32
33
33
let foundItemForThisBranch = false ;
34
+ let isPrereleasePhase = false ;
34
35
35
36
for ( const item of items ) {
36
37
const isItemForThisBranch = item . branch === thisBranch ;
@@ -54,6 +55,10 @@ module.exports = async function() {
54
55
if ( isItemForThisBranch ) {
55
56
item . selected = true ;
56
57
}
58
+
59
+ if ( item . branch === "next" ) {
60
+ isPrereleasePhase = true ;
61
+ }
57
62
}
58
63
59
64
// Add an empty item if this is not a production branch
@@ -67,5 +72,7 @@ module.exports = async function() {
67
72
} ) ;
68
73
}
69
74
75
+ data . isPrereleasePhase = isPrereleasePhase ;
76
+
70
77
return data ;
71
78
} ;
Original file line number Diff line number Diff line change @@ -121,4 +121,5 @@ footer:
121
121
122
122
edit_link :
123
123
start_with : https://github.com/eslint/eslint/edit/main/docs/
124
+ start_with_latest : https://github.com/eslint/eslint/edit/latest/docs/
124
125
text : Edit this page
Original file line number Diff line number Diff line change @@ -119,4 +119,5 @@ footer:
119
119
120
120
edit_link :
121
121
start_with : https://github.com/eslint/eslint/edit/main/docs/
122
+ start_with_latest : https://github.com/eslint/eslint/edit/latest/docs/
122
123
text : 编辑此页
Original file line number Diff line number Diff line change @@ -102,7 +102,13 @@ <h1>{{ title }}</h1>
102
102
{% if edit_link %}
103
103
{{ edit_link }}
104
104
{% else %}
105
- {{ site.edit_link.start_with }}{{ page.inputPath }}
105
+ {% if eslintVersions.isPrereleasePhase and GIT_BRANCH === 'latest' %}
106
+ {{ site.edit_link.start_with_latest }}{{ page.inputPath }}
107
+ {% elseif is_number_version %}
108
+ https://github.com/eslint/eslint/edit/{{ GIT_BRANCH }}/docs/{{ page.inputPath }}
109
+ {% else %}
110
+ {{ site.edit_link.start_with }}{{ page.inputPath }}
111
+ {% endif %}
106
112
{% endif %}
107
113
"
108
114
class ="c-btn c-btn--secondary "> {{ site.edit_link.text }}</ a >
You can’t perform that action at this time.
0 commit comments