pagraphcontrol/actions/icons.js
Tomasz Kontusz e710a65c7b Look for gtk settings.ini in all the expected places
This should help with loading system-level default theme.
Based on https://developer.gnome.org/gtk3/stable/GtkSettings.html, "Description".
2020-07-21 03:17:43 +03:00

54 lines
982 B
JavaScript

const { createActions: createActionCreators } = require('redux-actions');
const freedesktopIcons = require('freedesktop-icons');
const { iconThemeNames } = require('../utils/theme');
const fallbacks = new Map(Object.entries({
'audio-card-pci': 'audio-card',
'audio-card-usb': 'audio-card',
starred: 'starred-symbolic',
}));
const cache = new Map();
const getIconWithFallback = async name => {
if (cache.has(name)) {
return cache.get(name);
}
let result = await freedesktopIcons({
name,
type: 'scalable',
}, iconThemeNames);
if (!result) {
result = await freedesktopIcons({
name,
size: 128,
}, iconThemeNames);
}
if (!result && fallbacks.has(name)) {
return getIconWithFallback(fallbacks.get(name));
}
if (!result) {
console.warn('icon missing', name);
}
cache.set(name, result);
return result;
};
module.exports = createActionCreators({
ICONS: {
GET_ICON_PATH: [
icon => getIconWithFallback(icon),
icon => icon,
],
},
});