mmpSearch/pages/samples.md

444 lines
20 KiB
Markdown
Executable File

---
layout: default
title: MMPSearch - Samples Disponíveis
permalink: /samples/
---
<meta charset="utf-8" />
<main class="main-content">
<div class="publication">
<div class="container">
<br />
<div class="tabs is-centered is-boxed is-medium mb-6">
{% include sidebar.html %}
</div>
<div class="has-text-centered mb-5">
<h1 class="title is-3 has-text-grey-dark">🎤 Biblioteca de Samples</h1>
<p class="subtitle is-6 has-text-grey">Navegue pelas pastas para ouvir e filtrar projetos.</p>
<div style="width: 60px; height: 4px; background-color: #3273dc; margin: 1rem auto; border-radius: 2px;"></div>
</div>
<div class="box p-0 mb-6" style="border: 1px solid #cfe8fc; overflow: hidden; background-color: #fff; min-height: 400px; display: flex; flex-direction: column; box-shadow: 0 4px 10px rgba(0,0,0,0.05);">
<div class="p-3 has-background-white-ter" style="border-bottom: 1px solid #cfe8fc; display: flex; align-items: center;">
<button id="btn-home" class="button is-small is-info is-light mr-3" title="Voltar ao início">
<i class="fa-solid fa-house"></i>
</button>
<nav class="breadcrumb is-small mb-0" aria-label="breadcrumbs">
<ul id="breadcrumb-list">
<li class="is-active"><a href="#">Raiz</a></li>
</ul>
</nav>
</div>
<div id="browser-view" class="p-4" style="flex: 1;">
<p class="has-text-centered has-text-grey-light mt-6">Carregando biblioteca...</p>
</div>
<div id="preview-bar" class="p-3 has-background-info-light is-hidden" style="border-top: 1px solid #cfe8fc; display: flex; align-items: center; justify-content: space-between;">
<div style="display: flex; align-items: center; gap: 10px; overflow: hidden;">
<span class="icon has-text-info"><i class="fa-solid fa-music"></i></span>
<div>
<strong id="preview-filename" style="display:block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 200px; line-height: 1;">Nome do Arquivo</strong>
<span class="is-size-7 has-text-grey">Filtrando projetos abaixo...</span>
</div>
</div>
<audio id="browser-audio-player" controls style="height: 30px; max-width: 300px;"></audio>
</div>
</div>
<div class="columns is-mobile is-vcentered mb-5">
<div class="column is-auto">
<h2 class="title is-4 has-text-grey-dark">
<span class="icon has-text-info mr-2"><i class="fa-solid fa-filter"></i></span>
Filtro: <code id="filter-display-name" style="color: #d63384;">(nenhum selecionado)</code>
</h2>
</div>
<div class="column is-narrow">
<button id="clearFilterButton" class="button is-small is-danger is-light">
<span class="icon is-small"><i class="fa-solid fa-xmark"></i></span>
<span>Limpar Filtro</span>
</button>
</div>
</div>
<div id="project-list" class="columns is-multiline">
{% for projeto in site.data.all %}
{% assign project_samples_list = "" %}
{% for track in projeto.tracks %}
{% if track.sample %}
{% for inst in track.sample %}
{% if inst.sample_name %}
{% assign project_samples_list = project_samples_list | append: inst.sample_name | append: "," %}
{% endif %}
{% endfor %}
{% elsif track.sample_name %}
{% assign project_samples_list = project_samples_list | append: track.sample_name | append: "," %}
{% endif %}
{% endfor %}
{% if project_samples_list != "" %}
<div class="column is-12-mobile is-6-tablet is-4-desktop is-3-widescreen project-item"
data-samples="{{ project_samples_list }}">
<div class="card project-card" style="height: 100%; background-color: #f0f8ff; border: 1px solid #cfe8fc; border-radius: 12px; display: flex; flex-direction: column; position: relative;">
{% assign file_url = projeto.file | downcase | replace: ' ', '-' | replace: 'ç', 'c' | replace: 'ã', 'a' | replace: 'á', 'a' | replace: 'â', 'a' | replace: 'é', 'e' | replace: 'ê', 'e' | replace: 'í', 'i' | replace: 'ó', 'o' | replace: 'ô', 'o' | replace: 'õ', 'o' | replace: 'ú', 'u' %}
{% assign page_url = '../projetos/' | append: file_url | append: '.html' %}
<a href="{{ page_url }}" style="text-decoration: none; flex: 1; display: flex; flex-direction: column;">
<div class="card-content has-text-centered p-4" style="flex: 1; display: flex; flex-direction: column;">
<div style="width: 50px; height: 50px; background-color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.5rem auto; box-shadow: 0 2px 5px rgba(0,0,0,0.05);">
<span class="icon" style="color: #3273dc;"><i class="fa-solid fa-microphone-lines fa-lg"></i></span>
</div>
<p class="title is-6 mb-2" style="color: #205081; word-break: break-word; font-weight: 700; line-height: 1.2;">
{{ projeto.file }}
</p>
{% if projeto.bpm %}
<div class="mb-3">
<span class="tag is-dark is-rounded is-light" style="font-size: 0.7rem; font-weight: bold; border: 1px solid #ccc;">
🎵 {{ projeto.bpm }} BPM
</span>
</div>
{% else %}
<div class="mb-3" style="height: 24px;"></div>
{% endif %}
<div style="flex: 1;"></div>
<div class="tags is-centered is-gapless mb-0 mt-2" style="gap: 4px; justify-content: center;">
{% assign unique_list = project_samples_list | split: "," | uniq %}
{% for item in unique_list %}
{% if item != "" %}
{% assign item_display = item | split: '/' | last | split: '\\' | last %}
<span class="tag is-white sample-tag-item clickable-tag" data-value="{{ item }}"
style="font-size: 0.65rem; border: 1px solid #deeaf6; color: #5b7da3; padding: 0 6px; height: 1.5em; text-decoration: none; cursor: pointer;">
{{ item_display | truncate: 15 }}
</span>
{% endif %}
{% endfor %}
</div>
</div>
</a>
<footer class="card-footer" style="border-top: 1px solid #cfe8fc; background-color: #fff; border-radius: 0 0 12px 12px; overflow: hidden;">
<a href="#" class="card-footer-item js-open-modal" data-target-url="{{ page_url }}" data-modal-title="Detalhes: {{ projeto.file }}" data-full-btn-text="Ir para Página" data-full-btn-link="{{ page_url }}" style="color: #5b7da3; font-size: 0.8rem; font-weight: 600; border-right: 1px solid #eee; transition: background 0.2s;">Ver</a>
{% assign creation_url = '/mmpSearch/creation.html?project=' | append: projeto.file %}
{% assign embed_url = creation_url | append: '&embed=true' %}
<a href="#" class="card-footer-item js-open-modal" data-target-url="{{ embed_url }}" data-modal-title="Editor: {{ projeto.file }}" data-full-btn-text="Abrir Editor" data-full-btn-link="{{ creation_url }}" style="color: #3273dc; font-size: 0.8rem; font-weight: 600;">Editar</a>
</footer>
</div>
</div>
{% endif %}
{% endfor %}
</div>
</div>
</div>
</main>
<div id="preview-modal" class="modal">
<div class="modal-background"></div>
<div class="modal-card" style="width: 90%; max-width: 800px;">
<header class="modal-card-head" style="background-color: #f0f8ff; border-bottom: 1px solid #cfe8fc;">
<p class="modal-card-title" id="modal-title" style="color: #205081; font-weight: bold;">Preview</p>
<button class="delete" aria-label="close"></button>
</header>
<section class="modal-card-body p-0" style="height: 500px; background-color: #fff;">
<iframe id="preview-iframe" src="" style="width: 100%; height: 100%; border: none;"></iframe>
</section>
<footer class="modal-card-foot" style="justify-content: flex-end; background-color: #fff; border-top: 1px solid #cfe8fc;">
<button class="button" id="close-modal-btn">Fechar</button>
<a href="#" id="full-edit-btn" target="_blank" class="button is-info">Abrir</a>
</footer>
</div>
</div>
<style>
.browser-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 15px; }
.browser-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 15px; border: 1px solid transparent; border-radius: 8px; cursor: pointer; transition: all 0.2s; }
.browser-item:hover { background-color: #f0f8ff; border-color: #cfe8fc; transform: translateY(-2px); }
.browser-icon { font-size: 2.5rem; margin-bottom: 10px; color: #888; }
.browser-item.is-folder .browser-icon { color: #fce96a; text-shadow: 0 2px 2px rgba(0,0,0,0.1); }
.browser-item.is-file .browser-icon { color: #3273dc; }
.browser-item.is-unsupported .browser-icon { color: #ccc; }
.browser-name { font-size: 0.85rem; word-break: break-word; line-height: 1.3; color: #4a4a4a; }
.project-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(50, 115, 220, 0.15); border-color: #3273dc !important; background-color: #fff !important; }
.clickable-tag:hover { background-color: #e3effd !important; color: #3273dc !important; border-color: #3273dc !important; transform: scale(1.05); }
.tag.is-active-filter { background-color: #3273dc !important; color: #fff !important; border-color: #3273dc !important; font-weight: bold; box-shadow: 0 2px 5px rgba(50, 115, 220, 0.3); }
</style>
<script>
document.addEventListener('DOMContentLoaded', () => {
// === DADOS E CONFIGURAÇÃO ===
const manifestData = {{ site.data['samples-manifest'] | jsonify }};
const BASE_ASSETS_URL = "{{ '/src/samples/' | relative_url }}";
// === ELEMENTOS DO DOM ===
const browserView = document.getElementById('browser-view');
const breadcrumbList = document.getElementById('breadcrumb-list');
const btnHome = document.getElementById('btn-home');
const previewBar = document.getElementById('preview-bar');
const audioPlayer = document.getElementById('browser-audio-player');
const previewLabel = document.getElementById('preview-filename');
const projects = document.querySelectorAll('.project-item');
const filterDisplayName = document.getElementById('filter-display-name');
const clearFilterButton = document.getElementById('clearFilterButton');
let currentPathStack = [];
let currentFolderObj = manifestData;
// === FUNÇÕES DE UTILIDADE ===
// Remove extensão do arquivo (ex: "kick.wav" -> "kick")
function removeExtension(filename) {
return filename.replace(/\.[^/.]+$/, "");
}
// === LÓGICA DO NAVEGADOR DE ARQUIVOS ===
function getFolderByPath(pathArray) {
let folder = manifestData;
for (const dir of pathArray) {
if (folder[dir]) folder = folder[dir];
}
return folder;
}
function isAudioFile(filename) {
const ext = filename.split('.').pop().toLowerCase();
return ['wav', 'ogg', 'mp3', 'flac'].includes(ext);
}
function renderBreadcrumbs() {
breadcrumbList.innerHTML = '';
const liRoot = document.createElement('li');
if (currentPathStack.length === 0) liRoot.classList.add('is-active');
liRoot.innerHTML = `<a href="#">Raiz</a>`;
liRoot.onclick = (e) => { e.preventDefault(); navigateTo([]); };
breadcrumbList.appendChild(liRoot);
let accumulatedPath = [];
currentPathStack.forEach((folderName, index) => {
accumulatedPath.push(folderName);
const isLast = index === currentPathStack.length - 1;
const li = document.createElement('li');
if (isLast) li.classList.add('is-active');
const pathForClick = [...accumulatedPath];
li.innerHTML = `<a href="#">${folderName}</a>`;
if (!isLast) li.onclick = (e) => { e.preventDefault(); navigateTo(pathForClick); };
breadcrumbList.appendChild(li);
});
}
function renderBrowser() {
browserView.innerHTML = '';
const grid = document.createElement('div');
grid.className = 'browser-grid';
const folders = [];
const files = [];
Object.keys(currentFolderObj).forEach(key => {
if (key === '_isFile') return;
const item = currentFolderObj[key];
if (item._isFile) files.push(key);
else folders.push(key);
});
folders.sort();
files.sort();
folders.forEach(folderName => {
const el = document.createElement('div');
el.className = 'browser-item is-folder';
el.innerHTML = `<i class="fa-solid fa-folder browser-icon"></i><span class="browser-name">${folderName}</span>`;
el.onclick = () => navigateTo([...currentPathStack, folderName]);
grid.appendChild(el);
});
files.forEach(fileName => {
const isAudio = isAudioFile(fileName);
const el = document.createElement('div');
el.className = `browser-item ${isAudio ? 'is-file' : 'is-unsupported'}`;
let iconClass = isAudio ? 'fa-file-audio' : (fileName.endsWith('.ds') ? 'fa-sliders' : 'fa-file');
el.innerHTML = `<i class="fa-solid ${iconClass} browser-icon"></i><span class="browser-name">${fileName}</span>`;
if (isAudio) {
el.onclick = () => {
playFile(fileName);
filterBySample(fileName);
};
} else {
el.onclick = () => alert('Este arquivo não é um áudio reproduzível (preset/binário).');
}
grid.appendChild(el);
});
if (folders.length === 0 && files.length === 0) {
browserView.innerHTML = `<div class="has-text-centered has-text-grey p-5">Esta pasta está vazia.</div>`;
} else {
browserView.appendChild(grid);
}
}
function navigateTo(newPathArray) {
currentPathStack = newPathArray;
currentFolderObj = getFolderByPath(currentPathStack);
renderBreadcrumbs();
renderBrowser();
}
function playFile(fileName) {
const fullPath = BASE_ASSETS_URL + currentPathStack.join('/') + '/' + fileName;
previewBar.classList.remove('is-hidden');
previewLabel.textContent = fileName;
audioPlayer.src = fullPath;
audioPlayer.play().catch(e => console.log('Erro ao tocar:', e));
}
// === LÓGICA DE FILTRAGEM (ROBUSTA) ===
function filterBySample(sampleName) {
if (!sampleName) {
filterDisplayName.textContent = "(todos)";
projects.forEach(p => p.style.display = 'block');
document.querySelectorAll('.sample-tag-item').forEach(tag => tag.classList.remove('is-active-filter'));
return;
}
filterDisplayName.textContent = sampleName;
// Preparação do Alvo (Target)
const targetClean = sampleName.trim().toLowerCase();
const targetBase = removeExtension(targetClean); // Ex: "kick" (sem .wav)
console.log(`🔍 Buscando por: "${sampleName}" (Base: "${targetBase}")`);
let foundCount = 0;
projects.forEach(project => {
const projectSamplesStr = project.getAttribute('data-samples');
if (!projectSamplesStr) {
project.style.display = 'none';
return;
}
const projectSamples = projectSamplesStr.split(',');
// Verifica se ALGUM sample do projeto bate com o alvo (com ou sem extensão)
const hasMatch = projectSamples.some(s => {
const samplePathClean = s.trim().toLowerCase();
const sampleFileName = samplePathClean.split(/[/\\]/).pop(); // Pega nome do arquivo
const sampleBaseName = removeExtension(sampleFileName); // Remove extensão
// 1. Tenta match exato de nome (ex: kick.wav == kick.wav)
if (sampleFileName === targetClean) return true;
// 2. Tenta match de nome base (ex: kick.wav == kick.ogg)
if (sampleBaseName === targetBase && sampleBaseName !== "") return true;
return false;
});
if (hasMatch) {
project.style.display = 'block';
foundCount++;
// Destaca a tag correta dentro do card
const tags = project.querySelectorAll('.sample-tag-item');
tags.forEach(tag => {
const tagValClean = tag.dataset.value.trim().toLowerCase().split(/[/\\]/).pop();
const tagBase = removeExtension(tagValClean);
if(tagBase === targetBase) tag.classList.add('is-active-filter');
else tag.classList.remove('is-active-filter');
});
} else {
project.style.display = 'none';
}
});
console.log(`✅ Encontrados ${foundCount} projetos.`);
// Rola até os resultados se encontrou algo
if(foundCount > 0) {
document.getElementById('project-list').scrollIntoView({ behavior: 'smooth' });
}
}
// Inicialização
btnHome.onclick = () => navigateTo([]);
renderBreadcrumbs();
renderBrowser();
// Eventos para as tags nos cards
document.querySelectorAll('.sample-tag-item').forEach(tag => {
tag.addEventListener('click', function(e) {
e.preventDefault();
const val = this.dataset.value.split(/[/\\]/).pop();
filterBySample(val);
});
});
if(clearFilterButton) {
clearFilterButton.addEventListener('click', () => filterBySample(null));
}
// Leitura URL
const urlParams = new URLSearchParams(window.location.search);
const sampleParam = urlParams.get('sample');
if (sampleParam) filterBySample(sampleParam);
// Modal
const modal = document.getElementById('preview-modal');
const iframe = document.getElementById('preview-iframe');
const modalTitle = document.getElementById('modal-title');
const fullEditBtn = document.getElementById('full-edit-btn');
const closeButtons = document.querySelectorAll('.modal-background, .modal-card-head .delete, #close-modal-btn');
function openModal(url, title, btnText, btnLink) {
if(!modal) return;
modalTitle.textContent = title;
iframe.src = url;
fullEditBtn.textContent = btnText;
fullEditBtn.href = btnLink;
modal.classList.add('is-active');
document.documentElement.classList.add('is-clipped');
}
function closeModal() {
if(!modal) return;
modal.classList.remove('is-active');
document.documentElement.classList.remove('is-clipped');
iframe.src = "";
}
document.querySelectorAll('.js-open-modal').forEach(btn => {
btn.addEventListener('click', (e) => {
e.preventDefault();
openModal(btn.dataset.targetUrl, btn.dataset.modalTitle, btn.dataset.fullBtnText, btn.dataset.fullBtnLink);
});
});
iframe.addEventListener('load', () => { try {
const iframeDoc = iframe.contentDocument || iframe.contentWindow.document;
const style = iframeDoc.createElement('style');
style.textContent = `.tabs, .navbar, .sidebar-wrapper, .main-header { display: none !important; } .publication { padding-top: 0 !important; } body { background-color: #fff !important; }`;
iframeDoc.head.appendChild(style);
} catch(e){} });
closeButtons.forEach(el => el.addEventListener('click', closeModal));
document.addEventListener('keydown', (e) => { if (e.key === "Escape") closeModal(); });
});
</script>