* feat: make music lable more dynamically configurable * fix: move seekbar above controls * fix: add menu for media * fix: add menu for media * fix: add menu for media * Organize media player code * fix: revert back controls position * Delete pnpm-lock.yaml * Update options.ts * Update widget/settings/pages/config/bar/index.ts * fix: merge changes broken --------- Co-authored-by: Jas Singh <jaskiratpal.singh@outlook.com>
84 lines
3.2 KiB
TypeScript
84 lines
3.2 KiB
TypeScript
import Gdk from 'gi://Gdk?version=3.0';
|
|
const mpris = await Service.import('mpris');
|
|
import { openMenu } from '../utils.js';
|
|
import options from 'options';
|
|
import { getCurrentPlayer } from 'lib/shared/media.js';
|
|
import { BarBoxChild } from 'lib/types/bar.js';
|
|
import Button from 'types/widgets/button.js';
|
|
import { Attribute, Child } from 'lib/types/widget.js';
|
|
import { runAsyncCommand } from 'customModules/utils.js';
|
|
import { generateMediaLabel } from './helpers.js';
|
|
|
|
const { truncation, truncation_size, show_label, show_active_only, rightClick, middleClick, format } =
|
|
options.bar.media;
|
|
|
|
const Media = (): BarBoxChild => {
|
|
const activePlayer = Variable(mpris.players[0]);
|
|
const isVis = Variable(!show_active_only.value);
|
|
|
|
show_active_only.connect('changed', () => {
|
|
isVis.value = !show_active_only.value || mpris.players.length > 0;
|
|
});
|
|
|
|
mpris.connect('changed', () => {
|
|
const curPlayer = getCurrentPlayer(activePlayer.value);
|
|
activePlayer.value = curPlayer;
|
|
isVis.value = !show_active_only.value || mpris.players.length > 0;
|
|
});
|
|
|
|
const songIcon = Variable('');
|
|
|
|
const mediaLabel = Utils.watch('Media', [mpris, truncation, truncation_size, show_label, format], () => {
|
|
return generateMediaLabel(truncation_size, show_label, format, songIcon, activePlayer);
|
|
});
|
|
|
|
return {
|
|
component: Widget.Box({
|
|
visible: false,
|
|
child: Widget.Box({
|
|
className: Utils.merge(
|
|
[options.theme.bar.buttons.style.bind('value'), show_label.bind('value')],
|
|
(style) => {
|
|
const styleMap = {
|
|
default: 'style1',
|
|
split: 'style2',
|
|
wave: 'style3',
|
|
wave2: 'style3',
|
|
};
|
|
return `media-container ${styleMap[style]}`;
|
|
},
|
|
),
|
|
child: Widget.Box({
|
|
children: [
|
|
Widget.Label({
|
|
class_name: 'bar-button-icon media txt-icon bar',
|
|
label: songIcon.bind('value').as((v) => v || ''),
|
|
}),
|
|
Widget.Label({
|
|
class_name: 'bar-button-label media',
|
|
label: mediaLabel,
|
|
}),
|
|
],
|
|
}),
|
|
}),
|
|
}),
|
|
isVis,
|
|
boxClass: 'media',
|
|
props: {
|
|
on_scroll_up: () => activePlayer.value?.next(),
|
|
on_scroll_down: () => activePlayer.value?.previous(),
|
|
on_primary_click: (clicked: Button<Child, Attribute>, event: Gdk.Event): void => {
|
|
openMenu(clicked, event, 'mediamenu');
|
|
},
|
|
onSecondaryClick: (clicked: Button<Child, Attribute>, event: Gdk.Event): void => {
|
|
runAsyncCommand(rightClick.value, { clicked, event });
|
|
},
|
|
onMiddleClick: (clicked: Button<Child, Attribute>, event: Gdk.Event): void => {
|
|
runAsyncCommand(middleClick.value, { clicked, event });
|
|
},
|
|
},
|
|
};
|
|
};
|
|
|
|
export { Media };
|