coolify/resources/views/livewire/project/database/import.blade.php

61 lines
3.2 KiB
PHP
Raw Normal View History

2024-01-06 06:24:57 +01:00
<div>
2024-01-10 15:42:54 +01:00
<h2>Import Backup</h2>
2024-03-20 12:54:06 +01:00
<div class="mt-2 mb-4 rounded alert">
2024-01-10 15:42:54 +01:00
<svg xmlns="http://www.w3.org/2000/svg" class="w-6 h-6 stroke-current shrink-0" fill="none" viewBox="0 0 24 24">
2024-01-06 06:24:57 +01:00
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z" />
</svg>
<span>This is a destructive action, existing data will be replaced!</span>
</div>
2024-01-10 15:42:54 +01:00
@if (str(data_get($resource, 'status'))->startsWith('running'))
@if (!$validated)
<div>{{ $validationMsg }}</div>
@else
<form disabled wire:submit.prevent="runImport" x-data="{ isFinished: false, isUploading: false, progress: 0 }">
@if ($resource->type() === 'standalone-postgresql')
<x-forms.input class="mb-2" label="Custom Import Command"
wire:model='postgresqlRestoreCommand'></x-forms.input>
@elseif ($resource->type() === 'standalone-mysql')
<x-forms.input class="mb-2" label="Custom Import Command"
wire:model='mysqlRestoreCommand'></x-forms.input>
@elseif ($resource->type() === 'standalone-mariadb')
<x-forms.input class="mb-2" label="Custom Import Command"
wire:model='mariadbRestoreCommand'></x-forms.input>
@endif
2024-03-20 12:54:06 +01:00
<div x-on:livewire-upload-start="isUploading = true; isFinished = false"
2024-01-10 15:42:54 +01:00
x-on:livewire-upload-finish="isUploading = false; isFinished = true"
x-on:livewire-upload-error="isUploading = false"
x-on:livewire-upload-progress="progress = $event.detail.progress">
<label class="block mb-2 text-sm font-medium text-gray-900 dark:text-white" for="file_input">Upload
file</label>
<input wire:model="file"
class="block w-full text-sm rounded cursor-pointer text-whiteborder bg-coolgray-100 border-coolgray-400 focus:outline-none"
aria-describedby="file_input_help" id="file_input" type="file">
2024-01-11 11:55:17 +01:00
<p class="mt-1 text-sm text-neutral-500" id="file_input_help">Max file size: 256MB
2024-01-10 15:42:54 +01:00
</p>
@error('file')
<span class="error">{{ $message }}</span>
@enderror
<div x-show="isUploading">
<progress max="100" x-bind:value="progress"
class="progress progress-warning"></progress>
</div>
2024-01-06 06:24:57 +01:00
</div>
2024-01-10 15:42:54 +01:00
<x-forms.button type="submit" class="w-full mt-4" x-show="isFinished">Import Backup</x-forms.button>
</form>
2024-01-06 06:24:57 +01:00
@endif
2024-01-10 15:42:54 +01:00
@if ($scpInProgress)
<div>Database backup is being copied to server...</div>
@endif
2024-01-06 06:24:57 +01:00
2024-01-10 15:42:54 +01:00
<div class="container w-full pt-4 mx-auto">
<livewire:activity-monitor header="Database import output" />
</div>
@else
<div class="text-neutral-500">Database must be running to import a backup.</div>
@endif
2024-01-06 06:24:57 +01:00
</div>