blob: 0a2f41752b3b5c7812e99aace62d61121f4f4d9b (
plain)
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
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at <http://mozilla.org/MPL/2.0/>. */
import { parse } from "../../utils/url";
/**
* Get the relative path of the url
* Does not include any query parameters or fragment parts
*
* @param string url
* @returns string path
*/
export function getRelativePath(url) {
const { pathname } = parse(url);
if (!pathname) {
return url;
}
const index = pathname.indexOf("/");
if (index !== -1) {
const path = pathname.slice(index + 1);
// If the path is empty this is likely the index file.
// e.g http://foo.com/
if (path == "") {
return "(index)";
}
return path;
}
return "";
}
/**
*
* @param {String} name: Name (e.g. computed in SourcesTreeItem renderItemName),
* which might include URI search.
* @returns {String} result of `decodedURI(name)`, or name if it `name` is malformed.
*/
export function safeDecodeItemName(name) {
try {
return decodeURI(name);
} catch (e) {
return name;
}
}
|