Widget:Test2: 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 1: Linha 1:
<script>
<!DOCTYPE html>
document.addEventListener('DOMContentLoaded', function () {
<html lang="pt-BR">
  const dzWeeks = [
    { name: 'Décima semana', image: '/images/3/30/Card_DZ_D%C3%A9cima-Semana.png' }, // 1ª semana
    { name: 'Décima primeira semana', image: '/images/4/49/Card_DZ_D%C3%A9cima-Primeira-Semana.png' }, // 2ª semana
    { name: 'Décima segunda semana', image: '/images/1/11/Card_DZ_D%C3%A9cima-Segunda-Semana.png' }, // 3ª semana
    { name: 'Primeira semana', image: '/images/b/b2/Card_DZ_Primeira-Semana.png' }, // 4ª semana
    { name: 'Segunda semana', image: '/images/9/97/Card_DZ_Segunda-Semana.png' }, // 5ª semana
    { name: 'Terceira semana', image: '/images/f/fd/Card_DZ_Terceira-Semana.png' }, // 6ª semana
    { name: 'Quarta semana', image: '/images/1/17/Card_DZ_Quarta-Semana.png' }, // 7ª semana
    { name: 'Quinta semana', image: '/images/4/40/Card_DZ_Quinta-Semana.png' }, // 8ª semana
    { name: 'Sexta semana', image: '/images/2/23/Card_DZ_Sexta-Semana.png' }, // 9ª semana
    { name: 'Sétima semana', image: '/images/f/f2/Card_DZ_S%C3%A9tima-Semana.png' }, // 10ª semana
    { name: 'Oitava semana', image: '/images/9/97/Card_DZ_Oitava-Semana.png' }, // 11ª semana
    { name: 'Nona semana', image: '/images/b/b3/Card_DZ_Nona-Semana.png' }  // 12ª semana
  ];


  const url = window.location.origin;
<head>
  const dzCard = document.getElementById('dz-card');
    <meta charset="UTF-8">
  const storedWeekNumber = localStorage.getItem('currentWeekNumber');
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
  let currentWeekNumber = storedWeekNumber ? parseInt(storedWeekNumber) : 0;
    <title>Filtro de Mapas</title>
    <style>
        .hidden {
            display: none;
        }


  const today = new Date();
        .image-container {
  const lastUpdate = localStorage.getItem('lastUpdate');
            display: flex;
  const lastUpdateDate = lastUpdate ? new Date(lastUpdate) : null;
            flex-wrap: wrap;
            gap: 10px;
        }


  // Hora alvo para a atualização semanal (sexta-feira às 07:40)
        .image-item {
  const targetHour = 7;
            border: 1px solid #ccc;
  const targetMinute = 40;
            padding: 10px;
            width: 200px;
            text-align: center;
        }


  // Verifica se hoje é sexta-feira e já passou das 07:40
        .image-info {
  if (today.getDay() === 5 &&
            margin-top: 10px;
      (today.getHours() > targetHour || (today.getHours() === targetHour && today.getMinutes() >= targetMinute))) {
            font-size: 14px;
        }


    if (!lastUpdateDate || lastUpdateDate < today.setHours(targetHour, targetMinute, 0, 0)) {
        .input-group {
      // Incrementa o contador de semanas e atualiza o armazenamento
            margin-bottom: 15px;
      currentWeekNumber = (currentWeekNumber + 1) % dzWeeks.length;
        }
      localStorage.setItem('currentWeekNumber', currentWeekNumber);
      localStorage.setItem('lastUpdate', new Date().toISOString());
    }
  }


  // Define a imagem e alt do cartão
        .maps__select {
  dzCard.src = url + dzWeeks[currentWeekNumber].image;
            width: 100%;
  dzCard.alt = dzWeeks[currentWeekNumber].name;
            padding: 5px;
});
        }


</script>
        .maps__label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
 
        .filter-container {
            margin-top: 20px;
            margin-bottom: 10px;
        }
    </style>
</head>
 
<body>
    <form id="mapForm">
        <div id="mapTypeSelection" class="input-group">
            <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>
        </div>
 
        <div id="specificOptions" class="hidden input-group">
            <select id="specificOption" class="maps__select">
                <option value="">Selecione uma opção</option>
                <option value="Areia">Areia</option>
                <option value="Gelo">Gelo</option>
                <option value="Grama">Grama</option>
                <option value="Pedra">Pedra</option>
                <option value="Subaquático">Subaquático</option>
                <option value="Terra">Terra</option>
                <option value="Pisos">Pisos</option>
            </select>
            <label class="maps__label" for="specificOption">Local do X</label>
        </div>
 
        <div class="filter-container">
            <input type="checkbox" id="enableFilter">
            <label for="enableFilter" class="filter-label">Ativar filtro</label>
        </div>
 
        <div id="filterSection" class="hidden">
            <div id="filterById" class="input-group">
                <label for="filterOption" class="maps__label">Filtrar Por</label>
                <select id="filterOption" class="maps__select">
                    <option value="">Escolha uma Opção</option>
                    <option value="number">Filtrar por Número</option>
                    <option value="tag">Filtrar por Tag</option>
                </select>
                <input type="text" id="searchIds" placeholder="Digite os números separados por vírgula"
                    class="mapsCalc__select">
            </div>
 
            <div class="d-flex justify-center align-center flex-column">
                <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">
                </button>
            </div>
        </div>
 
        <div id="imageContainer" class="image-container hidden">
            <!-- As imagens e suas informações serão exibidas aqui -->
        </div>
    </form>
 
    <script>
        const specificOptions = {
            1: { // Mapa Vermelho
                'Areia': [
                    { id: '101', local: 'Green Island', coordinates: '3780, 3326, 7', imageUrl: 'https://wiki.pokexgames.com/images/d/db/3780%2C_3326%2C_7.png', tag: 'Areia' },
                ],
                // Outras opções do Mapa Vermelho
            },
            2: { // Mapa Verde
                'Grama': [
                    { id: '102', local: 'Green Hills', coordinates: '3785, 3320, 7', imageUrl: 'https://wiki.pokexgames.com/images/1/12/Green_Hills.png', tag: 'Grama' },
                ],
                // Outras opções do Mapa Verde
            },
            3: { // Mapa Roxo
                'Pedra': [
                    { id: '103', local: 'Rocky Mountain', coordinates: '3790, 3315, 7', imageUrl: 'https://wiki.pokexgames.com/images/2/23/Rocky_Mountain.png', tag: 'Pedra' },
                ],
                // Outras opções do Mapa Roxo
            }
        };
 
        document.getElementById('enableFilter').addEventListener('change', function () {
            const filterSection = document.getElementById('filterSection');
            if (this.checked) {
                filterSection.classList.remove('hidden');
            } else {
                filterSection.classList.add('hidden');
            }
        });
 
        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 && specificOptions[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');
            }
        });
 
        document.getElementById('specificOption').addEventListener('change', function () {
            const selectedMapType = document.getElementById('mapType').value;
            const selectedOption = this.value;
            const imageContainer = document.getElementById('imageContainer');
 
            if (selectedMapType && selectedOption && specificOptions[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}<br>
                                    <b>Tag(s)</b>: ${image.tag}
                                </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 = [];
 
                // 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);
                    });
                });
 
                // Ordena as imagens pelo nome do local
                allImages.sort((a, b) => a.local.localeCompare(b.local));
 
                // Gera o HTML para exibir as imagens ordenadas
                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.tag}
                            </div>
                        </div>
                    `;
                });
 
                if (imagesHtml === '') {
                    imageContainer.innerHTML = 'Nenhum mapa encontrado com o(s) número(s) informado(s).';
                } else {
                    imageContainer.innerHTML = imagesHtml;
                }
 
                imageContainer.classList.remove('hidden');
            } else {
                imageContainer.classList.add('hidden');
            }
        });
    </script>
</body>
 
</html>

Edição das 14h56min de 27 de agosto 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>Filtro de Mapas</title>
   <style>
       .hidden {
           display: none;
       }
       .image-container {
           display: flex;
           flex-wrap: wrap;
           gap: 10px;
       }
       .image-item {
           border: 1px solid #ccc;
           padding: 10px;
           width: 200px;
           text-align: center;
       }
       .image-info {
           margin-top: 10px;
           font-size: 14px;
       }
       .input-group {
           margin-bottom: 15px;
       }
       .maps__select {
           width: 100%;
           padding: 5px;
       }
       .maps__label {
           display: block;
           margin-bottom: 5px;
           font-weight: bold;
       }
       .filter-container {
           margin-top: 20px;
           margin-bottom: 10px;
       }
   </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: { // Mapa Vermelho
               'Areia': [
                   { id: '101', local: 'Green Island', coordinates: '3780, 3326, 7', imageUrl: 'https://wiki.pokexgames.com/images/d/db/3780%2C_3326%2C_7.png', tag: 'Areia' },
               ],
               // Outras opções do Mapa Vermelho
           },
           2: { // Mapa Verde
               'Grama': [
                   { id: '102', local: 'Green Hills', coordinates: '3785, 3320, 7', imageUrl: 'https://wiki.pokexgames.com/images/1/12/Green_Hills.png', tag: 'Grama' },
               ],
               // Outras opções do Mapa Verde
           },
           3: { // Mapa Roxo
               'Pedra': [
                   { id: '103', local: 'Rocky Mountain', coordinates: '3790, 3315, 7', imageUrl: 'https://wiki.pokexgames.com/images/2/23/Rocky_Mountain.png', tag: 'Pedra' },
               ],
               // Outras opções do Mapa Roxo
           }
       };
       document.getElementById('enableFilter').addEventListener('change', function () {
           const filterSection = document.getElementById('filterSection');
           if (this.checked) {
               filterSection.classList.remove('hidden');
           } else {
               filterSection.classList.add('hidden');
           }
       });
       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 && specificOptions[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');
           }
       });
       document.getElementById('specificOption').addEventListener('change', function () {
           const selectedMapType = document.getElementById('mapType').value;
           const selectedOption = this.value;
           const imageContainer = document.getElementById('imageContainer');
           if (selectedMapType && selectedOption && specificOptions[selectedMapType][selectedOption]) {
               const images = specificOptions[selectedMapType][selectedOption];
               let imagesHtml = ;
               if (Array.isArray(images)) {
                   images.forEach(image => {
                       imagesHtml += `
                               <img src="${image.imageUrl}" alt="${selectedOption}">
                                   Número do Mapa: ${image.id} 
Local: ${image.local}
Coordenada: ${image.coordinates}
Tag(s): ${image.tag}
                       `;
                   });
               } else {
                   imagesHtml = `
                           <img src="${images.imageUrl}" alt="${selectedOption}">
                               Número do Mapa: ${images.id} 
Local: ${images.local}
Coordenada: ${images.coordinates}
                   `;
               }
               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 = [];
               // 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);
                   });
               });
               // Ordena as imagens pelo nome do local
               allImages.sort((a, b) => a.local.localeCompare(b.local));
               // Gera o HTML para exibir as imagens ordenadas
               allImages.forEach(image => {
                   imagesHtml += `
                           <img src="${image.imageUrl}" alt="Imagem ID ${image.id}">
                               Número do Mapa: ${image.id} 
Local: ${image.local}
Coordenada: ${image.coordinates}
Tag(s): ${image.tag}
                   `;
               });
               if (imagesHtml === ) {
                   imageContainer.innerHTML = 'Nenhum mapa encontrado com o(s) número(s) informado(s).';
               } else {
                   imageContainer.innerHTML = imagesHtml;
               }
               imageContainer.classList.remove('hidden');
           } else {
               imageContainer.classList.add('hidden');
           }
       });
   </script>

</body>

</html>