mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 02:36:53 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			80 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			80 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Filament\Admin\Resources\Nodes\Widgets;
 | 
						|
 | 
						|
use App\Models\Node;
 | 
						|
use Filament\Widgets\ChartWidget;
 | 
						|
 | 
						|
class NodeStorageChart extends ChartWidget
 | 
						|
{
 | 
						|
    protected ?string $pollingInterval = '360s';
 | 
						|
 | 
						|
    protected ?string $maxHeight = '200px';
 | 
						|
 | 
						|
    public Node $node;
 | 
						|
 | 
						|
    protected ?array $options = [
 | 
						|
        'scales' => [
 | 
						|
            'x' => [
 | 
						|
                'grid' => [
 | 
						|
                    'display' => false,
 | 
						|
                ],
 | 
						|
                'ticks' => [
 | 
						|
                    'display' => false,
 | 
						|
                ],
 | 
						|
            ],
 | 
						|
            'y' => [
 | 
						|
                'grid' => [
 | 
						|
                    'display' => false,
 | 
						|
                ],
 | 
						|
                'ticks' => [
 | 
						|
                    'display' => false,
 | 
						|
                ],
 | 
						|
            ],
 | 
						|
        ],
 | 
						|
    ];
 | 
						|
 | 
						|
    protected function getData(): array
 | 
						|
    {
 | 
						|
        $total = config('panel.use_binary_prefix')
 | 
						|
            ? ($this->node->statistics()['disk_total']) / 1024 / 1024 / 1024
 | 
						|
            : ($this->node->statistics()['disk_total']) / 1000 / 1000 / 1000;
 | 
						|
        $used = config('panel.use_binary_prefix')
 | 
						|
            ? ($this->node->statistics()['disk_used']) / 1024 / 1024 / 1024
 | 
						|
            : ($this->node->statistics()['disk_used']) / 1000 / 1000 / 1000;
 | 
						|
 | 
						|
        $unused = $total - $used;
 | 
						|
 | 
						|
        $used = round($used, 2);
 | 
						|
        $unused = round($unused, 2);
 | 
						|
 | 
						|
        return [
 | 
						|
            'datasets' => [
 | 
						|
                [
 | 
						|
                    'data' => [$used, $unused],
 | 
						|
                    'backgroundColor' => [
 | 
						|
                        'rgb(59, 130, 246)',
 | 
						|
                        'rgb(74, 222, 128)',
 | 
						|
                        'rgb(255, 205, 86)',
 | 
						|
                    ],
 | 
						|
                ],
 | 
						|
            ],
 | 
						|
            'labels' => [trans('admin/node.used'), trans('admin/node.unused')],
 | 
						|
            'locale' => user()->language ?? 'en',
 | 
						|
        ];
 | 
						|
    }
 | 
						|
 | 
						|
    protected function getType(): string
 | 
						|
    {
 | 
						|
        return 'pie';
 | 
						|
    }
 | 
						|
 | 
						|
    public function getHeading(): string
 | 
						|
    {
 | 
						|
        $used = convert_bytes_to_readable($this->node->statistics()['disk_used']);
 | 
						|
        $total = convert_bytes_to_readable($this->node->statistics()['disk_total']);
 | 
						|
 | 
						|
        return trans('admin/node.disk_chart', ['used' => $used, 'total' => $total]);
 | 
						|
    }
 | 
						|
}
 |