feat: add required field validation and error handling in file upload component
- Introduced a `required` prop in the `FileUpload` component to enforce mandatory file uploads. - Enhanced error handling by implementing a modal for displaying error messages related to missing required fields and upload issues. - Updated the `+page.svelte` file to integrate the new error modal and improve user feedback during form submissions. - Ensured that all relevant file upload sections now validate the presence of documents before allowing form submission.
This commit is contained in:
54
apps/web/src/lib/components/ErrorModal.svelte
Normal file
54
apps/web/src/lib/components/ErrorModal.svelte
Normal file
@@ -0,0 +1,54 @@
|
||||
<script lang="ts">
|
||||
interface Props {
|
||||
open: boolean;
|
||||
title?: string;
|
||||
message: string;
|
||||
details?: string;
|
||||
onClose: () => void;
|
||||
}
|
||||
|
||||
let {
|
||||
open = $bindable(false),
|
||||
title = "Erro",
|
||||
message,
|
||||
details,
|
||||
onClose,
|
||||
}: Props = $props();
|
||||
</script>
|
||||
|
||||
{#if open}
|
||||
<div class="modal modal-open">
|
||||
<div class="modal-box">
|
||||
<h3 class="font-bold text-lg text-error mb-4 flex items-center gap-2">
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
class="h-6 w-6"
|
||||
fill="none"
|
||||
viewBox="0 0 24 24"
|
||||
stroke="currentColor"
|
||||
>
|
||||
<path
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
stroke-width="2"
|
||||
d="M12 8v4m0 4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"
|
||||
/>
|
||||
</svg>
|
||||
{title}
|
||||
</h3>
|
||||
<p class="py-4 text-base-content">{message}</p>
|
||||
{#if details}
|
||||
<div class="bg-base-200 rounded-lg p-3 mb-4">
|
||||
<p class="text-sm text-base-content/70 font-mono">{details}</p>
|
||||
</div>
|
||||
{/if}
|
||||
<div class="modal-action">
|
||||
<button class="btn btn-primary" onclick={() => { open = false; onClose(); }}>
|
||||
Fechar
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal-backdrop" onclick={() => { open = false; onClose(); }}></div>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
@@ -1,274 +1,279 @@
|
||||
<script lang="ts">
|
||||
import { useConvexClient } from "convex-svelte";
|
||||
|
||||
interface Props {
|
||||
label: string;
|
||||
helpUrl?: string;
|
||||
value?: string; // storageId
|
||||
disabled?: boolean;
|
||||
onUpload: (file: File) => Promise<void>;
|
||||
onRemove: () => Promise<void>;
|
||||
}
|
||||
|
||||
let {
|
||||
label,
|
||||
helpUrl,
|
||||
value = $bindable(),
|
||||
disabled = false,
|
||||
onUpload,
|
||||
onRemove,
|
||||
}: Props = $props();
|
||||
|
||||
const client = useConvexClient();
|
||||
|
||||
let fileInput: HTMLInputElement;
|
||||
let uploading = $state(false);
|
||||
let error = $state<string | null>(null);
|
||||
let fileName = $state<string>("");
|
||||
let fileType = $state<string>("");
|
||||
let previewUrl = $state<string | null>(null);
|
||||
let fileUrl = $state<string | null>(null);
|
||||
|
||||
const MAX_FILE_SIZE = 10 * 1024 * 1024; // 10MB
|
||||
const ALLOWED_TYPES = [
|
||||
"application/pdf",
|
||||
"image/jpeg",
|
||||
"image/jpg",
|
||||
"image/png",
|
||||
];
|
||||
|
||||
// Buscar URL do arquivo quando houver um storageId
|
||||
$effect(() => {
|
||||
if (value && !fileName) {
|
||||
// Tem storageId mas não é um upload recente
|
||||
loadExistingFile(value);
|
||||
}
|
||||
});
|
||||
|
||||
async function loadExistingFile(storageId: string) {
|
||||
try {
|
||||
const url = await client.storage.getUrl(storageId as any);
|
||||
if (url) {
|
||||
fileUrl = url;
|
||||
fileName = "Documento anexado";
|
||||
// Detectar tipo pelo URL ou assumir PDF
|
||||
if (url.includes(".pdf") || url.includes("application/pdf")) {
|
||||
fileType = "application/pdf";
|
||||
} else {
|
||||
fileType = "image/jpeg";
|
||||
previewUrl = url; // Para imagens, a URL serve como preview
|
||||
}
|
||||
}
|
||||
} catch (err) {
|
||||
console.error("Erro ao carregar arquivo existente:", err);
|
||||
}
|
||||
}
|
||||
|
||||
async function handleFileSelect(event: Event) {
|
||||
const target = event.target as HTMLInputElement;
|
||||
const file = target.files?.[0];
|
||||
|
||||
if (!file) return;
|
||||
|
||||
error = null;
|
||||
|
||||
// Validate file size
|
||||
if (file.size > MAX_FILE_SIZE) {
|
||||
error = "Arquivo muito grande. Tamanho máximo: 10MB";
|
||||
target.value = "";
|
||||
return;
|
||||
}
|
||||
|
||||
// Validate file type
|
||||
if (!ALLOWED_TYPES.includes(file.type)) {
|
||||
error = "Tipo de arquivo não permitido. Use PDF ou imagens (JPG, PNG)";
|
||||
target.value = "";
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
uploading = true;
|
||||
fileName = file.name;
|
||||
fileType = file.type;
|
||||
|
||||
// Create preview for images
|
||||
if (file.type.startsWith("image/")) {
|
||||
const reader = new FileReader();
|
||||
reader.onload = (e) => {
|
||||
previewUrl = e.target?.result as string;
|
||||
};
|
||||
reader.readAsDataURL(file);
|
||||
}
|
||||
|
||||
await onUpload(file);
|
||||
|
||||
} catch (err: any) {
|
||||
error = err?.message || "Erro ao fazer upload do arquivo";
|
||||
previewUrl = null;
|
||||
} finally {
|
||||
uploading = false;
|
||||
target.value = "";
|
||||
}
|
||||
}
|
||||
|
||||
async function handleRemove() {
|
||||
if (!confirm("Tem certeza que deseja remover este arquivo?")) {
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
uploading = true;
|
||||
await onRemove();
|
||||
fileName = "";
|
||||
fileType = "";
|
||||
previewUrl = null;
|
||||
fileUrl = null;
|
||||
} catch (err: any) {
|
||||
error = err?.message || "Erro ao remover arquivo";
|
||||
} finally {
|
||||
uploading = false;
|
||||
}
|
||||
}
|
||||
|
||||
function handleView() {
|
||||
if (fileUrl) {
|
||||
window.open(fileUrl, '_blank');
|
||||
}
|
||||
}
|
||||
|
||||
function openFileDialog() {
|
||||
fileInput?.click();
|
||||
}
|
||||
</script>
|
||||
|
||||
<div class="form-control w-full">
|
||||
<label class="label" for="file-upload-input">
|
||||
<span class="label-text font-medium flex items-center gap-2">
|
||||
{label}
|
||||
{#if helpUrl}
|
||||
<div class="tooltip tooltip-right" data-tip="Clique para acessar o link">
|
||||
<a
|
||||
href={helpUrl}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
class="text-primary hover:text-primary-focus transition-colors"
|
||||
aria-label="Acessar link"
|
||||
>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14" />
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
{/if}
|
||||
</span>
|
||||
</label>
|
||||
|
||||
<input
|
||||
id="file-upload-input"
|
||||
type="file"
|
||||
bind:this={fileInput}
|
||||
onchange={handleFileSelect}
|
||||
accept=".pdf,.jpg,.jpeg,.png"
|
||||
class="hidden"
|
||||
{disabled}
|
||||
/>
|
||||
|
||||
{#if value || fileName}
|
||||
<div class="flex items-center gap-2 p-3 border border-base-300 rounded-lg bg-base-100">
|
||||
<!-- Preview -->
|
||||
<div class="flex-shrink-0">
|
||||
{#if previewUrl}
|
||||
<img src={previewUrl} alt="Preview" class="w-12 h-12 object-cover rounded" />
|
||||
{:else if fileType === "application/pdf" || fileName.endsWith(".pdf")}
|
||||
<div class="w-12 h-12 bg-error/10 rounded flex items-center justify-center">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-error" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 21h10a2 2 0 002-2V9.414a1 1 0 00-.293-.707l-5.414-5.414A1 1 0 0012.586 3H7a2 2 0 00-2 2v14a2 2 0 002 2z" />
|
||||
</svg>
|
||||
</div>
|
||||
{:else}
|
||||
<div class="w-12 h-12 bg-success/10 rounded flex items-center justify-center">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-success" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" />
|
||||
</svg>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<!-- File info -->
|
||||
<div class="flex-1 min-w-0">
|
||||
<p class="text-sm font-medium truncate">{fileName || "Arquivo anexado"}</p>
|
||||
<p class="text-xs text-base-content/60">
|
||||
{#if uploading}
|
||||
Carregando...
|
||||
{:else}
|
||||
Enviado com sucesso
|
||||
{/if}
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!-- Actions -->
|
||||
<div class="flex gap-2">
|
||||
{#if fileUrl}
|
||||
<button
|
||||
type="button"
|
||||
onclick={handleView}
|
||||
class="btn btn-sm btn-ghost text-info"
|
||||
disabled={uploading || disabled}
|
||||
title="Visualizar arquivo"
|
||||
>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z" />
|
||||
</svg>
|
||||
</button>
|
||||
{/if}
|
||||
<button
|
||||
type="button"
|
||||
onclick={openFileDialog}
|
||||
class="btn btn-sm btn-ghost"
|
||||
disabled={uploading || disabled}
|
||||
title="Substituir arquivo"
|
||||
>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-8l-4-4m0 0L8 8m4-4v12" />
|
||||
</svg>
|
||||
</button>
|
||||
<button
|
||||
type="button"
|
||||
onclick={handleRemove}
|
||||
class="btn btn-sm btn-ghost text-error"
|
||||
disabled={uploading || disabled}
|
||||
title="Remover arquivo"
|
||||
>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6m1-10V4a1 1 0 00-1-1h-4a1 1 0 00-1 1v3M4 7h16" />
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
{:else}
|
||||
<button
|
||||
type="button"
|
||||
onclick={openFileDialog}
|
||||
class="btn btn-outline btn-block justify-start gap-2"
|
||||
disabled={uploading || disabled}
|
||||
>
|
||||
{#if uploading}
|
||||
<span class="loading loading-spinner loading-sm"></span>
|
||||
Carregando...
|
||||
{:else}
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 16a4 4 0 01-.88-7.903A5 5 0 1115.9 6L16 6a5 5 0 011 9.9M15 13l-3-3m0 0l-3 3m3-3v12" />
|
||||
</svg>
|
||||
Selecionar arquivo (PDF ou imagem, máx. 10MB)
|
||||
{/if}
|
||||
</button>
|
||||
{/if}
|
||||
|
||||
{#if error}
|
||||
<div class="label">
|
||||
<span class="label-text-alt text-error">{error}</span>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<script lang="ts">
|
||||
import { useConvexClient } from "convex-svelte";
|
||||
|
||||
interface Props {
|
||||
label: string;
|
||||
helpUrl?: string;
|
||||
value?: string; // storageId
|
||||
disabled?: boolean;
|
||||
required?: boolean;
|
||||
onUpload: (file: File) => Promise<void>;
|
||||
onRemove: () => Promise<void>;
|
||||
}
|
||||
|
||||
let {
|
||||
label,
|
||||
helpUrl,
|
||||
value = $bindable(),
|
||||
disabled = false,
|
||||
required = false,
|
||||
onUpload,
|
||||
onRemove,
|
||||
}: Props = $props();
|
||||
|
||||
const client = useConvexClient();
|
||||
|
||||
let fileInput: HTMLInputElement;
|
||||
let uploading = $state(false);
|
||||
let error = $state<string | null>(null);
|
||||
let fileName = $state<string>("");
|
||||
let fileType = $state<string>("");
|
||||
let previewUrl = $state<string | null>(null);
|
||||
let fileUrl = $state<string | null>(null);
|
||||
|
||||
const MAX_FILE_SIZE = 10 * 1024 * 1024; // 10MB
|
||||
const ALLOWED_TYPES = [
|
||||
"application/pdf",
|
||||
"image/jpeg",
|
||||
"image/jpg",
|
||||
"image/png",
|
||||
];
|
||||
|
||||
// Buscar URL do arquivo quando houver um storageId
|
||||
$effect(() => {
|
||||
if (value && !fileName) {
|
||||
// Tem storageId mas não é um upload recente
|
||||
loadExistingFile(value);
|
||||
}
|
||||
});
|
||||
|
||||
async function loadExistingFile(storageId: string) {
|
||||
try {
|
||||
const url = await client.storage.getUrl(storageId as any);
|
||||
if (url) {
|
||||
fileUrl = url;
|
||||
fileName = "Documento anexado";
|
||||
// Detectar tipo pelo URL ou assumir PDF
|
||||
if (url.includes(".pdf") || url.includes("application/pdf")) {
|
||||
fileType = "application/pdf";
|
||||
} else {
|
||||
fileType = "image/jpeg";
|
||||
previewUrl = url; // Para imagens, a URL serve como preview
|
||||
}
|
||||
}
|
||||
} catch (err) {
|
||||
console.error("Erro ao carregar arquivo existente:", err);
|
||||
}
|
||||
}
|
||||
|
||||
async function handleFileSelect(event: Event) {
|
||||
const target = event.target as HTMLInputElement;
|
||||
const file = target.files?.[0];
|
||||
|
||||
if (!file) return;
|
||||
|
||||
error = null;
|
||||
|
||||
// Validate file size
|
||||
if (file.size > MAX_FILE_SIZE) {
|
||||
error = "Arquivo muito grande. Tamanho máximo: 10MB";
|
||||
target.value = "";
|
||||
return;
|
||||
}
|
||||
|
||||
// Validate file type
|
||||
if (!ALLOWED_TYPES.includes(file.type)) {
|
||||
error = "Tipo de arquivo não permitido. Use PDF ou imagens (JPG, PNG)";
|
||||
target.value = "";
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
uploading = true;
|
||||
fileName = file.name;
|
||||
fileType = file.type;
|
||||
|
||||
// Create preview for images
|
||||
if (file.type.startsWith("image/")) {
|
||||
const reader = new FileReader();
|
||||
reader.onload = (e) => {
|
||||
previewUrl = e.target?.result as string;
|
||||
};
|
||||
reader.readAsDataURL(file);
|
||||
}
|
||||
|
||||
await onUpload(file);
|
||||
|
||||
} catch (err: any) {
|
||||
error = err?.message || "Erro ao fazer upload do arquivo";
|
||||
previewUrl = null;
|
||||
} finally {
|
||||
uploading = false;
|
||||
target.value = "";
|
||||
}
|
||||
}
|
||||
|
||||
async function handleRemove() {
|
||||
if (!confirm("Tem certeza que deseja remover este arquivo?")) {
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
uploading = true;
|
||||
await onRemove();
|
||||
fileName = "";
|
||||
fileType = "";
|
||||
previewUrl = null;
|
||||
fileUrl = null;
|
||||
} catch (err: any) {
|
||||
error = err?.message || "Erro ao remover arquivo";
|
||||
} finally {
|
||||
uploading = false;
|
||||
}
|
||||
}
|
||||
|
||||
function handleView() {
|
||||
if (fileUrl) {
|
||||
window.open(fileUrl, '_blank');
|
||||
}
|
||||
}
|
||||
|
||||
function openFileDialog() {
|
||||
fileInput?.click();
|
||||
}
|
||||
</script>
|
||||
|
||||
<div class="form-control w-full">
|
||||
<label class="label" for="file-upload-input">
|
||||
<span class="label-text font-medium flex items-center gap-2">
|
||||
{label}
|
||||
{#if required}
|
||||
<span class="text-error">*</span>
|
||||
{/if}
|
||||
{#if helpUrl}
|
||||
<div class="tooltip tooltip-right" data-tip="Clique para acessar o link">
|
||||
<a
|
||||
href={helpUrl}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
class="text-primary hover:text-primary-focus transition-colors"
|
||||
aria-label="Acessar link"
|
||||
>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14" />
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
{/if}
|
||||
</span>
|
||||
</label>
|
||||
|
||||
<input
|
||||
id="file-upload-input"
|
||||
type="file"
|
||||
bind:this={fileInput}
|
||||
onchange={handleFileSelect}
|
||||
accept=".pdf,.jpg,.jpeg,.png"
|
||||
class="hidden"
|
||||
{disabled}
|
||||
/>
|
||||
|
||||
{#if value || fileName}
|
||||
<div class="flex items-center gap-2 p-3 border border-base-300 rounded-lg bg-base-100">
|
||||
<!-- Preview -->
|
||||
<div class="flex-shrink-0">
|
||||
{#if previewUrl}
|
||||
<img src={previewUrl} alt="Preview" class="w-12 h-12 object-cover rounded" />
|
||||
{:else if fileType === "application/pdf" || fileName.endsWith(".pdf")}
|
||||
<div class="w-12 h-12 bg-error/10 rounded flex items-center justify-center">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-error" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 21h10a2 2 0 002-2V9.414a1 1 0 00-.293-.707l-5.414-5.414A1 1 0 0012.586 3H7a2 2 0 00-2 2v14a2 2 0 002 2z" />
|
||||
</svg>
|
||||
</div>
|
||||
{:else}
|
||||
<div class="w-12 h-12 bg-success/10 rounded flex items-center justify-center">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-success" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" />
|
||||
</svg>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<!-- File info -->
|
||||
<div class="flex-1 min-w-0">
|
||||
<p class="text-sm font-medium truncate">{fileName || "Arquivo anexado"}</p>
|
||||
<p class="text-xs text-base-content/60">
|
||||
{#if uploading}
|
||||
Carregando...
|
||||
{:else}
|
||||
Enviado com sucesso
|
||||
{/if}
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!-- Actions -->
|
||||
<div class="flex gap-2">
|
||||
{#if fileUrl}
|
||||
<button
|
||||
type="button"
|
||||
onclick={handleView}
|
||||
class="btn btn-sm btn-ghost text-info"
|
||||
disabled={uploading || disabled}
|
||||
title="Visualizar arquivo"
|
||||
>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z" />
|
||||
</svg>
|
||||
</button>
|
||||
{/if}
|
||||
<button
|
||||
type="button"
|
||||
onclick={openFileDialog}
|
||||
class="btn btn-sm btn-ghost"
|
||||
disabled={uploading || disabled}
|
||||
title="Substituir arquivo"
|
||||
>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-8l-4-4m0 0L8 8m4-4v12" />
|
||||
</svg>
|
||||
</button>
|
||||
<button
|
||||
type="button"
|
||||
onclick={handleRemove}
|
||||
class="btn btn-sm btn-ghost text-error"
|
||||
disabled={uploading || disabled}
|
||||
title="Remover arquivo"
|
||||
>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6m1-10V4a1 1 0 00-1-1h-4a1 1 0 00-1 1v3M4 7h16" />
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
{:else}
|
||||
<button
|
||||
type="button"
|
||||
onclick={openFileDialog}
|
||||
class="btn btn-outline btn-block justify-start gap-2"
|
||||
disabled={uploading || disabled}
|
||||
>
|
||||
{#if uploading}
|
||||
<span class="loading loading-spinner loading-sm"></span>
|
||||
Carregando...
|
||||
{:else}
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 16a4 4 0 01-.88-7.903A5 5 0 1115.9 6L16 6a5 5 0 011 9.9M15 13l-3-3m0 0l-3 3m3-3v12" />
|
||||
</svg>
|
||||
Selecionar arquivo (PDF ou imagem, máx. 10MB)
|
||||
{/if}
|
||||
</button>
|
||||
{/if}
|
||||
|
||||
{#if error}
|
||||
<div class="label">
|
||||
<span class="label-text-alt text-error">{error}</span>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
import { toast } from "svelte-sonner";
|
||||
import FuncionarioSelect from "$lib/components/FuncionarioSelect.svelte";
|
||||
import FileUpload from "$lib/components/FileUpload.svelte";
|
||||
import ErrorModal from "$lib/components/ErrorModal.svelte";
|
||||
import type { Id } from "@sgse-app/backend/convex/_generated/dataModel";
|
||||
|
||||
const client = useConvexClient();
|
||||
@@ -74,6 +75,14 @@
|
||||
let salvandoMaternidade = $state(false);
|
||||
let salvandoPaternidade = $state(false);
|
||||
|
||||
// Modal de erro
|
||||
let erroModal = $state({
|
||||
aberto: false,
|
||||
titulo: "",
|
||||
mensagem: "",
|
||||
detalhes: "",
|
||||
});
|
||||
|
||||
// Licenças maternidade para prorrogação (derivar dos dados já carregados)
|
||||
const licencasMaternidade = $derived.by(() => {
|
||||
const dados = dadosQuery?.data;
|
||||
@@ -114,10 +123,33 @@
|
||||
}
|
||||
}
|
||||
|
||||
// Função para mostrar erro em modal
|
||||
function mostrarErro(titulo: string, mensagem: string, detalhes?: string) {
|
||||
erroModal = {
|
||||
aberto: true,
|
||||
titulo,
|
||||
mensagem,
|
||||
detalhes: detalhes || "",
|
||||
};
|
||||
}
|
||||
|
||||
// Salvar Atestado Médico
|
||||
async function salvarAtestadoMedico() {
|
||||
if (!atestadoMedico.funcionarioId || !atestadoMedico.dataInicio || !atestadoMedico.dataFim || !atestadoMedico.cid) {
|
||||
toast.error("Preencha todos os campos obrigatórios");
|
||||
mostrarErro(
|
||||
"Campos obrigatórios",
|
||||
"Preencha todos os campos obrigatórios antes de salvar.",
|
||||
"Campos obrigatórios: Funcionário, Data Início, Data Fim e CID"
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!atestadoMedico.documentoId) {
|
||||
mostrarErro(
|
||||
"Documento obrigatório",
|
||||
"É necessário anexar o documento do atestado médico.",
|
||||
"Por favor, faça o upload do arquivo PDF ou imagem do atestado antes de salvar."
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -129,14 +161,16 @@
|
||||
dataFim: atestadoMedico.dataFim,
|
||||
cid: atestadoMedico.cid,
|
||||
observacoes: atestadoMedico.observacoes || undefined,
|
||||
documentoId: atestadoMedico.documentoId as Id<"_storage"> | undefined,
|
||||
documentoId: atestadoMedico.documentoId as Id<"_storage">,
|
||||
});
|
||||
|
||||
toast.success("Atestado médico registrado com sucesso!");
|
||||
resetarFormularioAtestado();
|
||||
abaAtiva = "dashboard";
|
||||
} catch (error: any) {
|
||||
toast.error(error?.message || "Erro ao registrar atestado");
|
||||
const mensagemErro = error?.message || "Erro ao registrar atestado";
|
||||
const detalhesErro = error?.data?.message || error?.toString() || "";
|
||||
mostrarErro("Erro ao registrar", mensagemErro, detalhesErro);
|
||||
} finally {
|
||||
salvandoAtestado = false;
|
||||
}
|
||||
@@ -145,7 +179,20 @@
|
||||
// Salvar Declaração
|
||||
async function salvarDeclaracao() {
|
||||
if (!declaracao.funcionarioId || !declaracao.dataInicio || !declaracao.dataFim) {
|
||||
toast.error("Preencha todos os campos obrigatórios");
|
||||
mostrarErro(
|
||||
"Campos obrigatórios",
|
||||
"Preencha todos os campos obrigatórios antes de salvar.",
|
||||
"Campos obrigatórios: Funcionário, Data Início e Data Fim"
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!declaracao.documentoId) {
|
||||
mostrarErro(
|
||||
"Documento obrigatório",
|
||||
"É necessário anexar o documento da declaração.",
|
||||
"Por favor, faça o upload do arquivo PDF ou imagem da declaração antes de salvar."
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -156,14 +203,16 @@
|
||||
dataInicio: declaracao.dataInicio,
|
||||
dataFim: declaracao.dataFim,
|
||||
observacoes: declaracao.observacoes || undefined,
|
||||
documentoId: declaracao.documentoId as Id<"_storage"> | undefined,
|
||||
documentoId: declaracao.documentoId as Id<"_storage">,
|
||||
});
|
||||
|
||||
toast.success("Declaração registrada com sucesso!");
|
||||
resetarFormularioDeclaracao();
|
||||
abaAtiva = "dashboard";
|
||||
} catch (error: any) {
|
||||
toast.error(error?.message || "Erro ao registrar declaração");
|
||||
const mensagemErro = error?.message || "Erro ao registrar declaração";
|
||||
const detalhesErro = error?.data?.message || error?.toString() || "";
|
||||
mostrarErro("Erro ao registrar", mensagemErro, detalhesErro);
|
||||
} finally {
|
||||
salvandoDeclaracao = false;
|
||||
}
|
||||
@@ -172,12 +221,29 @@
|
||||
// Salvar Licença Maternidade
|
||||
async function salvarLicencaMaternidade() {
|
||||
if (!licencaMaternidade.funcionarioId || !licencaMaternidade.dataInicio || !licencaMaternidade.dataFim) {
|
||||
toast.error("Preencha todos os campos obrigatórios");
|
||||
mostrarErro(
|
||||
"Campos obrigatórios",
|
||||
"Preencha todos os campos obrigatórios antes de salvar.",
|
||||
"Campos obrigatórios: Funcionário, Data Início e Data Fim"
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
||||
if (licencaMaternidade.ehProrrogacao && !licencaMaternidade.licencaOriginalId) {
|
||||
toast.error("Selecione a licença original para prorrogação");
|
||||
mostrarErro(
|
||||
"Licença original obrigatória",
|
||||
"Para prorrogações, é necessário selecionar a licença original.",
|
||||
"Selecione a licença de maternidade original no campo 'Licença Original'."
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!licencaMaternidade.documentoId) {
|
||||
mostrarErro(
|
||||
"Documento obrigatório",
|
||||
"É necessário anexar o documento da licença de maternidade.",
|
||||
"Por favor, faça o upload do arquivo PDF ou imagem da licença antes de salvar."
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -188,7 +254,7 @@
|
||||
dataInicio: licencaMaternidade.dataInicio,
|
||||
dataFim: licencaMaternidade.dataFim,
|
||||
observacoes: licencaMaternidade.observacoes || undefined,
|
||||
documentoId: licencaMaternidade.documentoId as Id<"_storage"> | undefined,
|
||||
documentoId: licencaMaternidade.documentoId as Id<"_storage">,
|
||||
licencaOriginalId: licencaMaternidade.licencaOriginalId as Id<"licencas"> | undefined,
|
||||
});
|
||||
|
||||
@@ -196,7 +262,9 @@
|
||||
resetarFormularioMaternidade();
|
||||
abaAtiva = "dashboard";
|
||||
} catch (error: any) {
|
||||
toast.error(error?.message || "Erro ao registrar licença");
|
||||
const mensagemErro = error?.message || "Erro ao registrar licença";
|
||||
const detalhesErro = error?.data?.message || error?.toString() || "";
|
||||
mostrarErro("Erro ao registrar", mensagemErro, detalhesErro);
|
||||
} finally {
|
||||
salvandoMaternidade = false;
|
||||
}
|
||||
@@ -205,7 +273,20 @@
|
||||
// Salvar Licença Paternidade
|
||||
async function salvarLicencaPaternidade() {
|
||||
if (!licencaPaternidade.funcionarioId || !licencaPaternidade.dataInicio || !licencaPaternidade.dataFim) {
|
||||
toast.error("Preencha todos os campos obrigatórios");
|
||||
mostrarErro(
|
||||
"Campos obrigatórios",
|
||||
"Preencha todos os campos obrigatórios antes de salvar.",
|
||||
"Campos obrigatórios: Funcionário, Data Início e Data Fim"
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!licencaPaternidade.documentoId) {
|
||||
mostrarErro(
|
||||
"Documento obrigatório",
|
||||
"É necessário anexar o documento da licença de paternidade.",
|
||||
"Por favor, faça o upload do arquivo PDF ou imagem da licença antes de salvar."
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -216,14 +297,16 @@
|
||||
dataInicio: licencaPaternidade.dataInicio,
|
||||
dataFim: licencaPaternidade.dataFim,
|
||||
observacoes: licencaPaternidade.observacoes || undefined,
|
||||
documentoId: licencaPaternidade.documentoId as Id<"_storage"> | undefined,
|
||||
documentoId: licencaPaternidade.documentoId as Id<"_storage">,
|
||||
});
|
||||
|
||||
toast.success("Licença paternidade registrada com sucesso!");
|
||||
resetarFormularioPaternidade();
|
||||
abaAtiva = "dashboard";
|
||||
} catch (error: any) {
|
||||
toast.error(error?.message || "Erro ao registrar licença");
|
||||
const mensagemErro = error?.message || "Erro ao registrar licença";
|
||||
const detalhesErro = error?.data?.message || error?.toString() || "";
|
||||
mostrarErro("Erro ao registrar", mensagemErro, detalhesErro);
|
||||
} finally {
|
||||
salvandoPaternidade = false;
|
||||
}
|
||||
@@ -1220,6 +1303,7 @@
|
||||
<FileUpload
|
||||
label="Anexar Atestado (PDF ou Imagem)"
|
||||
bind:value={atestadoMedico.documentoId}
|
||||
required={true}
|
||||
onUpload={async (file) => {
|
||||
atestadoMedico.documentoId = await handleDocumentoUpload(
|
||||
file
|
||||
@@ -1305,6 +1389,7 @@
|
||||
<FileUpload
|
||||
label="Anexar Documento (PDF ou Imagem)"
|
||||
bind:value={declaracao.documentoId}
|
||||
required={true}
|
||||
onUpload={async (file) => {
|
||||
declaracao.documentoId = await handleDocumentoUpload(file);
|
||||
}}
|
||||
@@ -1424,6 +1509,7 @@
|
||||
<FileUpload
|
||||
label="Anexar Documento (PDF ou Imagem)"
|
||||
bind:value={licencaMaternidade.documentoId}
|
||||
required={true}
|
||||
onUpload={async (file) => {
|
||||
licencaMaternidade.documentoId = await handleDocumentoUpload(
|
||||
file
|
||||
@@ -1512,6 +1598,7 @@
|
||||
<FileUpload
|
||||
label="Anexar Documento (PDF ou Imagem)"
|
||||
bind:value={licencaPaternidade.documentoId}
|
||||
required={true}
|
||||
onUpload={async (file) => {
|
||||
licencaPaternidade.documentoId = await handleDocumentoUpload(
|
||||
file
|
||||
@@ -1560,3 +1647,14 @@
|
||||
{/if}
|
||||
</main>
|
||||
|
||||
<!-- Modal de Erro -->
|
||||
<ErrorModal
|
||||
bind:open={erroModal.aberto}
|
||||
title={erroModal.titulo}
|
||||
message={erroModal.mensagem}
|
||||
details={erroModal.detalhes}
|
||||
onClose={() => {
|
||||
erroModal.aberto = false;
|
||||
}}
|
||||
/>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user