Widget:Test: mudanças entre as edições

Ir para navegação Ir para pesquisar
sem sumário de edição
Sem resumo de edição
Etiqueta: Revertido
Sem resumo de edição
Etiqueta: Reversão manual
Linha 13: Linha 13:
             flex-direction: column;
             flex-direction: column;
             margin-top: -15px;
             margin-top: -15px;
            /* Ajuste este valor conforme necessário para subir o botão */
         }
         }


Linha 32: Linha 33:
         }
         }


        .image-container img {
.image-container img {
            object-fit: cover;
    object-fit: cover; /* Mantém a proporção da imagem, cortando se necessário */
            margin-bottom: 5px;
    margin-bottom: 5px;
        }
}


         .image-info {
         .image-info {
Linha 50: Linha 51:
         #searchButton {
         #searchButton {
             background: none;
             background: none;
            /* Remove o fundo do botão */
             border: none;
             border: none;
            /* Remove a borda do botão */
             padding: 0;
             padding: 0;
            /* Remove o padding do botão */
             cursor: pointer;
             cursor: pointer;
            /* Mostra o cursor de ponteiro ao passar sobre o botão */
             margin-top: 5px;
             margin-top: 5px;
            /* Ajuste a margem superior para subir o botão */
         }
         }


Linha 60: Linha 66:
             border-radius: 12px;
             border-radius: 12px;
             width: auto;
             width: auto;
            /* Garante que a largura se ajuste ao tamanho original da imagem */
             height: auto;
             height: auto;
            /* Garante que a altura se ajuste ao tamanho original da imagem */
         }
         }


Linha 75: Linha 83:
             min-width: 340px;
             min-width: 340px;
             min-height: 270px;
             min-height: 270px;
        }
          }


         .input-group {
         .input-group {
             position: relative;
             position: relative;
             margin: 20px 0;
             margin: 20px 0;
            /* Ajuste a margem para mover o campo para cima */
         }
         }


Linha 85: Linha 94:
             position: absolute;
             position: absolute;
             top: -18px;
             top: -18px;
            /* Eleva o texto para cima */
             background: none;
             background: none;
             padding: 0 5px;
             padding: 0 5px;
Linha 94: Linha 104:
         .maps__select {
         .maps__select {
             width: 100%;
             width: 100%;
            /* Mantém a largura total disponível */
             padding: 10px;
             padding: 10px;
             font-size: 16px;
             font-size: 16px;
Linha 100: Linha 111:
             appearance: none;
             appearance: none;
             background-color: #fff;
             background-color: #fff;
            /* Adiciona um fundo branco */
             box-sizing: border-box;
             box-sizing: border-box;
            /* Inclui o padding e a borda na largura total */
         }
         }


         .input-group input[type="text"] {
         .input-group input[type="text"] {
             width: 100%;
             width: 100%;
            /* Mantém a largura total disponível */
             padding: 10px;
             padding: 10px;
             font-size: 16px;
             font-size: 16px;
Linha 110: Linha 125:
             border: 1px solid #ccc;
             border: 1px solid #ccc;
             box-sizing: border-box;
             box-sizing: border-box;
            /* Inclui o padding e a borda na largura total */
         }
         }


Linha 115: Linha 131:
             position: absolute;
             position: absolute;
             top: -18px;
             top: -18px;
            /* Eleva o texto um pouco mais para cima */
             background: none;
             background: none;
             padding: 0 5px;
             padding: 0 5px;
             font-size: 14px;
             font-size: 14px;
             font-weight: bold;
             font-weight: bold;
            /* Deixa o texto em negrito */
             color: #0d0d0d;
             color: #0d0d0d;
         }
         }
Linha 124: Linha 142:
         .hover-minimize:hover {
         .hover-minimize:hover {
             transform: scale(0.95);
             transform: scale(0.95);
            /* Adiciona um efeito de minimizar ao passar o mouse */
         }
         }


Linha 129: Linha 148:
             display: flex;
             display: flex;
             align-items: center;
             align-items: center;
         }
         }


Linha 135: Linha 155:
             padding: 0;
             padding: 0;
             width: auto;
             width: auto;
            /* Ajusta o tamanho da checkbox conforme necessário */
             height: auto;
             height: auto;
            /* Ajusta o tamanho da checkbox conforme necessário */
            /* Alinha verticalmente a checkbox com o texto */
             vertical-align: middle;
             vertical-align: middle;
         }
         }
Linha 141: Linha 164:
         .filter-label {
         .filter-label {
             margin-left: 10px;
             margin-left: 10px;
            /* Espaço entre a checkbox e o texto */
             font-size: 14px;
             font-size: 14px;
             font-weight: bold;
             font-weight: bold;
             color: #0d0d0d;
             color: #0d0d0d;
             line-height: 1.5;
             line-height: 1.5;
            /* Ajusta a altura da linha para um alinhamento adequado */
         }
         }
     </style>
     </style>
Linha 174: Linha 199:
             <label class="maps__label" for="specificOption">Local do X</label>
             <label class="maps__label" for="specificOption">Local do X</label>
         </div>
         </div>
       
         <div class="filter-container">
         <div class="filter-container">
             <input type="checkbox" id="enableFilter">
             <input type="checkbox" id="enableFilter">
Linha 183: Linha 207:
             <div id="filterById" class="input-group">
             <div id="filterById" class="input-group">
                 <label for="searchIds" class="mapsCalc__label">Buscar por Nº do Mapa:</label>
                 <label for="searchIds" class="mapsCalc__label">Buscar por Nº do Mapa:</label>
                 <input type="text" id="searchIds" placeholder="Digite os números separados por vírgula" class="mapsCalc__select">
                 <input type="text" id="searchIds" placeholder="Digite os números separados por vírgula"
            </div>
                    class="mapsCalc__select">
 
            <div id="filterByTag" class="hidden input-group">
                <label for="searchTag" class="mapsCalc__label">Buscar por Tag:</label>
                <input type="text" id="searchTag" placeholder="Digite a tag">
             </div>
             </div>


             <div class="d-flex justify-center align-center flex-column">
             <div class="d-flex justify-center align-center flex-column">
                 <button type="button" id="filterButton" class="hover-minimize">
                 <button type="button" id="filterButton" class="hover-minimize">
                     <img src="https://wiki.pokexgames.com/images/8/82/Botao_Filtrar_Mapas_Adv.png" alt="Imagem botão filtrar">
                     <img src="https://wiki.pokexgames.com/images/8/82/Botao_Filtrar_Mapas_Adv.png"
                        alt="Imagem botão filtrar">
                 </button>
                 </button>
             </div>
             </div>
Linha 200: Linha 221:
             <!-- As imagens e suas informações serão exibidas aqui -->
             <!-- As imagens e suas informações serão exibidas aqui -->
         </div>
         </div>
     </form>
     </form>


Linha 285: Linha 305:
             }
             }
         };
         };
  const enableFilterCheckbox = document.getElementById('enableFilter');
        const filterSection = document.getElementById('filterSection');
        const filterByTag = document.getElementById('filterByTag');
        const searchTagInput = document.getElementById('searchTag');
        const mapTypeSelect = document.getElementById('mapType');
        const specificOptionSelect = document.getElementById('specificOption');
        const imageContainer = document.getElementById('imageContainer');


         enableFilterCheckbox.addEventListener('change', () => {
         document.getElementById('enableFilter').addEventListener('change', function () {
             const isChecked = enableFilterCheckbox.checked;
             const filterSection = document.getElementById('filterSection');
             filterSection.classList.toggle('hidden', !isChecked);
             if (this.checked) {
             filterByTag.classList.toggle('hidden', !isChecked);
                filterSection.classList.remove('hidden');
             } else {
                filterSection.classList.add('hidden');
            }
         });
         });


        document.getElementById('filterButton').addEventListener('click', () => {
            const selectedMapType = mapTypeSelect.value;
            const selectedSpecificOption = specificOptionSelect.value;
            const searchTag = searchTagInput.value.toLowerCase();


             const imagesToShow = [];
        document.getElementById('searchIds').addEventListener('keypress', function (event) {
             if (event.key === 'Enter') {
                event.preventDefault();
                document.getElementById('filterButton').click();
            }
        });
        document.getElementById('mapType').addEventListener('change', function () {
            const selectedMapType = this.value;
            const specificOptionSelect = document.getElementById('specificOption');
 
            if (selectedMapType) {
                specificOptionSelect.innerHTML = '<option value="">Selecione uma opção</option>';
                const options = Object.keys(specificOptions[selectedMapType]);
                options.forEach(option => {
                    specificOptionSelect.innerHTML += `<option value="${option}">${option}</option>`;
                });
                document.getElementById('specificOptions').classList.remove('hidden');
            } else {
                document.getElementById('specificOptions').classList.add('hidden');
            }
        });


             for (const [mapType, options] of Object.entries(specificOptions)) {
        document.getElementById('specificOption').addEventListener('change', function () {
                 for (const [option, images] of Object.entries(options)) {
             const selectedMapType = document.getElementById('mapType').value;
                     if ((selectedMapType === mapType || !selectedMapType) &&
            const selectedOption = this.value;
                        (selectedSpecificOption === option || !selectedSpecificOption)) {
            const imageContainer = document.getElementById('imageContainer');
                         imagesToShow.push(...images.filter(img => searchTag ? img.tag.toLowerCase() === searchTag : true));
 
                     }
            if (selectedMapType && selectedOption) {
                 const images = specificOptions[selectedMapType][selectedOption];
                let imagesHtml = '';
 
                if (Array.isArray(images)) {
                     images.forEach(image => {
                        imagesHtml += `
                            <div class="image-item">
                                <img src="${image.imageUrl}" alt="${selectedOption}">
                                <div class="image-info">
                                    <b>Número do Mapa</b>: ${image.id} <br>
                                    <b>Local</b>: ${image.local} <br>
                                    <b>Coordenada</b>: ${image.coordinates}
                                </div>
                            </div>
                        `;
                    });
                } else {
                    imagesHtml = `
                         <div class="image-item">
                            <img src="${images.imageUrl}" alt="${selectedOption}">
                            <div class="image-info">
                                <b>Número do Mapa</b>: ${images.id} <br>
                                <b>Local</b>: ${images.local} <br>
                                <b>Coordenada</b>: ${images.coordinates}
                            </div>
                        </div>
                     `;
                 }
                 }
                imageContainer.innerHTML = imagesHtml;
                imageContainer.classList.remove('hidden');
            } else {
                imageContainer.classList.add('hidden');
             }
             }
        });
        document.getElementById('filterButton').addEventListener('click', function () {
            const searchIds = document.getElementById('searchIds').value.split(',').map(id => id.trim());
            const imageContainer = document.getElementById('imageContainer');
            if (searchIds.length > 0) {
                let imagesHtml = '';
                let allImages = [];


            displayImages(imagesToShow);
                // Recolhe todas as imagens que correspondem aos IDs
        });
                Object.keys(specificOptions).forEach(mapType => {
                    const mapOptions = specificOptions[mapType];
                    Object.keys(mapOptions).forEach(option => {
                        const images = mapOptions[option].filter(image => searchIds.includes(image.id));
                        allImages = allImages.concat(images);
                    });
                });


        function displayImages(images) {
                // Ordena as imagens pelo nome do local
            imageContainer.innerHTML = '';
                allImages.sort((a, b) => a.local.localeCompare(b.local));


            if (images.length === 0) {
                 // Gera o HTML para exibir as imagens ordenadas
                 imageContainer.innerHTML = '<p>Nenhuma imagem encontrada.</p>';
                 allImages.forEach(image => {
            } else {
                     imagesHtml += `
                 images.forEach(img => {
                        <div class="image-item">
                     const imgElement = document.createElement('div');
                            <img src="${image.imageUrl}" alt="Imagem ID ${image.id}">
                    imgElement.className = 'image-item';
                            <div class="image-info">
                    imgElement.innerHTML = `
                                <b>Número do Mapa</b>: ${image.id} <br>
                        <img src="${img.imageUrl}" alt="Mapa">
                                <b>Local</b>: ${image.local} <br>
                        <div class="image-info">
                                <b>Coordenada</b>: ${image.coordinates}
                            <p>ID: ${img.id}</p>
                            </div>
                            <p>Local: ${img.local}</p>
                            <p>Coordenadas: ${img.coordinates}</p>
                         </div>
                         </div>
                     `;
                     `;
                    imageContainer.appendChild(imgElement);
                 });
                 });
                imageContainer.innerHTML = imagesHtml || 'Nenhuma imagem encontrada com os números fornecidos.';
                 imageContainer.classList.remove('hidden');
                 imageContainer.classList.remove('hidden');
            } else {
                imageContainer.classList.add('hidden');
             }
             }
         }
         });
     </script>
     </script>
</body>
</body>
</html>
</html>
5 801

edições

Menu de navegação