2022-06-27 01:39:01 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Filament\Widgets;
|
|
|
|
|
|
|
|
|
|
use App\Models\Torrent;
|
|
|
|
|
use Carbon\Carbon;
|
|
|
|
|
use Filament\Widgets\LineChartWidget;
|
|
|
|
|
use Flowframe\Trend\Trend;
|
|
|
|
|
use Flowframe\Trend\TrendValue;
|
|
|
|
|
|
|
|
|
|
class TorrentTrend extends LineChartWidget
|
|
|
|
|
{
|
|
|
|
|
protected static ?int $sort = 4;
|
|
|
|
|
|
2022-06-27 13:22:16 +08:00
|
|
|
protected static ?string $pollingInterval = null;
|
|
|
|
|
|
2024-12-25 23:09:07 +08:00
|
|
|
public function getHeading(): ?string
|
2022-06-27 01:39:01 +08:00
|
|
|
{
|
|
|
|
|
return __('dashboard.torrent_trend.page_title');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function getData(): array
|
|
|
|
|
{
|
|
|
|
|
$data = Trend::model(Torrent::class)
|
|
|
|
|
->dateColumn('added')
|
|
|
|
|
->between(
|
|
|
|
|
start: now()->subDays(30),
|
|
|
|
|
end: now(),
|
|
|
|
|
)
|
|
|
|
|
->perDay()
|
|
|
|
|
->count();
|
|
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
'datasets' => [
|
|
|
|
|
[
|
2022-07-04 14:41:27 +08:00
|
|
|
'label' => __('label.torrent.label'),
|
2022-06-27 01:39:01 +08:00
|
|
|
'data' => $data->map(fn (TrendValue $value) => $value->aggregate),
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
'labels' => $data->map(fn (TrendValue $value) => Carbon::parse($value->date)->format('m-d')),
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
}
|