Skip to content

Commit

Permalink
feat: Prevent empty search terms and style error message
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitinho163 committed Sep 6, 2024
1 parent 1ea0df5 commit 832350f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
6 changes: 6 additions & 0 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ function pesquisar() {
// Obtém o valor do campo de pesquisa
let termoPesquisa = document.getElementById("campo-pesquisa").value.toLowerCase();

// se termopesquisa for igual a uma string vazia, não executa.
if (termoPesquisa.trim() == "") {
section.innerHTML = "<p>Nada foi encontrado. Você precisa digitar o nome de um livro ou autor</p>"
return
}

// Inicializa uma string vazia para armazenar os resultados formatados em HTML
let resultados = "";

Expand Down
4 changes: 4 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ h1 .highlight-b {
color: #4ECDC4; /* Cor da letra 'b' */
}

p {
color: #A1A1A1;
}

/* Estiliza as seções da página */
section {
display: flex; /* Usa Flexbox para layout */
Expand Down

0 comments on commit 832350f

Please sign in to comment.