From 0cd22cf82b5b056842df834f641e346dac8e4267 Mon Sep 17 00:00:00 2001 From: Frankie B Date: Mon, 22 Jan 2024 01:18:12 +0000 Subject: Remove unused HLJS code and unnecessary components --- resources/views/components/codeblock.blade.php | 14 -------------- resources/views/components/lastfm.blade.php | 21 --------------------- resources/views/components/weather.blade.php | 22 ---------------------- 3 files changed, 57 deletions(-) delete mode 100644 resources/views/components/codeblock.blade.php delete mode 100644 resources/views/components/lastfm.blade.php delete mode 100644 resources/views/components/weather.blade.php (limited to 'resources/views/components') diff --git a/resources/views/components/codeblock.blade.php b/resources/views/components/codeblock.blade.php deleted file mode 100644 index ff7c2a5..0000000 --- a/resources/views/components/codeblock.blade.php +++ /dev/null @@ -1,14 +0,0 @@ -@php -$file_path = "code/".$file; -$file_name = basename($file_path); - -$hl = new \Highlight\Highlighter(); - -$highlighted = $hl->highlight($lang, Storage::disk('local')->get($file_path)); -$file_size = Storage::disk('local')->size($file_path); -@endphp -
-

{{ $file_name }} {{ $file_size}} bytes

-
- {!! $highlighted->value !!} -
diff --git a/resources/views/components/lastfm.blade.php b/resources/views/components/lastfm.blade.php deleted file mode 100644 index 83312e1..0000000 --- a/resources/views/components/lastfm.blade.php +++ /dev/null @@ -1,21 +0,0 @@ -@php - -$cfg = app('config')->get('services')['lastfm']; -$api_root = app('config')->get('app')['api_root']; - -$current_track = json_decode(file_get_contents($api_root.'/lastfm/current')); -$toptracks = json_decode(file_get_contents($api_root.'/lastfm/top')); -$count = 0; -@endphp - -

Last.fm (Profile)

- Last/Current Track: {{ $current_track->name }} • {{ $current_track->artist }} -

Top {{ $cfg['toptracks'] }} Tracks (Last 7 days)

-@foreach ($toptracks as $track) - @if ($count >= $cfg['toptracks']) - @break - @endif - {{ str_pad($count+1, 2, '0', STR_PAD_LEFT) }}] {{ $track->name }} • {{ $track->artist }} - ({{ $track->plays }} plays)
-@php $count++ @endphp -@endforeach diff --git a/resources/views/components/weather.blade.php b/resources/views/components/weather.blade.php deleted file mode 100644 index 29f925d..0000000 --- a/resources/views/components/weather.blade.php +++ /dev/null @@ -1,22 +0,0 @@ -@php -$api_root = app('config')->get('app')['api_root']; - -function degreesToCompassDirection($degrees) { - $cardinalDirections = [ - 'N', 'NNE', 'NE', 'ENE', 'E', 'ESE', 'SE', 'SSE', - 'S', 'SSW', 'SW', 'WSW', 'W', 'WNW', 'NW', 'NNW', 'N' - ]; - return $cardinalDirections[round($degrees*16/360)]; -} - -$data = json_decode(file_get_contents($api_root.'/weather')); -$updated = gmdate('H:i Y-m-d', $data->updated); -$data = $data->current; -@endphp - -

Local Weather (Last Update: {{ $updated }})

- Wind Speed:     {{ $data->wind->speed }} mph
- Wind Direction: {{ $data->wind->direction->degrees }}°, {{ $data->wind->direction->cardinal }}
- Temperature:    {{ $data->temperature }}°C
- Rain Rate:      {{ $data->rain_rate }} mm/hr
- Humidity:       {{ $data->humidity }}%
-- cgit v1.2.3-54-g00ecf