mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 19:01:37 +00:00
76 lines
3.6 KiB
PHP
76 lines
3.6 KiB
PHP
<div>
|
|
<x-primary-button x-data="" x-on:click.prevent="$dispatch('open-modal', 'create-queue')">
|
|
{{ __('Create Queue') }}
|
|
</x-primary-button>
|
|
|
|
<x-modal name="create-queue">
|
|
<form wire:submit.prevent="create" class="p-6">
|
|
<h2 class="text-lg font-medium text-gray-900 dark:text-gray-100">
|
|
{{ __('Create Queue') }}
|
|
</h2>
|
|
|
|
<div class="mt-6">
|
|
<x-input-label for="command" :value="__('Command')" />
|
|
<x-text-input wire:model.defer="command" id="command" name="command" type="text" class="mt-1 w-full" />
|
|
@error('command')
|
|
<x-input-error class="mt-2" :messages="$message" />
|
|
@enderror
|
|
</div>
|
|
|
|
<div class="mt-6">
|
|
<x-input-label for="user" :value="__('User')" />
|
|
<x-select-input wire:model.defer="user" id="user" name="user" class="mt-1 w-full">
|
|
<option value="" selected disabled>{{ __("Select") }}</option>
|
|
<option value="root" @if($user === 'root') selected @endif>root</option>
|
|
<option value="{{ $site->server->ssh_user }}" @if($user === $site->server->ssh_user) selected @endif>{{ $site->server->ssh_user }}</option>
|
|
</x-select-input>
|
|
@error('user')
|
|
<x-input-error class="mt-2" :messages="$message" />
|
|
@enderror
|
|
</div>
|
|
|
|
<div class="mt-6">
|
|
<x-input-label for="auto_start" :value="__('Auto Start')" />
|
|
<x-select-input wire:model="auto_start" id="auto_start" name="auto_start" class="mt-1 w-full">
|
|
<option value="" selected disabled>{{ __("Select") }}</option>
|
|
<option value="1" @if($auto_start) selected @endif>{{ __("Yes") }}</option>
|
|
<option value="0" @if(!$auto_start) selected @endif>{{ __("No") }}</option>
|
|
</x-select-input>
|
|
@error('auto_start')
|
|
<x-input-error class="mt-2" :messages="$message" />
|
|
@enderror
|
|
</div>
|
|
|
|
<div class="mt-6">
|
|
<x-input-label for="auto_restart" :value="__('Auto Restart')" />
|
|
<x-select-input wire:model="auto_restart" id="auto_restart" name="auto_restart" class="mt-1 w-full">
|
|
<option value="" selected disabled>{{ __("Select") }}</option>
|
|
<option value="1" @if($auto_restart) selected @endif>{{ __("Yes") }}</option>
|
|
<option value="0" @if(!$auto_restart) selected @endif>{{ __("No") }}</option>
|
|
</x-select-input>
|
|
@error('auto_restart')
|
|
<x-input-error class="mt-2" :messages="$message" />
|
|
@enderror
|
|
</div>
|
|
|
|
<div class="mt-6">
|
|
<x-input-label for="numprocs" :value="__('Numprocs')" />
|
|
<x-text-input wire:model.defer="numprocs" id="numprocs" name="numprocs" type="text" class="mt-1 w-full" placeholder="2" />
|
|
@error('numprocs')
|
|
<x-input-error class="mt-2" :messages="$message" />
|
|
@enderror
|
|
</div>
|
|
|
|
<div class="mt-6 flex justify-end">
|
|
<x-secondary-button type="button" x-on:click="$dispatch('close')">
|
|
{{ __('Cancel') }}
|
|
</x-secondary-button>
|
|
|
|
<x-primary-button class="ml-3" @created.window="$dispatch('close')">
|
|
{{ __('Create') }}
|
|
</x-primary-button>
|
|
</div>
|
|
</form>
|
|
</x-modal>
|
|
</div>
|