116 lines
3.2 KiB
PHP
116 lines
3.2 KiB
PHP
<?php
|
|
|
|
use App\Models\Portfolio;
|
|
use Livewire\Attributes\{Title, Rule};
|
|
use Livewire\Volt\Component;
|
|
|
|
new class extends Component {
|
|
|
|
// props
|
|
public ?Portfolio $portfolio;
|
|
public String $name = 'portfolio';
|
|
public String $scope = 'YTD';
|
|
public Array $options = [
|
|
['id' => '1M', 'name' => '1 month'],
|
|
['id' => '3M', 'name' => '3 months'],
|
|
['id' => 'YTD', 'name' => 'Year to date'],
|
|
['id' => '1Y', 'name' => '1 year'],
|
|
['id' => '3Y', 'name' => '3 years'],
|
|
['id' => 'ALL', 'name' => 'All time']
|
|
];
|
|
|
|
// data
|
|
public Array $myChart;
|
|
|
|
// methods
|
|
public function mount()
|
|
{
|
|
$this->myChart = [
|
|
'series' => [
|
|
[
|
|
'name' => __('Total Views'),
|
|
'data' => $this->generateDateSeries('2024-01-01', '2024-08-01')
|
|
],
|
|
[
|
|
'name' => __('Second Views'),
|
|
'data' => $this->generateDateSeries('2024-01-01', '2024-08-01')
|
|
],
|
|
],
|
|
|
|
];
|
|
|
|
// $this->marketGainLoss = rand(-200, 3999);
|
|
}
|
|
|
|
public function changeScope($scope)
|
|
{
|
|
$this->scope = $scope;
|
|
|
|
$this->dispatch('data-scope-updated', $scope);
|
|
}
|
|
|
|
public function getScopeName($scope)
|
|
{
|
|
return collect($this->options)->where('id', $scope)['name'];
|
|
}
|
|
|
|
private function generateDateSeries($startDate, $endDate)
|
|
{
|
|
$dateArray = [];
|
|
$currentDate = strtotime($startDate);
|
|
$endDate = strtotime($endDate);
|
|
|
|
while ($currentDate <= $endDate) {
|
|
// Generate a random integer
|
|
$randomInt = rand(1000, 3000);
|
|
|
|
// Format the current date to 'Y-m-d'
|
|
$formattedDate = date('Y-m-d', $currentDate);
|
|
|
|
// Append the date and random integer to the array
|
|
$dateArray[] = [$formattedDate, $randomInt];
|
|
|
|
// Move to the next day
|
|
$currentDate = strtotime("+1 day", $currentDate);
|
|
}
|
|
|
|
return $dateArray;
|
|
}
|
|
|
|
}; ?>
|
|
|
|
<x-card class="bg-slate-100 dark:bg-base-200 rounded-lg mb-6">
|
|
<div class="flex justify-between items-center mb-2">
|
|
|
|
<div class="flex items-center">
|
|
|
|
<h2 class="text-xl mr-4">{{ __('Performance') }}</h2>
|
|
<div id="chart-legend-{{ $name }}" class="flex space-between"></div>
|
|
|
|
</div>
|
|
|
|
<div class="flex items-center">
|
|
<x-button title="{{ __('Reset chart') }}" icon="o-arrow-path" class="btn-ghost btn-sm btn-circle mr-2" id="chart-reset-zoom-{{ $name }}" />
|
|
|
|
<x-dropdown title="{{ __('Choose time period') }}" label="{{ $scope }}" class="btn-ghost btn-sm">
|
|
|
|
@foreach($options as $option)
|
|
|
|
<x-menu-item
|
|
title="{{ $option['name'] }}"
|
|
x-on:click="$wire.changeScope('{{ $option['id'] }}')"
|
|
/>
|
|
|
|
@endforeach
|
|
|
|
</x-dropdown>
|
|
</div>
|
|
</div>
|
|
|
|
<div
|
|
class="h-[280px] mb-5"
|
|
>
|
|
<x-ib-apex-chart :series-data="$myChart" :name="$name" />
|
|
</div>
|
|
|
|
</x-card>
|