33 lines
1.6 KiB
PHP
33 lines
1.6 KiB
PHP
<div class="p-4 transition border rounded dark:border-coolgray-200">
|
|
<div class="flex flex-col justify-center pb-4 text-sm select-text">
|
|
<h2>{{ data_get($resource, 'name', 'unknown') }}</h2>
|
|
<div>{{ $workdir }}{{ $fs_path }} -> {{ $fileStorage->mount_path }}</div>
|
|
@if ($fileStorage->is_directory)
|
|
<div class="text-xs">Directory</div>
|
|
@else
|
|
<div class="text-xs">File</div>
|
|
@endif
|
|
</div>
|
|
<form wire:submit='submit' class="flex flex-col gap-2">
|
|
<div class="flex gap-2">
|
|
@if ($fileStorage->is_directory)
|
|
<x-modal-confirmation action="convertToFile" buttonTitle="Convert to file">
|
|
This will delete all files in this directory. It is not reversible. <br>Please think again.
|
|
</x-modal-confirmation>
|
|
@else
|
|
<x-modal-confirmation action="convertToDirectory" buttonTitle="Convert to directory">
|
|
This will convert this to a directory. If it was a file, it will be deleted. It is not reversible. <br>Please think again.
|
|
</x-modal-confirmation>
|
|
@endif
|
|
<x-modal-confirmation isErrorButton buttonTitle="Delete">
|
|
This file / directory will be deleted. It is not reversible. <br>Please think again.
|
|
</x-modal-confirmation>
|
|
</div>
|
|
@if (!$fileStorage->is_directory)
|
|
<x-forms.textarea label="Content" rows="20" id="fileStorage.content"></x-forms.textarea>
|
|
<x-forms.button class="w-full" type="submit">Save</x-forms.button>
|
|
@endif
|
|
|
|
</form>
|
|
</div>
|