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

sem sumário de edição
Sem resumo de edição
Sem resumo de edição
Etiqueta: Revertido
Linha 199: 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 207: Linha 208:
             <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"
                 <input type="text" id="searchIds" placeholder="Digite os números separados por vírgula" class="mapsCalc__select">
                    class="mapsCalc__select">
            </div>
 
            <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"
                     <img src="https://wiki.pokexgames.com/images/8/82/Botao_Filtrar_Mapas_Adv.png" alt="Imagem botão filtrar">
                        alt="Imagem botão filtrar">
                 </button>
                 </button>
             </div>
             </div>
Linha 377: Linha 381:
                 imageContainer.classList.add('hidden');
                 imageContainer.classList.add('hidden');
             }
             }
        });
        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', () => {
            const isChecked = enableFilterCheckbox.checked;
            filterSection.classList.toggle('hidden', !isChecked);
            filterByTag.classList.toggle('hidden', !isChecked);
         });
         });


         document.getElementById('filterButton').addEventListener('click', function () {
         document.getElementById('filterButton').addEventListener('click', () => {
             const searchIds = document.getElementById('searchIds').value.split(',').map(id => id.trim());
             const selectedMapType = mapTypeSelect.value;
             const imageContainer = document.getElementById('imageContainer');
            const selectedSpecificOption = specificOptionSelect.value;
            const searchTag = searchTagInput.value.toLowerCase();
 
             const imagesToShow = [];


             if (searchIds.length > 0) {
             for (const [mapType, options] of Object.entries(specificOptions)) {
                 let imagesHtml = '';
                 for (const [option, images] of Object.entries(options)) {
                 let allImages = [];
                    if ((selectedMapType === mapType || !selectedMapType) &&
                        (selectedSpecificOption === option || !selectedSpecificOption)) {
                        imagesToShow.push(...images.filter(img => searchTag ? img.tag.toLowerCase() === searchTag : true));
                    }
                 }
            }


                // Recolhe todas as imagens que correspondem aos IDs
            displayImages(imagesToShow);
                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);
                    });
                });


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


                 // Gera o HTML para exibir as imagens ordenadas
            if (images.length === 0) {
                 allImages.forEach(image => {
                 imageContainer.innerHTML = '<p>Nenhuma imagem encontrada.</p>';
                     imagesHtml += `
            } else {
                        <div class="image-item">
                 images.forEach(img => {
                            <img src="${image.imageUrl}" alt="Imagem ID ${image.id}">
                     const imgElement = document.createElement('div');
                            <div class="image-info">
                    imgElement.className = 'image-item';
                                <b>Número do Mapa</b>: ${image.id} <br>
                    imgElement.innerHTML = `
                                <b>Local</b>: ${image.local} <br>
                        <img src="${img.imageUrl}" alt="Mapa">
                                <b>Coordenada</b>: ${image.coordinates}
                        <div class="image-info">
                            </div>
                            <p>ID: ${img.id}</p>
                            <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 667

edições