|
|
@ -69,8 +69,7 @@ |
|
|
|
class="px-4 py-2 border border-gray-300 rounded-md text-sm font-medium text-gray-700 hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500"> |
|
|
|
Cancelar |
|
|
|
</a> |
|
|
|
<button type="button" |
|
|
|
onclick="confirmarAccion()" |
|
|
|
<button type="submit" |
|
|
|
class="px-4 py-2 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500"> |
|
|
|
{{ isset($marca) ? 'Actualizar' : 'Guardar' }} |
|
|
|
</button> |
|
|
@ -81,52 +80,4 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
<script> |
|
|
|
function confirmarAccion() { |
|
|
|
const esEdicion = {{ isset($marca) ? 'true' : 'false' }}; |
|
|
|
const nombre = document.getElementById('nombre').value.trim(); |
|
|
|
|
|
|
|
if (!nombre) { |
|
|
|
Swal.fire({ |
|
|
|
title: 'Error', |
|
|
|
text: 'El nombre de la marca es obligatorio', |
|
|
|
icon: 'error', |
|
|
|
confirmButtonColor: '#3085d6', |
|
|
|
confirmButtonText: 'Entendido' |
|
|
|
}); |
|
|
|
return; |
|
|
|
} |
|
|
|
|
|
|
|
Swal.fire({ |
|
|
|
title: esEdicion ? '¿Editar marca?' : '¿Guardar marca?', |
|
|
|
html: esEdicion ? |
|
|
|
`¿Estás seguro de editar la marca a:<br><strong>${nombre}</strong>?` : |
|
|
|
`¿Estás seguro de guardar la marca:<br><strong>${nombre}</strong>?`, |
|
|
|
icon: 'question', |
|
|
|
showCancelButton: true, |
|
|
|
confirmButtonColor: '#3085d6', |
|
|
|
cancelButtonColor: '#d33', |
|
|
|
confirmButtonText: esEdicion ? 'Sí, editar' : 'Sí, guardar', |
|
|
|
cancelButtonText: 'Cancelar' |
|
|
|
}).then((result) => { |
|
|
|
if (result.isConfirmed) { |
|
|
|
document.getElementById('marcaForm').submit(); |
|
|
|
} |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
// Prevenir envío del formulario con Enter |
|
|
|
document.getElementById('marcaForm').addEventListener('keypress', function(e) { |
|
|
|
if (e.key === 'Enter') { |
|
|
|
e.preventDefault(); |
|
|
|
confirmarAccion(); |
|
|
|
} |
|
|
|
}); |
|
|
|
|
|
|
|
// Focus en el campo nombre al cargar la página |
|
|
|
document.addEventListener('DOMContentLoaded', function() { |
|
|
|
document.getElementById('nombre').focus(); |
|
|
|
}); |
|
|
|
</script> |
|
|
|
@endsection |
|
|
|