5 739
edições
Sem resumo de edição |
Sem resumo de edição |
||
Linha 173: | Linha 173: | ||
</style> | </style> | ||
</head> | </head> | ||
<body> | <body> | ||
<form id="mapForm"> | <form id="mapForm"> | ||
Linha 199: | Linha 198: | ||
<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"> | ||
<label for="enableFilter" class="filter-label">Ativar filtro</label> | <label for="enableFilter" class="filter-label">Ativar filtro</label> | ||
</div> | </div> | ||
<div id="filterSection" class="hidden"> | <div id="filterSection" class="hidden"> | ||
<div id="filterById" class="input-group"> | <div id="filterById" class="input-group"> | ||
<label for="filterOption" class="maps__label">Filtrar Por</label> | <label for="filterOption" class="maps__label">Filtrar Por</label> | ||
<select id="filterOption" class="maps__select"> | <select id="filterOption" class="maps__select"> | ||
<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> | <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" | <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"> | ||
<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"> | ||
</button> | </button> | ||
</div> | </div> | ||
Linha 228: | Linha 227: | ||
</form> | </form> | ||
<script> | <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/d/db/3780%2C_3326%2C_7.png', tag: 'Grama' }, | |||
{ id: '105', local: 'Green Island', coordinates: '3780, 3326, 7', imageUrl: 'https://wiki.pokexgames.com/images/d/db/3780%2C_3326%2C_7.png', tag: 'Areia' }, | |||
{ id: '106', local: 'Green Island', coordinates: '3780, 3326, 7', imageUrl: 'https://wiki.pokexgames.com/images/d/db/3780%2C_3326%2C_7.png' }, | |||
], | |||
// 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/d/db/3780%2C_3326%2C_7.png', tag: 'Pedra' }, | |||
{ id: '104', 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 Roxo | |||
} | |||
}; | |||
document.getElementById('enableFilter').addEventListener('change', function () { | document.getElementById('enableFilter').addEventListener('change', function () { | ||
Linha 303: | Linha 302: | ||
<b>Local</b>: ${image.local} <br> | <b>Local</b>: ${image.local} <br> | ||
<b>Coordenada</b>: ${image.coordinates}<br> | <b>Coordenada</b>: ${image.coordinates}<br> | ||
<b>Tag(s)</b>: ${image.tag} | <b>Tag(s)</b>: ${image.tag || 'Nenhuma'} | ||
</div> | </div> | ||
</div> | </div> | ||
`; | `; | ||
}); | }); | ||
} | } | ||
imageContainer.innerHTML = imagesHtml; | imageContainer.innerHTML = imagesHtml; | ||
imageContainer.classList.remove('hidden'); | imageContainer.classList.remove('hidden'); | ||
Linha 329: | Linha 317: | ||
document.getElementById('filterButton').addEventListener('click', function () { | document.getElementById('filterButton').addEventListener('click', function () { | ||
const searchIds = document.getElementById('searchIds').value.split(',').map(id => id.trim()); | |||
const filterOption = document.getElementById('filterOption').value; | const filterOption = document.getElementById('filterOption').value; | ||
const | const selectedMapType = document.getElementById('mapType').value; | ||
const selectedSpecificOption = document.getElementById('specificOption').value; | |||
const imageContainer = document.getElementById('imageContainer'); | const imageContainer = document.getElementById('imageContainer'); | ||
let imagesHtml = ''; | let imagesHtml = ''; | ||
let allImages = []; | let allImages = []; | ||
if (filterOption === ' | if (filterOption === 'tag') { | ||
const tags = searchIds.map(tag => tag.toLowerCase()); | |||
if (selectedMapType) { | |||
const mapOptions = specificOptions[ | const mapOptions = specificOptions[selectedMapType]; | ||
if (selectedSpecificOption) { | |||
const images = mapOptions[ | const images = mapOptions[selectedSpecificOption].filter(image => | ||
tags.some(tag => image.tag && image.tag.toLowerCase().includes(tag)) | |||
); | |||
allImages = allImages.concat(images); | allImages = allImages.concat(images); | ||
}); | } else { | ||
Object.keys(mapOptions).forEach(option => { | |||
} else if (filterOption === ' | const images = mapOptions[option].filter(image => | ||
tags.some(tag => image.tag && image.tag.toLowerCase().includes(tag)) | |||
); | |||
allImages = allImages.concat(images); | |||
}); | |||
} | |||
} | |||
} else if (filterOption === 'number') { | |||
if (searchIds.length > 0) { | |||
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); | |||
}); | }); | ||
}); | }); | ||
} | } | ||
} | } | ||
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.tag || 'Nenhuma'} | |||
</div> | |||
</div> | </div> | ||
`; | |||
}); | |||
} | } else { | ||
imagesHtml = 'Nenhuma imagem encontrada com os critérios fornecidos.'; | |||
} | |||
imageContainer.innerHTML = imagesHtml | imageContainer.innerHTML = imagesHtml; | ||
imageContainer.classList. | imageContainer.classList.toggle('hidden', allImages.length === 0); | ||
}); | }); | ||
</script> | </script> | ||
</body> | </body> | ||
</html> | </html> |