devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
71 lines (70 loc) • 2.02 kB
JavaScript
/**
* DevExtreme (esm/file_management/utils.js)
* Version: 24.2.6
* Build date: Mon Mar 17 2025
*
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
import {
each
} from "../core/utils/iterator";
export const PATH_SEPARATOR = "/";
export const getFileExtension = path => {
const index = path.lastIndexOf(".");
return -1 !== index ? path.substr(index) : ""
};
export const getName = path => {
const index = path.lastIndexOf("/");
return -1 !== index ? path.substr(index + 1) : path
};
export const getParentPath = path => {
const index = path.lastIndexOf("/");
return -1 !== index ? path.substr(0, index) : ""
};
export const getPathParts = (path, includeFullPath) => {
if (!path || "/" === path) {
return []
}
const result = [];
let pathPart = "";
for (let i = 0; i < path.length; i++) {
let char = path.charAt(i);
if ("/" === char) {
const nextChar = path.charAt(i + 1);
if ("/" !== nextChar) {
if (pathPart) {
result.push(pathPart);
pathPart = ""
}
char = nextChar
}
i++
}
pathPart += char
}
if (pathPart) {
result.push(pathPart)
}
if (includeFullPath) {
for (let i = 0; i < result.length; i++) {
result[i] = pathCombine(0 === i ? "" : result[i - 1], getEscapedFileName(result[i]))
}
}
return result
};
export const getEscapedFileName = function(fileName) {
return fileName.replace(/\/{1,1}/g, "//")
};
export const pathCombine = function() {
let result = "";
each(arguments, ((_, arg) => {
if (arg) {
if (result) {
result += "/"
}
result += arg
}
}));
return result
};