134 lines
3.3 KiB
Go
134 lines
3.3 KiB
Go
package ui
|
|
|
|
import (
|
|
"fmt"
|
|
"image"
|
|
"supersonic/backend"
|
|
"supersonic/player"
|
|
"supersonic/ui/widgets"
|
|
|
|
"fyne.io/fyne/v2"
|
|
"fyne.io/fyne/v2/container"
|
|
"fyne.io/fyne/v2/layout"
|
|
"fyne.io/fyne/v2/theme"
|
|
"fyne.io/fyne/v2/widget"
|
|
"github.com/dweymouth/go-subsonic"
|
|
)
|
|
|
|
type bottomPanelLayout struct {
|
|
left, middle, right fyne.CanvasObject
|
|
middleWidth float32
|
|
hbox fyne.Layout
|
|
}
|
|
|
|
func newBottomPanelLayout(midWidth float32, left, middle, right fyne.CanvasObject) *bottomPanelLayout {
|
|
return &bottomPanelLayout{
|
|
left: left,
|
|
middle: middle,
|
|
right: right,
|
|
middleWidth: midWidth,
|
|
hbox: layout.NewHBoxLayout(),
|
|
}
|
|
}
|
|
|
|
func (b *bottomPanelLayout) MinSize(objects []fyne.CanvasObject) fyne.Size {
|
|
hboxSize := b.hbox.MinSize(objects)
|
|
return fyne.Size{
|
|
Height: hboxSize.Height,
|
|
Width: hboxSize.Width + fyne.Max(0, b.middleWidth-b.middle.MinSize().Width),
|
|
}
|
|
}
|
|
|
|
func (b *bottomPanelLayout) Layout(_ []fyne.CanvasObject, size fyne.Size) {
|
|
midW := fyne.Max(b.middleWidth, b.middle.MinSize().Width)
|
|
lrW := (size.Width - midW - theme.Padding()*4) / 2
|
|
b.left.Resize(fyne.NewSize(lrW, size.Height))
|
|
b.left.Move(fyne.NewPos(theme.Padding(), 0))
|
|
b.middle.Resize(fyne.NewSize(midW, size.Height))
|
|
b.middle.Move(fyne.NewPos(lrW+theme.Padding()*2, 0))
|
|
if b.right != nil {
|
|
b.right.Resize(fyne.NewSize(lrW, size.Height))
|
|
b.right.Move(fyne.NewPos(lrW+midW+theme.Padding()*3, 0))
|
|
}
|
|
}
|
|
|
|
type BottomPanel struct {
|
|
widget.BaseWidget
|
|
|
|
ImageManager *backend.ImageManager
|
|
|
|
playbackManager *backend.PlaybackManager
|
|
|
|
NowPlaying *widgets.NowPlayingCard
|
|
Controls *widgets.PlayerControls
|
|
AuxControls *widgets.AuxControls
|
|
container *fyne.Container
|
|
}
|
|
|
|
var _ fyne.Widget = (*BottomPanel)(nil)
|
|
|
|
func NewBottomPanel(p *player.Player) *BottomPanel {
|
|
bp := &BottomPanel{}
|
|
bp.ExtendBaseWidget(bp)
|
|
p.OnPaused(func() {
|
|
bp.Controls.SetPlaying(false)
|
|
})
|
|
p.OnPlaying(func() {
|
|
bp.Controls.SetPlaying(true)
|
|
})
|
|
p.OnStopped(func() {
|
|
bp.Controls.SetPlaying(false)
|
|
})
|
|
|
|
bp.NowPlaying = widgets.NewNowPlayingCard()
|
|
bp.Controls = widgets.NewPlayerControls()
|
|
bp.Controls.OnPlayPause(func() {
|
|
p.PlayPause()
|
|
})
|
|
bp.Controls.OnSeekNext(func() {
|
|
p.SeekNext()
|
|
})
|
|
bp.Controls.OnSeekPrevious(func() {
|
|
p.SeekBackOrPrevious()
|
|
})
|
|
bp.Controls.OnSeek(func(f float64) {
|
|
p.Seek(fmt.Sprintf("%d", int(f*100)), player.SeekAbsolutePercent)
|
|
})
|
|
|
|
bp.AuxControls = widgets.NewAuxControls()
|
|
bp.AuxControls.VolumeControl.OnVolumeChanged = func(v int) {
|
|
_ = p.SetVolume(v)
|
|
}
|
|
|
|
bp.container = container.New(newBottomPanelLayout(500, bp.NowPlaying, bp.Controls, bp.AuxControls),
|
|
bp.NowPlaying, bp.Controls, bp.AuxControls)
|
|
return bp
|
|
}
|
|
|
|
func (bp *BottomPanel) SetPlaybackManager(pm *backend.PlaybackManager) {
|
|
bp.playbackManager = pm
|
|
pm.OnSongChange(bp.onSongChange)
|
|
pm.OnPlayTimeUpdate(func(cur, total float64) {
|
|
if !pm.IsSeeking() {
|
|
bp.Controls.UpdatePlayTime(cur, total)
|
|
}
|
|
})
|
|
}
|
|
|
|
func (bp *BottomPanel) onSongChange(song *subsonic.Child) {
|
|
if song == nil {
|
|
bp.NowPlaying.Update("", "", "", nil)
|
|
} else {
|
|
var im image.Image
|
|
if bp.ImageManager != nil {
|
|
im, _ = bp.ImageManager.GetAlbumThumbnail(song.AlbumID)
|
|
}
|
|
bp.NowPlaying.Update(song.Title, song.Artist, song.Album, im)
|
|
}
|
|
}
|
|
|
|
func (bp *BottomPanel) CreateRenderer() fyne.WidgetRenderer {
|
|
bp.ExtendBaseWidget(bp)
|
|
return widget.NewSimpleRenderer(bp.container)
|
|
}
|