Implemented strict linting standards and prettier formatting config. (#248)

* Implemented strict linting standards and prettier formatting config.

* More linter fixes and type updates.

* More linter updates and type fixes

* Remove noisy comments

* Linter and type updates

* Linter, formatting and type updates.

* Linter updates

* Type updates

* Type updates

* fixed all linter errors

* Fixed all linting, formatting and type issues.

* Resolve merge conflicts.
This commit is contained in:
Jas Singh
2024-09-14 16:20:05 -07:00
committed by GitHub
parent ff13e3dd3c
commit 2c72cc66d8
222 changed files with 13141 additions and 8433 deletions

View File

@@ -1,13 +1,15 @@
import { Option } from "widget/settings/shared/Option";
import { Header } from "widget/settings/shared/Header";
import { Option } from 'widget/settings/shared/Option';
import { Header } from 'widget/settings/shared/Header';
import options from "options";
import options from 'options';
import Scrollable from 'types/widgets/scrollable';
import { Attribute, Child } from 'lib/types/widget';
export const DashboardMenuSettings = () => {
export const DashboardMenuSettings = (): Scrollable<Child, Attribute> => {
return Widget.Scrollable({
class_name: "bar-theme-page paged-container",
vscroll: "always",
hscroll: "automatic",
class_name: 'bar-theme-page paged-container',
vscroll: 'always',
hscroll: 'automatic',
vexpand: true,
overlayScrolling: true,
child: Widget.Box({
@@ -15,53 +17,195 @@ export const DashboardMenuSettings = () => {
children: [
Header('Power Menu'),
Option({ opt: options.menus.dashboard.powermenu.avatar.image, title: 'Profile Image', type: 'img' }),
Option({ opt: options.menus.dashboard.powermenu.avatar.name, title: 'Profile Name', subtitle: 'Use \'system\' to automatically set system name', type: 'string' }),
Option({ opt: options.theme.bar.menus.menu.dashboard.profile.size, title: 'Profile Image Size', type: 'string' }),
Option({ opt: options.theme.bar.menus.menu.dashboard.profile.radius, title: 'Profile Image Radius', type: 'string' }),
Option({
opt: options.menus.dashboard.powermenu.avatar.name,
title: 'Profile Name',
subtitle: "Use 'system' to automatically set system name",
type: 'string',
}),
Option({
opt: options.theme.bar.menus.menu.dashboard.profile.size,
title: 'Profile Image Size',
type: 'string',
}),
Option({
opt: options.theme.bar.menus.menu.dashboard.profile.radius,
title: 'Profile Image Radius',
type: 'string',
}),
Option({ opt: options.menus.dashboard.powermenu.confirmation, title: 'Show Confirmation Dialogue', type: 'boolean' }),
Option({
opt: options.menus.dashboard.powermenu.confirmation,
title: 'Show Confirmation Dialogue',
type: 'boolean',
}),
Option({ opt: options.menus.dashboard.powermenu.shutdown, title: 'Shutdown Command', type: 'string' }),
Option({ opt: options.menus.dashboard.powermenu.reboot, title: 'Reboot Command', type: 'string' }),
Option({ opt: options.menus.dashboard.powermenu.logout, title: 'Logout Command', type: 'string' }),
Option({ opt: options.menus.dashboard.powermenu.sleep, title: 'Sleep Command', type: 'string' }),
Header('Resource Usage Metrics'),
Option({ opt: options.menus.dashboard.stats.enable_gpu, title: 'Track GPU', subtitle: 'NOTE: This is currently only available for NVidia GPUs and requires \'python-gpustat\'.', type: 'boolean' }),
Option({
opt: options.menus.dashboard.stats.enable_gpu,
title: 'Track GPU',
subtitle: "NOTE: This is currently only available for NVidia GPUs and requires 'python-gpustat'.",
type: 'boolean',
}),
Header('Shortcuts'),
Option({ opt: options.menus.dashboard.shortcuts.left.shortcut1.icon, title: 'Left - Shortcut 1 (Icon)', type: 'string' }),
Option({ opt: options.menus.dashboard.shortcuts.left.shortcut1.command, title: 'Left - Shortcut 1 (Command)', type: 'string' }),
Option({ opt: options.menus.dashboard.shortcuts.left.shortcut1.tooltip, title: 'Left - Shortcut 1 (Tooltip)', type: 'string' }),
Option({ opt: options.menus.dashboard.shortcuts.left.shortcut2.icon, title: 'Left - Shortcut 2 (Icon)', type: 'string' }),
Option({ opt: options.menus.dashboard.shortcuts.left.shortcut2.command, title: 'Left - Shortcut 2 (Command)', type: 'string' }),
Option({ opt: options.menus.dashboard.shortcuts.left.shortcut2.tooltip, title: 'Left - Shortcut 2 (Tooltip)', type: 'string' }),
Option({ opt: options.menus.dashboard.shortcuts.left.shortcut3.icon, title: 'Left - Shortcut 3 (Icon)', type: 'string' }),
Option({ opt: options.menus.dashboard.shortcuts.left.shortcut3.command, title: 'Left - Shortcut 3 (Command)', type: 'string' }),
Option({ opt: options.menus.dashboard.shortcuts.left.shortcut3.tooltip, title: 'Left - Shortcut 3 (Tooltip)', type: 'string' }),
Option({ opt: options.menus.dashboard.shortcuts.left.shortcut4.icon, title: 'Left - Shortcut 4 (Icon)', type: 'string' }),
Option({ opt: options.menus.dashboard.shortcuts.left.shortcut4.command, title: 'Left - Shortcut 4 (Command)', type: 'string' }),
Option({ opt: options.menus.dashboard.shortcuts.left.shortcut4.tooltip, title: 'Left - Shortcut 4 (Tooltip)', type: 'string' }),
Option({ opt: options.menus.dashboard.shortcuts.right.shortcut1.icon, title: 'Right - Shortcut 1 (Icon)', type: 'string' }),
Option({ opt: options.menus.dashboard.shortcuts.right.shortcut1.command, title: 'Right - Shortcut 1 (Command)', type: 'string' }),
Option({ opt: options.menus.dashboard.shortcuts.right.shortcut1.tooltip, title: 'Right - Shortcut 1 (Tooltip)', type: 'string' }),
Option({ opt: options.menus.dashboard.shortcuts.right.shortcut3.icon, title: 'Right - Shortcut 3 (Icon)', type: 'string' }),
Option({ opt: options.menus.dashboard.shortcuts.right.shortcut3.command, title: 'Right - Shortcut 3 (Command)', type: 'string' }),
Option({ opt: options.menus.dashboard.shortcuts.right.shortcut3.tooltip, title: 'Right - Shortcut 3 (Tooltip)', type: 'string' }),
Option({
opt: options.menus.dashboard.shortcuts.left.shortcut1.icon,
title: 'Left - Shortcut 1 (Icon)',
type: 'string',
}),
Option({
opt: options.menus.dashboard.shortcuts.left.shortcut1.command,
title: 'Left - Shortcut 1 (Command)',
type: 'string',
}),
Option({
opt: options.menus.dashboard.shortcuts.left.shortcut1.tooltip,
title: 'Left - Shortcut 1 (Tooltip)',
type: 'string',
}),
Option({
opt: options.menus.dashboard.shortcuts.left.shortcut2.icon,
title: 'Left - Shortcut 2 (Icon)',
type: 'string',
}),
Option({
opt: options.menus.dashboard.shortcuts.left.shortcut2.command,
title: 'Left - Shortcut 2 (Command)',
type: 'string',
}),
Option({
opt: options.menus.dashboard.shortcuts.left.shortcut2.tooltip,
title: 'Left - Shortcut 2 (Tooltip)',
type: 'string',
}),
Option({
opt: options.menus.dashboard.shortcuts.left.shortcut3.icon,
title: 'Left - Shortcut 3 (Icon)',
type: 'string',
}),
Option({
opt: options.menus.dashboard.shortcuts.left.shortcut3.command,
title: 'Left - Shortcut 3 (Command)',
type: 'string',
}),
Option({
opt: options.menus.dashboard.shortcuts.left.shortcut3.tooltip,
title: 'Left - Shortcut 3 (Tooltip)',
type: 'string',
}),
Option({
opt: options.menus.dashboard.shortcuts.left.shortcut4.icon,
title: 'Left - Shortcut 4 (Icon)',
type: 'string',
}),
Option({
opt: options.menus.dashboard.shortcuts.left.shortcut4.command,
title: 'Left - Shortcut 4 (Command)',
type: 'string',
}),
Option({
opt: options.menus.dashboard.shortcuts.left.shortcut4.tooltip,
title: 'Left - Shortcut 4 (Tooltip)',
type: 'string',
}),
Option({
opt: options.menus.dashboard.shortcuts.right.shortcut1.icon,
title: 'Right - Shortcut 1 (Icon)',
type: 'string',
}),
Option({
opt: options.menus.dashboard.shortcuts.right.shortcut1.command,
title: 'Right - Shortcut 1 (Command)',
type: 'string',
}),
Option({
opt: options.menus.dashboard.shortcuts.right.shortcut1.tooltip,
title: 'Right - Shortcut 1 (Tooltip)',
type: 'string',
}),
Option({
opt: options.menus.dashboard.shortcuts.right.shortcut3.icon,
title: 'Right - Shortcut 3 (Icon)',
type: 'string',
}),
Option({
opt: options.menus.dashboard.shortcuts.right.shortcut3.command,
title: 'Right - Shortcut 3 (Command)',
type: 'string',
}),
Option({
opt: options.menus.dashboard.shortcuts.right.shortcut3.tooltip,
title: 'Right - Shortcut 3 (Tooltip)',
type: 'string',
}),
Header('Directories'),
Option({ opt: options.menus.dashboard.directories.left.directory1.label, title: 'Left - Directory 1 (Label)', type: 'string' }),
Option({ opt: options.menus.dashboard.directories.left.directory1.command, title: 'Left - Directory 1 (Command)', type: 'string' }),
Option({ opt: options.menus.dashboard.directories.left.directory2.label, title: 'Left - Directory 2 (Label)', type: 'string' }),
Option({ opt: options.menus.dashboard.directories.left.directory2.command, title: 'Left - Directory 2 (Command)', type: 'string' }),
Option({ opt: options.menus.dashboard.directories.left.directory3.label, title: 'Left - Directory 3 (Label)', type: 'string' }),
Option({ opt: options.menus.dashboard.directories.left.directory3.command, title: 'Left - Directory 3 (Command)', type: 'string' }),
Option({ opt: options.menus.dashboard.directories.right.directory1.label, title: 'Right - Directory 1 (Label)', type: 'string' }),
Option({ opt: options.menus.dashboard.directories.right.directory1.command, title: 'Right - Directory 1 (Command)', type: 'string' }),
Option({ opt: options.menus.dashboard.directories.right.directory2.label, title: 'Right - Directory 2 (Label)', type: 'string' }),
Option({ opt: options.menus.dashboard.directories.right.directory2.command, title: 'Right - Directory 2 (Command)', type: 'string' }),
Option({ opt: options.menus.dashboard.directories.right.directory3.label, title: 'Right - Directory 3 (Label)', type: 'string' }),
Option({ opt: options.menus.dashboard.directories.right.directory3.command, title: 'Right - Directory 3 (Command)', type: 'string' }),
]
})
})
}
Option({
opt: options.menus.dashboard.directories.left.directory1.label,
title: 'Left - Directory 1 (Label)',
type: 'string',
}),
Option({
opt: options.menus.dashboard.directories.left.directory1.command,
title: 'Left - Directory 1 (Command)',
type: 'string',
}),
Option({
opt: options.menus.dashboard.directories.left.directory2.label,
title: 'Left - Directory 2 (Label)',
type: 'string',
}),
Option({
opt: options.menus.dashboard.directories.left.directory2.command,
title: 'Left - Directory 2 (Command)',
type: 'string',
}),
Option({
opt: options.menus.dashboard.directories.left.directory3.label,
title: 'Left - Directory 3 (Label)',
type: 'string',
}),
Option({
opt: options.menus.dashboard.directories.left.directory3.command,
title: 'Left - Directory 3 (Command)',
type: 'string',
}),
Option({
opt: options.menus.dashboard.directories.right.directory1.label,
title: 'Right - Directory 1 (Label)',
type: 'string',
}),
Option({
opt: options.menus.dashboard.directories.right.directory1.command,
title: 'Right - Directory 1 (Command)',
type: 'string',
}),
Option({
opt: options.menus.dashboard.directories.right.directory2.label,
title: 'Right - Directory 2 (Label)',
type: 'string',
}),
Option({
opt: options.menus.dashboard.directories.right.directory2.command,
title: 'Right - Directory 2 (Command)',
type: 'string',
}),
Option({
opt: options.menus.dashboard.directories.right.directory3.label,
title: 'Right - Directory 3 (Label)',
type: 'string',
}),
Option({
opt: options.menus.dashboard.directories.right.directory3.command,
title: 'Right - Directory 3 (Command)',
type: 'string',
}),
],
}),
});
};