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

De PokeXGames
Ir para navegação Ir para pesquisar
Sem resumo de edição
Sem resumo de edição
Linha 33: Linha 33:
         }
         }


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


         .image-info {
         .image-info {
Linha 83: Linha 84:
             min-width: 410px;
             min-width: 410px;
             min-height: 320px;
             min-height: 320px;
          }
        }


         .input-group {
         .input-group {
Linha 115: Linha 116:
             /* Inclui o padding e a borda na largura total */
             /* Inclui o padding e a borda na largura total */
         }
         }


         .input-group input[type="text"] {
         .input-group input[type="text"] {
Linha 148: Linha 148:
             display: flex;
             display: flex;
             align-items: center;
             align-items: center;
         }
         }


Linha 171: Linha 170:
             /* Ajusta a altura da linha para um alinhamento adequado */
             /* Ajusta a altura da linha para um alinhamento adequado */
         }
         }
         .tag-button {
         .tag-button {
             display: inline-block;
             display: inline-block;
Linha 244: Linha 244:
                     <option value="">Escolha uma Opção</option>
                     <option value="">Escolha uma Opção</option>
                     <option value="number">Filtrar por Número</option>
                     <option value="number">Filtrar por Número</option>
                    <option value="tag">Filtrar por Tag</option>
                 </select>
                 </select>
                 <input type="text" id="searchIds" placeholder="Digite os números ou tags separados por vírgula" class="mapsCalc__select">
                 <input type="text" id="searchIds" placeholder="Digite os números ou tags separados por vírgula" class="mapsCalc__select">
             </div>
             </div>


             <div class="d-flex justify-center align-center flex-column">
             <div class="d-flex justify-center align-center flex-column">
Linha 259: Linha 257:
         <div id="imageContainer" class="image-container hidden">
         <div id="imageContainer" class="image-container hidden">
             <!-- As imagens e suas informações serão exibidas aqui -->
             <!-- As imagens e suas informações serão exibidas aqui -->
        </div>
        <div id="tagButtons" class="hidden">
            <!-- Botões de tag serão exibidos aqui -->
         </div>
         </div>
     </form>
     </form>


     <script>
     <script>
const specificOptions = {
        const specificOptions = {
1: {  
            1: {  
    'Areia': [  
                'Areia': [  
    { id: '101', local: 'Green Island', coordinates: '3780, 3326, 7',tags:['Areia','Água','Grama','Árvore'], imageUrl: 'https://wiki.pokexgames.com/images/4/4c/Mapas_de_ADV_VERMELHO_-_3780%2C_3326%2C_7.webp' },
                    { id: '101', local: 'Green Island', coordinates: '3780, 3326, 7', tags:['Areia','Água','Grama','Árvore'], imageUrl: 'https://wiki.pokexgames.com/images/4/4c/Mapas_de_ADV_VERMELHO_-_3780%2C_3326%2C_7.webp' }  
    { id: '102', local: 'Wildwind Island', coordinates: '3969, 3300, 7',tags:['Areia','Terra','Árvore'], imageUrl: 'https://wiki.pokexgames.com/images/5/58/Mapas_de_ADV_VERMELHO_-_3969%2C_3300%2C_7.webp' },
                ]
    { id: '103', local: 'Wildwind Island', coordinates: '4002, 3320, 7',tags:['Areia','Árvore','Pedra'], imageUrl: 'https://wiki.pokexgames.com/images/0/07/Mapas_de_ADV_VERMELHO_-_4002%2C_3320%2C_7.webp' },
    { id: '104', local: 'Saffron', coordinates: '4009, 3601, 7',tags:['Areia','Árvore','Terra','Água'], imageUrl: 'https://wiki.pokexgames.com/images/f/f5/Mapas_de_ADV_VERMELHO_-_4009%2C_3601%2C_7.webp' },
    { id: '105', local: 'Hurricane Island', coordinates: '4166, 3302, 7',tags:['Areia','Árvore','Água'], imageUrl: 'https://wiki.pokexgames.com/images/0/0d/Mapas_de_ADV_VERMELHO_-_4166%2C_3302%2C_7.webp' },
]
             },
             },
};
            2: {
                'Gelo': [
                    { id: '202', local: 'Snowy Peak', coordinates: '2050, 4850, 10', tags:['Gelo'], imageUrl: 'https://wiki.pokexgames.com/images/5/56/Mapa_Verde_ADV_-_2050%2C_4850%2C_10.webp' }
                ]
            }
        };


         document.getElementById('enableFilter').addEventListener('change', function () {
         const imageContainer = document.getElementById('imageContainer');
            const filterSection = document.getElementById('filterSection');
        const tagButtons = document.getElementById('tagButtons');
            if (this.checked) {
        const filterButton = document.getElementById('filterButton');
                filterSection.classList.remove('hidden');
        const enableFilter = document.getElementById('enableFilter');
            } else {
        const specificOptionSelect = document.getElementById('specificOption');
                filterSection.classList.add('hidden');
        const mapTypeSelect = document.getElementById('mapType');
            }
        const filterSection = document.getElementById('filterSection');
         });  
        const searchIdsInput = document.getElementById('searchIds');
 
         function updateTags() {
            const selectedMapType = mapTypeSelect.value;
            const selectedOption = specificOptionSelect.value;


        document.getElementById('searchIds').addEventListener('keypress', function (event) {
            let tags = [];
            if (event.key === 'Enter') {
            if (selectedMapType && selectedOption) {
                event.preventDefault();
                const options = specificOptions[selectedMapType];
                document.getElementById('filterButton').click();
                if (options && options[selectedOption]) {
                    options[selectedOption].forEach(item => {
                        tags = [...new Set([...tags, ...item.tags])];
                    });
                }
             }
             }
        });


        document.getElementById('mapType').addEventListener('change', function () {
            tagButtons.innerHTML = '';
            const selectedMapType = this.value;
            tags.forEach(tag => {
            const specificOptionSelect = document.getElementById('specificOption');
                const button = document.createElement('button');
                button.textContent = tag;
                button.classList.add('tag-button');
                button.addEventListener('click', () => {
                    button.classList.toggle('selected');
                    filterImages();
                });
                tagButtons.appendChild(button);
            });


             if (selectedMapType) {
             if (tags.length > 0) {
                specificOptionSelect.innerHTML = '<option value="">Selecione uma opção</option>';
                 tagButtons.classList.remove('hidden');
                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');
             }
             }
         });
         }


         document.getElementById('specificOption').addEventListener('change', function () {
         function filterImages() {
             const selectedMapType = document.getElementById('mapType').value;
            const selectedTags = Array.from(document.querySelectorAll('.tag-button.selected')).map(btn => btn.textContent);
             const selectedOption = this.value;
             const selectedMapType = mapTypeSelect.value;
             const imageContainer = document.getElementById('imageContainer');
             const selectedOption = specificOptionSelect.value;
             const filterById = searchIdsInput.value.trim();


            imageContainer.innerHTML = '';
             if (selectedMapType && selectedOption) {
             if (selectedMapType && selectedOption) {
                 const images = specificOptions[selectedMapType][selectedOption];
                 const options = specificOptions[selectedMapType];
                let imagesHtml = '';
                if (options && options[selectedOption]) {
                    const filteredItems = options[selectedOption].filter(item => {
                        const matchesTag = selectedTags.length === 0 || selectedTags.some(tag => item.tags.includes(tag));
                        const matchesId = filterById === '' || filterById.split(',').map(id => id.trim()).includes(item.id);
                        return matchesTag && matchesId;
                    });
 
                    filteredItems.forEach(item => {
                        const itemDiv = document.createElement('div');
                        itemDiv.classList.add('image-item');
 
                        const img = document.createElement('img');
                        img.src = item.imageUrl;
                        img.alt = `Mapa ${item.id}`;
                        img.style.width = '100%';
                        itemDiv.appendChild(img);


                if (Array.isArray(images)) {
                        const infoDiv = document.createElement('div');
                    images.forEach(image => {
                        infoDiv.classList.add('image-info');
                         imagesHtml += `
                         infoDiv.innerHTML = `
                             <div class="image-item">
                             <strong>Número do Mapa:</strong> ${item.id}<br>
                                <img src="${image.imageUrl}" alt="${selectedOption}">
                            <strong>Local:</strong> ${item.local}<br>
                                <div class="image-info">
                            <strong>Coordenada:</strong> ${item.coordinates}<br>
                        <b>Número do Mapa</b>: ${image.id} <br>
                            <strong>Tag(s):</strong> ${item.tags.join(', ')}
                        <b>Local</b>: ${image.local} <br>
                        <b>Coordenada</b>: ${image.coordinates}<br>
                        <b>Tag(s)</b>: ${image.tags.join(', ') || 'Nenhuma'}  
                                </div>
                            </div>
                         `;
                         `;
                        itemDiv.appendChild(infoDiv);
                        imageContainer.appendChild(itemDiv);
                     });
                     });
                    if (filteredItems.length === 0) {
                        imageContainer.innerHTML = '<p>Nenhuma imagem encontrada para os critérios selecionados.</p>';
                    }
                 }
                 }
            }
        }


                imageContainer.innerHTML = imagesHtml;
        mapTypeSelect.addEventListener('change', () => {
                imageContainer.classList.remove('hidden');
            updateTags();
             } else {
            filterImages();
                imageContainer.classList.add('hidden');
        });
             }
 
        specificOptionSelect.addEventListener('change', () => {
            updateTags();
             filterImages();
        });
 
        filterButton.addEventListener('click', () => {
             filterImages();
         });
         });


document.getElementById('filterButton').addEventListener('click', function () {
        searchIdsInput.addEventListener('input', () => {
    const searchIds = document.getElementById('searchIds').value.split(',').map(id => id.trim().toLowerCase());
            filterImages();
    const filterOption = document.getElementById('filterOption').value;
        });
    const selectedMapType = document.getElementById('mapType').value;
    const selectedSpecificOption = document.getElementById('specificOption').value;
    const imageContainer = document.getElementById('imageContainer');
    let imagesHtml = '';
    let allImages = [];


    if (filterOption === 'tag') {
        enableFilter.addEventListener('change', () => {
        if (selectedMapType) {
             filterSection.classList.toggle('hidden', !enableFilter.checked);
             const mapOptions = specificOptions[selectedMapType];
            if (!enableFilter.checked) {
            if (selectedSpecificOption) {
                 filterImages();
                const images = mapOptions[selectedSpecificOption].filter(image =>
                    searchIds.some(tag => image.tags.map(t => t.toLowerCase()).includes(tag))
                );
                allImages = allImages.concat(images);
            } else {
                 Object.keys(mapOptions).forEach(option => {
                    const images = mapOptions[option].filter(image =>
                        searchIds.some(tag => image.tags.map(t => t.toLowerCase()).includes(tag))
                    );
                    allImages = allImages.concat(images);
                });
             }
             }
         }
         });
    } else if (filterOption === 'number') {
 
        if (searchIds.length > 0) {
        specificOptionSelect.addEventListener('change', () => {
             Object.keys(specificOptions).forEach(mapType => {
            const selectedOption = specificOptionSelect.value;
                 const mapOptions = specificOptions[mapType];
             const tagButtons = document.querySelectorAll('.tag-button');
                 Object.keys(mapOptions).forEach(option => {
            tagButtons.forEach(button => {
                     const images = mapOptions[option].filter(image => searchIds.includes(image.id));
                 const tag = button.textContent;
                     allImages = allImages.concat(images);
                 if (selectedOption) {
                 });
                    button.classList.add('selected');
                    button.classList.add('disabled');
                    button.disabled = true;
                } else {
                     button.classList.remove('disabled');
                     button.disabled = false;
                 }
             });
             });
            filterImages();
        });
        function initializePage() {
            updateTags();
         }
         }
    }
    if (allImages.length > 0) {
        allImages.sort((a, b) => a.local.localeCompare(b.local));
        allImages.forEach(image => {
            imagesHtml += `
                <div class="image-item">
                    <img src="${image.imageUrl}" alt="Imagem ID ${image.id}">
                    <div class="image-info">
                        <b>Número do Mapa</b>: ${image.id} <br>
                        <b>Local</b>: ${image.local} <br>
                        <b>Coordenada</b>: ${image.coordinates}<br>
                        <b>Tag(s)</b>: ${image.tags.join(', ') || 'Nenhuma'}
                    </div>
                </div>
            `;
        });
    } else {
        imagesHtml = 'Nenhuma imagem encontrada com os critérios fornecidos.';
    }


    imageContainer.innerHTML = imagesHtml;
        initializePage();
    imageContainer.classList.toggle('hidden', allImages.length === 0);
});
     </script>
     </script>
</body>
</body>
</html>
</html>

Edição das 23h03min de 3 de setembro de 2024

<!DOCTYPE html> <html lang="pt-BR">

<head>

   <meta charset="UTF-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   <title>Seleção e Exibição de Imagens</title>
   <style>
       .d-flex {
           display: flex;
           justify-content: center;
           align-items: center;
           flex-direction: column;
           margin-top: -15px;
           /* Ajuste este valor conforme necessário para subir o botão */
       }
       .hidden {
           display: none;
       }
       .image-container {
           display: flex;
           flex-wrap: wrap;
           justify-content: center;
           gap: 10px;
           margin-top: 5px;
       }
       .image-container .image-item {
           flex: 1 0 30%;
           text-align: center;
       }
       .image-container img {
           object-fit: cover;
           /* Mantém a proporção da imagem, cortando se necessário */
           margin-bottom: 5px;
       }
       .image-info {
           margin-top: 5px;
       }
       select,
       input[type="text"],
       button {
           margin: 5px;
       }
       #filterButton,
       #searchButton {
           background: none;
           /* Remove o fundo do botão */
           border: none;
           /* Remove a borda do botão */
           padding: 0;
           /* Remove o padding do botão */
           cursor: pointer;
           /* Mostra o cursor de ponteiro ao passar sobre o botão */
           margin-top: 5px;
           /* Ajuste a margem superior para subir o botão */
       }
       #filterButton img,
       #searchButton img {
           border-radius: 12px;
           width: auto;
           /* Garante que a largura se ajuste ao tamanho original da imagem */
           height: auto;
           /* Garante que a altura se ajuste ao tamanho original da imagem */
       }
       .mw-body-content {
           display: flex;
       }
       .mw-parser-output {
           display: inline-block;
           padding: .5rem 2rem;
           margin: 0 auto;
           border: 30px solid transparent;
           border-image: url(https://wiki.pokexgames.com/images/3/37/Calculadora-de-Boost.png) 38;
           min-width: 410px;
           min-height: 320px;
       }
       .input-group {
           position: relative;
           margin: 20px 0;
           /* Ajuste a margem para mover o campo para cima */
       }
       .input-group label {
           position: absolute;
           top: -18px;
           /* Eleva o texto para cima */
           background: none;
           padding: 0 5px;
           font-size: 14px;
           font-weight: bold;
           color: #0d0d0d;
       }
       .maps__select {
           width: 100%;
           /* Mantém a largura total disponível */
           padding: 10px;
           font-size: 16px;
           border-radius: 5px;
           border: 1px solid #ccc;
           appearance: none;
           background-color: #fff;
           /* Adiciona um fundo branco */
           box-sizing: border-box;
           /* Inclui o padding e a borda na largura total */
       }
       .input-group input[type="text"] {
           width: 100%;
           /* Mantém a largura total disponível */
           padding: 10px;
           font-size: 16px;
           border-radius: 5px;
           border: 1px solid #ccc;
           box-sizing: border-box;
           /* Inclui o padding e a borda na largura total */
       }
       .maps__label {
           position: absolute;
           top: -18px;
           /* Eleva o texto um pouco mais para cima */
           background: none;
           padding: 0 5px;
           font-size: 14px;
           font-weight: bold;
           /* Deixa o texto em negrito */
           color: #0d0d0d;
       }
       .hover-minimize:hover {
           transform: scale(0.95);
           /* Adiciona um efeito de minimizar ao passar o mouse */
       }
       .filter-container {
           display: flex;
           align-items: center;
       }
       .filter-container input[type="checkbox"] {
           margin: 0;
           padding: 0;
           width: auto;
           /* Ajusta o tamanho da checkbox conforme necessário */
           height: auto;
           /* Ajusta o tamanho da checkbox conforme necessário */
           /* Alinha verticalmente a checkbox com o texto */
           vertical-align: middle;
       }
       .filter-label {
           margin-left: 10px;
           /* Espaço entre a checkbox e o texto */
           font-size: 14px;
           font-weight: bold;
           color: #0d0d0d;
           line-height: 1.5;
           /* Ajusta a altura da linha para um alinhamento adequado */
       }
       .tag-button {
           display: inline-block;
           background-color: #f1f1f1;
           color: #333;
           padding: 10px 20px;
           margin: 5px;
           border: 1px solid #ccc;
           border-radius: 20px;
           cursor: pointer;
           font-size: 16px;
       }
       .tag-button.selected {
           background-color: #15864e;
           color: rgb(159, 5, 219);
       }
       .selected-tags {
           margin: 20px;
           padding: 10px;
           background-color: #f9f9f9;
           border: 1px solid #ccc;
           border-radius: 5px;
       }
       .tag-item {
           display: inline-block;
           background-color: #007BFF;
           color: white;
           padding: 5px 10px;
           margin-right: 5px;
           border-radius: 3px;
           font-size: 14px;
       }
   </style>

</head> <body>

   <form id="mapForm">
           <select id="mapType" class="maps__select">
               <option value="">Selecione um mapa</option>
               <option value="1">Mapa Vermelho</option>
               <option value="2">Mapa Verde</option>
               <option value="3">Mapa Roxo</option>
           </select>
           <label class="maps__label" for="mapType">Tipo de Mapa</label>
           <input type="checkbox" id="enableFilter">
           <label for="enableFilter" class="filter-label">Ativar filtro</label>
   </form>
   <script>
       const specificOptions = {
           1: { 
               'Areia': [ 
                   { id: '101', local: 'Green Island', coordinates: '3780, 3326, 7', tags:['Areia','Água','Grama','Árvore'], imageUrl: 'https://wiki.pokexgames.com/images/4/4c/Mapas_de_ADV_VERMELHO_-_3780%2C_3326%2C_7.webp' } 
               ]
           },
           2: { 
               'Gelo': [ 
                   { id: '202', local: 'Snowy Peak', coordinates: '2050, 4850, 10', tags:['Gelo'], imageUrl: 'https://wiki.pokexgames.com/images/5/56/Mapa_Verde_ADV_-_2050%2C_4850%2C_10.webp' } 
               ]
           }
       };
       const imageContainer = document.getElementById('imageContainer');
       const tagButtons = document.getElementById('tagButtons');
       const filterButton = document.getElementById('filterButton');
       const enableFilter = document.getElementById('enableFilter');
       const specificOptionSelect = document.getElementById('specificOption');
       const mapTypeSelect = document.getElementById('mapType');
       const filterSection = document.getElementById('filterSection');
       const searchIdsInput = document.getElementById('searchIds');
       function updateTags() {
           const selectedMapType = mapTypeSelect.value;
           const selectedOption = specificOptionSelect.value;
           let tags = [];
           if (selectedMapType && selectedOption) {
               const options = specificOptions[selectedMapType];
               if (options && options[selectedOption]) {
                   options[selectedOption].forEach(item => {
                       tags = [...new Set([...tags, ...item.tags])];
                   });
               }
           }
           tagButtons.innerHTML = ;
           tags.forEach(tag => {
               const button = document.createElement('button');
               button.textContent = tag;
               button.classList.add('tag-button');
               button.addEventListener('click', () => {
                   button.classList.toggle('selected');
                   filterImages();
               });
               tagButtons.appendChild(button);
           });
           if (tags.length > 0) {
               tagButtons.classList.remove('hidden');
           }
       }
       function filterImages() {
           const selectedTags = Array.from(document.querySelectorAll('.tag-button.selected')).map(btn => btn.textContent);
           const selectedMapType = mapTypeSelect.value;
           const selectedOption = specificOptionSelect.value;
           const filterById = searchIdsInput.value.trim();
           imageContainer.innerHTML = ;
           if (selectedMapType && selectedOption) {
               const options = specificOptions[selectedMapType];
               if (options && options[selectedOption]) {
                   const filteredItems = options[selectedOption].filter(item => {
                       const matchesTag = selectedTags.length === 0 || selectedTags.some(tag => item.tags.includes(tag));
                       const matchesId = filterById ===  || filterById.split(',').map(id => id.trim()).includes(item.id);
                       return matchesTag && matchesId;
                   });
                   filteredItems.forEach(item => {
                       const itemDiv = document.createElement('div');
                       itemDiv.classList.add('image-item');
                       const img = document.createElement('img');
                       img.src = item.imageUrl;
                       img.alt = `Mapa ${item.id}`;
                       img.style.width = '100%';
                       itemDiv.appendChild(img);
                       const infoDiv = document.createElement('div');
                       infoDiv.classList.add('image-info');
                       infoDiv.innerHTML = `
                           Número do Mapa: ${item.id}
Local: ${item.local}
Coordenada: ${item.coordinates}
Tag(s): ${item.tags.join(', ')} `; itemDiv.appendChild(infoDiv);
                       imageContainer.appendChild(itemDiv);
                   });
                   if (filteredItems.length === 0) {

imageContainer.innerHTML = '

Nenhuma imagem encontrada para os critérios selecionados.

';

                   }
               }
           }
       }
       mapTypeSelect.addEventListener('change', () => {
           updateTags();
           filterImages();
       });
       specificOptionSelect.addEventListener('change', () => {
           updateTags();
           filterImages();
       });
       filterButton.addEventListener('click', () => {
           filterImages();
       });
       searchIdsInput.addEventListener('input', () => {
           filterImages();
       });
       enableFilter.addEventListener('change', () => {
           filterSection.classList.toggle('hidden', !enableFilter.checked);
           if (!enableFilter.checked) {
               filterImages();
           }
       });
       specificOptionSelect.addEventListener('change', () => {
           const selectedOption = specificOptionSelect.value;
           const tagButtons = document.querySelectorAll('.tag-button');
           tagButtons.forEach(button => {
               const tag = button.textContent;
               if (selectedOption) {
                   button.classList.add('selected');
                   button.classList.add('disabled');
                   button.disabled = true;
               } else {
                   button.classList.remove('disabled');
                   button.disabled = false;
               }
           });
           filterImages();
       });
       function initializePage() {
           updateTags();
       }
       initializePage();
   </script>

</body> </html>