Files
game-library/app/templates/results.html
Claude Agent 66ae831c36 Rebuild extraction pipeline infrastructure (Faza 0 prep)
Implements the approved plan to replace the broken regex/index-master
extraction with an LLM-subagent pipeline. Four parallel lanes:

Lane A — scripts/extract_common.py (PDF/docx/doc/pptx/html/zip, no
  max_pages truncation), normalize_sources.py, chunk_sources.py
  (~20pg chunks + overlap, manifest registry), activity_schema.json.
Lane B — app/config_taxonomy.py (16 fixed category slugs), schema
  rebuilt from scratch in app/models/ with content_type, language,
  source_files, source_excerpt, normalized_name, extraction_confidence,
  needs_review; FTS5 + 3 triggers extended with materials_list and
  skills_developed.
Lane C — build_database.py (--rebuild, atomic swap, schema + fuzzy
  source_excerpt validation, dedup with needs_review band),
  validate_extractions.py, review_queue.py, new run_extraction.py
  orchestrator, SUBAGENT_PROMPT.md.
Lane D — search.py content_type/language filters (default search
  excludes non-game content), E7 schema-compat audit; fixed a NULL
  keywords AttributeError in _boost_search_relevance.

Removes 8 orphaned/dead scripts and app/services/parser.py +
indexer.py. Adds tests/ (70 passing, 1 skipped — libreoffice absent).

Note: Lane D made one additive edit to app/models/database.py
(_update_category_counts) to surface content_type/language in
get_filter_options, outside its nominal lane boundary but after
Lane B completed.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-19 17:43:38 +00:00

247 lines
9.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "base.html" %}
{% block title %}Rezultate căutare - INDEX Sistem Jocuri{% endblock %}
{% block content %}
<div class="results-page">
<!-- Search form (compact version) -->
<form method="POST" action="{{ url_for('main.search') }}" class="search-form compact">
<div class="search-input-group">
<input
type="text"
name="search_query"
value="{{ search_query }}"
class="search-input"
placeholder="Caută activități..."
>
<button type="submit" class="search-button">Căutare</button>
</div>
{% if filters %}
<div class="filters-row">
{% if filters.category %}
<select name="category" class="filter-select compact">
<option value="">Toate categoriile</option>
{% for category in filters.category %}
<option value="{{ category }}" {% if applied_filters.category == category %}selected{% endif %}>
{{ display_names.get(category, category) }}
</option>
{% endfor %}
</select>
{% endif %}
{% if filters.content_type %}
<select name="content_type" class="filter-select compact">
<option value="">Doar jocuri și activități</option>
{% for content_type in filters.content_type %}
<option value="{{ content_type }}" {% if applied_filters.content_type == content_type %}selected{% endif %}>
{{ display_names.get(content_type, content_type) }}
</option>
{% endfor %}
</select>
{% endif %}
{% if filters.language %}
<select name="language" class="filter-select compact">
<option value="">Toate limbile</option>
{% for language in filters.language %}
<option value="{{ language }}" {% if applied_filters.language == language %}selected{% endif %}>
{{ display_names.get(language, language) }}
</option>
{% endfor %}
</select>
{% endif %}
{% if filters.age_group %}
<select name="age_group" class="filter-select compact">
<option value="">Toate vârstele</option>
{% for age_group in filters.age_group %}
<option value="{{ age_group }}" {% if applied_filters.age_group == age_group %}selected{% endif %}>
{{ age_group }}
</option>
{% endfor %}
</select>
{% endif %}
{% if filters.participants %}
<select name="participants" class="filter-select compact">
<option value="">Orice număr</option>
{% for participants in filters.participants %}
<option value="{{ participants }}" {% if applied_filters.participants == participants %}selected{% endif %}>
{{ participants }}
</option>
{% endfor %}
</select>
{% endif %}
{% if filters.duration %}
<select name="duration" class="filter-select compact">
<option value="">Orice durată</option>
{% for duration in filters.duration %}
<option value="{{ duration }}" {% if applied_filters.duration == duration %}selected{% endif %}>
{{ duration }}
</option>
{% endfor %}
</select>
{% endif %}
<button type="button" class="btn btn-secondary btn-sm" onclick="clearFilters()">
Resetează
</button>
</div>
{% endif %}
</form>
<!-- Results header -->
<div class="results-header">
<h2 class="results-title">
Rezultate căutare
{% if search_query %}pentru "{{ search_query }}"{% endif %}
</h2>
<p class="results-count">
{% if results_count > 0 %}
{{ results_count }} activități găsite
{% else %}
Nu au fost găsite activități
{% endif %}
</p>
<!-- Applied filters display -->
{% if applied_filters %}
<div class="applied-filters">
<span class="applied-filters-label">Filtre aplicate:</span>
{% for filter_key, filter_value in applied_filters.items() %}
<span class="applied-filter">
{{ filter_value }}
<a href="javascript:removeFilter('{{ filter_key }}')" class="remove-filter">×</a>
</span>
{% endfor %}
</div>
{% endif %}
</div>
<!-- Results list -->
{% if activities %}
<div class="results-list">
{% for activity in activities %}
<article class="activity-card">
<header class="activity-header">
<h3 class="activity-title">
<a href="{{ url_for('main.activity_detail', activity_id=activity.id) }}">
{{ activity.name }}
</a>
</h3>
<span class="activity-category">{{ display_names.get(activity.category, activity.category) }}</span>
{% if activity.needs_review %}
<span class="activity-badge needs-review" title="Această activitate necesită verificare">⚠ De verificat</span>
{% endif %}
</header>
<div class="activity-content">
<p class="activity-description">{{ activity.description }}</p>
<div class="activity-metadata">
{% if activity.get_age_range_display() != "toate vârstele" %}
<span class="metadata-item">
<strong>Vârsta:</strong> {{ activity.get_age_range_display() }}
</span>
{% endif %}
{% if activity.get_participants_display() != "orice număr" %}
<span class="metadata-item">
<strong>Participanți:</strong> {{ activity.get_participants_display() }}
</span>
{% endif %}
{% if activity.get_duration_display() != "durată variabilă" %}
<span class="metadata-item">
<strong>Durata:</strong> {{ activity.get_duration_display() }}
</span>
{% endif %}
{% if activity.get_materials_display() != "nu specificate" %}
<span class="metadata-item">
<strong>Materiale:</strong> {{ activity.get_materials_display() }}
</span>
{% endif %}
</div>
{% if activity.source_file %}
<div class="activity-source">
<small>Sursă: {{ activity.source_file }}</small>
</div>
{% endif %}
</div>
<footer class="activity-footer">
<a href="{{ url_for('main.activity_detail', activity_id=activity.id) }}"
class="btn btn-primary btn-sm">
Vezi detalii
</a>
</footer>
</article>
{% endfor %}
</div>
{% else %}
<div class="no-results">
<h3>Nu au fost găsite activități</h3>
<p>Încearcă să:</p>
<ul>
<li>Modifici termenii de căutare</li>
<li>Elimini unele filtre</li>
<li>Verifici ortografia</li>
<li>Folosești termeni mai generali</li>
</ul>
<a href="{{ url_for('main.index') }}" class="btn btn-primary">
Întoarce-te la căutare
</a>
</div>
{% endif %}
{% if error %}
<div class="error-message">
<strong>Eroare:</strong> {{ error }}
</div>
{% endif %}
</div>
{% endblock %}
{% block scripts %}
<script>
function clearFilters() {
// Clear search query and all filters
const form = document.querySelector('.search-form');
const inputs = form.querySelectorAll('input, select');
inputs.forEach(input => {
if (input.type === 'text') {
input.value = '';
} else if (input.tagName === 'SELECT') {
input.selectedIndex = 0;
}
});
// Submit the form to show all results
form.submit();
}
function removeFilter(filterKey) {
// Remove specific filter by setting its value to empty
const filterElement = document.querySelector(`[name="${filterKey}"]`);
if (filterElement) {
filterElement.value = '';
document.querySelector('.search-form').submit();
}
}
// Auto-submit on filter change
document.addEventListener('DOMContentLoaded', function() {
const filterSelects = document.querySelectorAll('.filter-select');
filterSelects.forEach(select => {
select.addEventListener('change', function() {
document.querySelector('.search-form').submit();
});
});
});
</script>
{% endblock %}