feat: système de signalement bug/idée + modal changelog avec limitations

- AppReport entity + migration (type, message, fingerprint SHA-256, created_at)
- POST /api/report avec rate-limit 5/heure par fingerprint IP
- ReportModal : formulaire type radio (bug/idée) + textarea 1 000 chars max
- ChangelogModal : fonctionnalités en prod, roadmap, 5 limitations honnêtes
- Deux boutons flottants bas-gauche (? info + ✉ signalement)
- Légende remontée pour éviter le chevauchement

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Gwadaking
2026-04-14 12:52:32 -04:00
parent 83690b94ab
commit fd476f50c2
12 changed files with 643 additions and 7 deletions

View File

@@ -0,0 +1,35 @@
<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20260410000000 extends AbstractMigration
{
public function getDescription(): string
{
return 'Crée la table app_report pour les retours bug/idée';
}
public function up(Schema $schema): void
{
$this->addSql("CREATE TABLE app_report (
id UUID NOT NULL,
type VARCHAR(10) NOT NULL,
message TEXT NOT NULL,
fingerprint VARCHAR(64) DEFAULT NULL,
created_at TIMESTAMP(0) WITHOUT TIME ZONE NOT NULL,
PRIMARY KEY (id)
)");
$this->addSql('CREATE INDEX idx_report_created_at ON app_report (created_at)');
$this->addSql("COMMENT ON COLUMN app_report.id IS '(DC2Type:uuid)'");
}
public function down(Schema $schema): void
{
$this->addSql('DROP TABLE app_report');
}
}