2021-02-10 03:24:42 +00:00
|
|
|
import { basename } from 'path';
|
|
|
|
import { TextDocument, workspace, WorkspaceConfiguration } from 'vscode';
|
|
|
|
|
|
|
|
import { KNOWN_EXTENSIONS, KNOWN_LANGUAGES } from './constants';
|
|
|
|
|
|
|
|
type WorkspaceExtensionConfigurationuration = WorkspaceConfiguration & {
|
|
|
|
enabled: boolean;
|
2021-02-10 15:54:44 +00:00
|
|
|
detailsIdling: string;
|
|
|
|
detailsEditing: string;
|
|
|
|
detailsDebugging: string;
|
|
|
|
lowerDetailsIdling: string;
|
|
|
|
lowerDetailsEditing: string;
|
|
|
|
lowerDetailsDebugging: string;
|
|
|
|
lowerDetailsNoWorkspaceFound: string;
|
|
|
|
largeImageIdling: string;
|
|
|
|
largeImage: string;
|
|
|
|
smallImage: string;
|
|
|
|
suppressNotifications: boolean;
|
|
|
|
workspaceExcludePatterns: string[];
|
2021-02-10 17:32:13 +00:00
|
|
|
swapBigAndSmallImage: boolean;
|
2021-02-10 03:24:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export function getConfig() {
|
|
|
|
return workspace.getConfiguration('discord') as WorkspaceExtensionConfigurationuration;
|
|
|
|
}
|
|
|
|
|
|
|
|
export const toLower = (str: string) => str.toLocaleLowerCase();
|
|
|
|
|
|
|
|
export const toUpper = (str: string) => str.toLocaleUpperCase();
|
|
|
|
|
|
|
|
export const toTitle = (str: string) => toLower(str).replace(/^\w/, (c) => toUpper(c));
|
|
|
|
|
|
|
|
export function resolveFileIcon(document: TextDocument) {
|
|
|
|
const filename = basename(document.fileName);
|
|
|
|
const findKnownExtension = Object.keys(KNOWN_EXTENSIONS).find((key) => {
|
|
|
|
if (filename.endsWith(key)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const match = /^\/(.*)\/([mgiy]+)$/.exec(key);
|
|
|
|
if (!match) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const regex = new RegExp(match[1], match[2]);
|
|
|
|
return regex.test(filename);
|
|
|
|
});
|
|
|
|
const findKnownLanguage = KNOWN_LANGUAGES.find((key) => key.language === document.languageId);
|
|
|
|
const fileIcon = findKnownExtension
|
|
|
|
? KNOWN_EXTENSIONS[findKnownExtension]
|
|
|
|
: findKnownLanguage
|
|
|
|
? findKnownLanguage.image
|
|
|
|
: null;
|
|
|
|
|
|
|
|
return typeof fileIcon === 'string' ? fileIcon : fileIcon?.image ?? 'text';
|
|
|
|
}
|