mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
efb35b537a
* add prettier and have it format all js code except website: : * trying running prettier check in CI * fix runs on in CI * change CI job name * fix prettier erros and fix CI
39 lines
1.1 KiB
JavaScript
39 lines
1.1 KiB
JavaScript
export const platformIconClass = (platform = "") => {
|
|
if (!platform) return false;
|
|
|
|
const lowerPlatform = platform.toLowerCase();
|
|
|
|
switch (lowerPlatform) {
|
|
case "macos":
|
|
return "icon-apple-dark-20x20@2x.png";
|
|
case "mac os x":
|
|
return "icon-apple-dark-20x20@2x.png";
|
|
case "mac osx":
|
|
return "icon-apple-dark-20x20@2x.png";
|
|
case "mac os":
|
|
return "icon-apple-dark-20x20@2x.png";
|
|
case "darwin":
|
|
return "icon-apple-dark-20x20@2x.png";
|
|
case "apple":
|
|
return "icon-apple-dark-20x20@2x.png";
|
|
case "centos":
|
|
return "icon-centos-dark-20x20@2x.png";
|
|
case "centos linux":
|
|
return "icon-centos-dark-20x20@2x.png";
|
|
case "ubuntu":
|
|
return "icon-ubuntu-dark-20x20@2x.png";
|
|
case "ubuntu linux":
|
|
return "icon-ubuntu-dark-20x20@2x.png";
|
|
case "linux":
|
|
return "icon-linux-dark-20x20@2x.png";
|
|
case "windows":
|
|
return "icon-windows-dark-20x20@2x.png";
|
|
case "ms windows":
|
|
return "icon-windows-dark-20x20@2x.png";
|
|
default:
|
|
return false;
|
|
}
|
|
};
|
|
|
|
export default platformIconClass;
|