Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Comentarios #56

Open
samsbg opened this issue May 14, 2024 · 0 comments
Open

Comentarios #56

samsbg opened this issue May 14, 2024 · 0 comments
Assignees

Comments

@samsbg
Copy link
Collaborator

samsbg commented May 14, 2024

Ten cuidado con los comentarios, muchos tampoco ayudan (también es muy obvio el c gpt) (también no se necesitan ninguno de estos)

export class CrearContenidosComponent {
    agregar: string = ''; // Propiedad enlazada al input 'agregar'
    nombreArchivo: string = ''; // Propiedad enlazada al input 'nombre_archivo'
    descripcion: string = ''; // Propiedad enlazada al textarea 'descripcion'

    validarDatos(): void {
        // Validación de los datos ingresados
        if (
            this.agregar.trim() === '' ||
            this.nombreArchivo.trim() === '' ||
            this.descripcion.trim() === ''
        ) {
            alert('Por favor completa todos los campos.');
            return; // Detiene la ejecución si hay campos vacíos
        }

        // Si los datos son válidos, realizar la acción correspondiente
        this.subirArchivo();
    }

    subirArchivo(): void {
        // Aquí puedes escribir la lógica para subir el archivo al servidor
        console.log('Datos válidos, subiendo archivo...');
    }
}

https://github.com/tecnologico-de-monterrey-oficial/C.MTY.TC3005B.2411-BinaryCode/blob/main/src/app/paginas/vista-archivos/components/crear-contenidos/crear-contenidos.component.ts

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants