mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:01:24 +00:00
32 lines
1.3 KiB
PHP
32 lines
1.3 KiB
PHP
@props([
|
|
'action' => null,
|
|
'placeholder' => 'Quick search...',
|
|
'category' => null,
|
|
])
|
|
|
|
@php
|
|
$baseUrl = $action ?? route('search');
|
|
if ($category !== null && (int) $category > 0) {
|
|
$baseUrl .= (str_contains($baseUrl, '?') ? '&' : '?') . 't=' . (int) $category;
|
|
}
|
|
@endphp
|
|
|
|
<div class="inline-search-widget flex items-center gap-2" data-base-url="{{ $baseUrl }}">
|
|
<div class="relative">
|
|
<div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
|
|
<i class="fas fa-search text-gray-400 dark:text-gray-500 text-sm"></i>
|
|
</div>
|
|
<input type="text"
|
|
data-role="inline-search-input"
|
|
placeholder="{{ $placeholder }}"
|
|
class="w-48 lg:w-56 pl-9 pr-3 py-1.5 text-sm border border-gray-300 dark:border-gray-600 rounded-lg focus:ring-2 focus:ring-primary-500 focus:border-primary-500 bg-white dark:bg-gray-700 text-gray-900 dark:text-gray-100 placeholder-gray-400 dark:placeholder-gray-500 transition"
|
|
autocomplete="off">
|
|
</div>
|
|
<button type="button"
|
|
data-role="inline-search-btn"
|
|
class="px-3 py-1.5 bg-primary-600 dark:bg-primary-700 text-white rounded-lg hover:bg-primary-700 dark:hover:bg-primary-800 transition text-sm">
|
|
<i class="fas fa-search"></i>
|
|
</button>
|
|
</div>
|
|
|