-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdoc.js
171 lines (144 loc) Β· 4.81 KB
/
doc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
//kudos to: https://github.com/dgraph-io/dgraph-docs
function debounce(func, wait, immediate) {
var timeout;
return function () {
var context = this,
args = arguments;
var later = function () {
timeout = null;
if (!immediate) func.apply(context, args);
};
var callNow = immediate && !timeout;
clearTimeout(timeout);
timeout = setTimeout(later, wait);
if (callNow) func.apply(context, args);
};
}
function createCookie(name, val, days) {
var expires = "";
if (days) {
var date = new Date();
date.setTime(date.getTime() + days * 24 * 60 * 60 * 1000);
expires = "; expires=" + date.toUTCString();
}
document.cookie = name + "=" + val + expires + "; path=/";
}
function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(";");
for (var i = 0; i < ca.length; i++) {
var c = ca[i];
while (c.charAt(0) == " ") c = c.substring(1, c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length, c.length);
}
return null;
}
function eraseCookie(name) {
createCookie(name, "", -1);
}
/**
* getCurrentVersion gets the current doc version from the URL path and returns it
*
* @params pathname {String} - current path in a format of '/current/path'.
* @return {String} - e.g. 'master', 'v7.7.1', ''
* empty string denotes the latest version
*/
function getCurrentVersion(pathname) {
let candidate;
if (location.pathname.startsWith("/docs")) {
candidate = pathname.split("/")[2];
} else {
candidate = pathname.split("/")[1];
}
if (candidate === "master") {
return candidate;
}
if (/v\d+\.\d+/.test(candidate)) {
return candidate;
}
if (/v\d+\.\d+\.\d+/.test(candidate)) {
return candidate;
}
return "";
}
// getPathBeforeVersionName gets the current URL path before the version prefix
function getPathBeforeVersionName(location, versionName) {
// if (location.pathname.startsWith("/docs")) {
// return "/docs/";
// }
return "/";
}
// getPathAfterVersionName gets the current URL path after the version prefix
function getPathAfterVersionName(location, versionName) {
let path;
// if (location.pathname.startsWith("/docs")) {
// if (versionName === "") {
// path = location.pathname
// .split("/")
// .slice(2)
// .join("/");
// } else {
// path = location.pathname
// .split("/")
// .slice(3)
// .join("/");
// }
// return path + location.hash;
// }
if (versionName === "") {
path = location.pathname
.split("/")
.slice(1)
.join("/");
} else {
path = location.pathname
.split("/")
.slice(2)
.join("/");
}
return path + location.hash;
}
(function () {
// version selector
var currentVersion = getCurrentVersion(location.pathname);
const versionSelectors = document.getElementsByClassName("version-selector");
if (versionSelectors.length) {
versionSelectors[0].addEventListener("change", function (e) {
// targetVersion: '', 'master', 'v0.7.7', 'v0.7.6', etc.
var targetVersion = e.target.value;
if (currentVersion !== targetVersion) {
var basePath = getPathBeforeVersionName(location, currentVersion);
// Getting everything after targetVersion and concatenating it with the hash part.
var currentPath = getPathAfterVersionName(location, currentVersion);
var targetPath;
if (targetVersion === "") {
targetPath = basePath + currentPath;
} else {
targetPath = basePath + targetVersion + "/" + currentPath;
}
location.assign(targetPath);
}
});
var versionSelector = versionSelectors[0],
options = versionSelector.options;
for (var i = 0; i < options.length; i++) {
if (options[i].value.indexOf("latest") != -1) {
options[i].value = options[i].value.replace(/\s\(latest\)/, "");
}
}
for (var i = 0; i < options.length; i++) {
if (options[i].value === currentVersion) {
options[i].selected = true;
break;
}
}
(" ");
}
// Add target = _blank to all external links.
var links = document.links;
for (var i = 0, linksLength = links.length; i < linksLength; i++) {
if (links[i].hostname != window.location.hostname) {
links[i].target = "_blank";
}
}
})();