ajout de tout

This commit is contained in:
sermandm 2025-03-23 14:06:44 +01:00
parent a6ff5feb3e
commit 8d92f52f92
33 changed files with 495 additions and 44 deletions

17
.idea/php.xml generated
View File

@ -10,12 +10,27 @@
<option name="highlightLevel" value="WARNING" />
<option name="transferred" value="true" />
</component>
<component name="PhpProjectSharedConfiguration" php_language_level="7.0">
<component name="PhpCodeSniffer">
<phpcs_settings>
<phpcs_by_interpreter asDefaultInterpreter="true" interpreter_id="4bd9484f-d78e-4315-b899-c673e4a83c70" timeout="30000" />
</phpcs_settings>
</component>
<component name="PhpProjectSharedConfiguration" php_language_level="8.4">
<option name="suggestChangeDefaultLanguageLevel" value="false" />
</component>
<component name="PhpStan">
<PhpStan_settings>
<phpstan_by_interpreter asDefaultInterpreter="true" interpreter_id="4bd9484f-d78e-4315-b899-c673e4a83c70" timeout="60000" />
</PhpStan_settings>
</component>
<component name="PhpStanOptionsConfiguration">
<option name="transferred" value="true" />
</component>
<component name="Psalm">
<Psalm_settings>
<psalm_fixer_by_interpreter asDefaultInterpreter="true" interpreter_id="4bd9484f-d78e-4315-b899-c673e4a83c70" timeout="60000" />
</Psalm_settings>
</component>
<component name="PsalmOptionsConfiguration">
<option name="transferred" value="true" />
</component>

View File

@ -7,6 +7,23 @@ spl_autoload_register(function ($className) {
'Portfolio\\Source\\Design\\Controller\\Home\\' => __DIR__ . '/../../source/design/controller/home/',
'Portfolio\\Source\\Design\\Controller\\Home\\Read\\' => __DIR__ . '/../../source/design/controller/home/read',
'Portfolio\\Source\\Design\\Controller\\About\\' => __DIR__ . '/../../source/design/controller/about/',
'Portfolio\\Source\\Design\\Controller\\About\\Read\\' => __DIR__ . '/../../source/design/controller/about/read',
'Portfolio\\Source\\Design\\Controller\\Project\\' => __DIR__ . '/../../source/design/controller/project/',
'Portfolio\\Source\\Design\\Controller\\Project\\Read\\' => __DIR__ . '/../../source/design/controller/project/read',
'Portfolio\\Source\\Design\\Controller\\Experience\\' => __DIR__ . '/../../source/design/controller/experience/',
'Portfolio\\Source\\Design\\Controller\\Experience\\Read\\' => __DIR__ . '/../../source/design/controller/experience/read',
'Portfolio\\Source\\Design\\Controller\\Tech\\' => __DIR__ . '/../../source/design/controller/tech/',
'Portfolio\\Source\\Design\\Controller\\Tech\\Read\\' => __DIR__ . '/../../source/design/controller/tech/read',
'Portfolio\\Source\\Design\\Controller\\Contact\\' => __DIR__ . '/../../source/design/controller/contact/',
'Portfolio\\Source\\Design\\Controller\\Contact\\Read\\' => __DIR__ . '/../../source/design/controller/contact/read',
'Portfolio\\Source\\Design\\Controller\\' => __DIR__ . '/../../source/design/controller/',
];
// Parcourir les namespaces définis pour trouver une correspondance

View File

@ -0,0 +1,11 @@
document.addEventListener("DOMContentLoaded", () => {
const menuToggle = document.getElementById("menu-toggle");
const navbar = document.getElementById("navbar");
// Ouvre et ferme le menu burger
menuToggle.addEventListener("click", () => {
navbar.classList.toggle("active");
const isExpanded = navbar.classList.contains("active");
menuToggle.setAttribute("aria-expanded", isExpanded.toString());
});
});

View File

@ -0,0 +1,122 @@
/* Styles de base */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
display: flex;
flex-direction: column;
min-height: 100vh;
overflow-x: hidden; /* Empêche le débordement horizontal */
}
header {
background-color: #333;
color: #fff;
display: flex;
justify-content: space-between; /* Aligne le logo et le menu burger */
align-items: center;
padding: 1rem;
position: relative;
width: 100%;
}
#logo h1 {
margin-left: 1rem;
text-align: left;
font-size: 1.5rem;
}
/* Bouton menu burger */
#menu-toggle {
display: none;
font-size: 1.8rem;
background: none;
border: none;
color: #fff;
cursor: pointer;
}
/* Navbar */
#navbar {
display: flex;
justify-content: center;
align-items: center;
width: auto;
margin-right: 1rem;
}
#navbar ul {
list-style: none;
display: flex;
gap: 2rem;
padding: 0;
margin: 0;
}
#navbar a {
color: #fff;
text-decoration: none;
font-weight: bold;
}
#navbar a:hover {
text-decoration: underline;
}
#navbar ul li a.active {
border-bottom: 2px solid #fff; /* Indique la page active */
}
/* Section principale */
section {
padding: 2rem;
text-align: center;
flex-grow: 1;
}
footer {
text-align: center;
padding: 1rem;
background-color: #333;
color: #fff;
width: 100%;
margin-top: auto;
}
/* Navbar en mode mobile */
@media (max-width: 980px) {
#menu-toggle {
display: block; /* Affiche le menu burger */
}
#navbar {
display: none; /* Cache la navbar par défaut */
position: absolute;
top: 60px; /* Position sous le header */
right: 0;
background-color: #333;
padding: 1rem;
flex-direction: column; /* Empile les liens */
width: 200px; /* Largeur du menu */
max-width: 100%; /* Empêche les débordements */
}
#navbar.active {
display: flex; /* Affiche la navbar lorsqu'elle est activée */
}
#navbar ul {
flex-direction: column; /* Les liens sont empilés */
gap: 1rem;
text-align: right;
}
#navbar a {
text-align: right;
}
}

View File

@ -10,4 +10,7 @@ $router = new Router($_GET['url']);
$router->get('/', 'Portfolio\Source\Design\Controller\Home\Index@index');
$router->get('/home/:id', 'Portfolio\Source\Design\Controller\Home\Read\Read@read');
$router ->run();
$router->get('/about', 'Portfolio\Source\Design\Controller\About\Index@index');
$router->get('/about/:id', 'Portfolio\Source\Design\Controller\About\Read\Read@read');
$router->run();

View File

@ -1,11 +0,0 @@
<?php
namespace Portfolio\Source\Design\Controller;
class Base
{
public function show(string $path, array $params = null)
{
}
}

View File

@ -0,0 +1,14 @@
<?php
namespace Portfolio\Source\Design\Controller\About;
use Portfolio\Source\Design\Controller\Base;
class Index extends Base
{
public function index(): void
{
// Affiche la vue portfolio/template/about/index.html dans le layout portfolio/template/base.html
$this->show('about.index');
}
}

View File

@ -0,0 +1,13 @@
<?php
namespace Portfolio\Source\Design\Controller\About\Read;
use Portfolio\Source\Design\Controller\Base;
class Read extends Base
{
public function read(int $id)
{
return $this->show('about.read.read', ['id' => $id]);
}
}

View File

@ -0,0 +1,44 @@
<?php
namespace Portfolio\Source\Design\Controller;
class Base
{
protected string $layout = 'portfolio/template/base.html';
public function show(string $path, array $params = null): void
{
// Conversion du chemin en fichier HTML
$viewPath = dirname(__DIR__, 3) . '/template/' . str_replace('.', '/', $path) . '.html';
if (!is_file($viewPath)) {
echo "Vue introuvable : $viewPath<br>";
print_r(scandir(dirname($viewPath)));
exit;
}
$viewContent = file_get_contents($viewPath);
// Remplacer les variables dynamiques dans la vue
if ($params) {
foreach ($params as $key => $value) {
$viewContent = str_replace('{{ ' . $key . ' }}', htmlspecialchars($value), $viewContent);
}
}
$layoutPath = dirname(__DIR__, 3) . '/template/base.html';
// Charger le layout principal
if (!file_exists($layoutPath)) {
throw new \Exception("Layout introuvable : $layoutPath");
}
$layoutContent = file_get_contents($layoutPath);
// Injecter le contenu de la vue dans le layout
$finalHtml = str_replace('{{ content }}', $viewContent, $layoutContent);
// Afficher le rendu final
echo $finalHtml;
}
}

View File

@ -0,0 +1,14 @@
<?php
namespace Portfolio\Source\Design\Controller\Contact;
use Portfolio\Source\Design\Controller\Base;
class Index extends Base
{
public function index(): void
{
// Affiche la vue portfolio/template/contact/index.html dans le layout portfolio/template/base.html
$this->show('contact.index');
}
}

View File

@ -0,0 +1,13 @@
<?php
namespace Portfolio\Source\Design\Controller\contact\Read;
use Portfolio\Source\Design\Controller\Base;
class Read extends Base
{
public function read(int $id)
{
return $this->show('contact.read.read', ['id' => $id]);
}
}

View File

@ -1,10 +0,0 @@
<?php
namespace portfolio\source\design\controller;
class sendContactController extends BaseController
{
public function sendContact() {
return $this->show('contact.send');
}
}

View File

@ -0,0 +1,14 @@
<?php
namespace Portfolio\Source\Design\Controller\Experience;
use Portfolio\Source\Design\Controller\Base;
class Index extends Base
{
public function index(): void
{
// Affiche la vue portfolio/template/experience/index.html dans le layout portfolio/template/base.html
$this->show('experience.index');
}
}

View File

@ -0,0 +1,13 @@
<?php
namespace Portfolio\Source\Design\Controller\Experience\Read;
use Portfolio\Source\Design\Controller\Base;
class Read extends Base
{
public function read(int $id)
{
return $this->show('experience.read.read', ['id' => $id]);
}
}

View File

@ -1,13 +1,14 @@
<?php
namespace Portfolio\source\design\controller\home;
namespace Portfolio\Source\Design\Controller\Home;
use Portfolio\Source\Design\Controller\Base;
class Index extends Base
{
public function index()
public function index(): void
{
return $this->show('home.index');
// Affiche la vue portfolio/template/home/index.html dans le layout portfolio/template/base.html
$this->show('home.index');
}
}

View File

@ -8,6 +8,6 @@ class Read extends Base
{
public function read(int $id)
{
return $this->show('home.read', compact(['id']));
return $this->show('home.read.read', ['id' => $id]);
}
}

View File

@ -0,0 +1,14 @@
<?php
namespace Portfolio\Source\Design\Controller\Project;
use Portfolio\Source\Design\Controller\Base;
class Index extends Base
{
public function index(): void
{
// Affiche la vue portfolio/template/project/index.html dans le layout portfolio/template/base.html
$this->show('project.index');
}
}

View File

@ -0,0 +1,13 @@
<?php
namespace Portfolio\Source\Design\Controller\Project\Read;
use Portfolio\Source\Design\Controller\Base;
class Read extends Base
{
public function read(int $id)
{
return $this->show('project.read.read', ['id' => $id]);
}
}

View File

@ -0,0 +1,14 @@
<?php
namespace Portfolio\Source\Design\Controller\Tech;
use Portfolio\Source\Design\Controller\Base;
class Index extends Base
{
public function index(): void
{
// Affiche la vue portfolio/template/tech/index.html dans le layout portfolio/template/base.html
$this->show('tech.index');
}
}

View File

@ -0,0 +1,13 @@
<?php
namespace Portfolio\Source\Design\Controller\Tech\Read;
use Portfolio\Source\Design\Controller\Base;
class Read extends Base
{
public function read(int $id)
{
return $this->show('tech.read.read', ['id' => $id]);
}
}

20
template/about/index.html Normal file
View File

@ -0,0 +1,20 @@
<header>
<div id="logo">
<h1>SERMAND Maxim</h1>
</div>
<button id="menu-toggle" aria-expanded="false">&#9776;</button>
<nav id="navbar">
<ul>
<li><a href="http://localhost/portfolio/">Accueil</a></li>
<li><a href="http://localhost/portfolio/about/" class="active">À propos</a></li>
<li><a href="http://localhost/portfolio/project/">Projets</a></li>
<li><a href="http://localhost/portfolio/experience/">Expériences</a></li>
<li><a href="http://localhost/portfolio/tech">Veilles technologiques</a></li>
<li><a href="http://localhost/portfolio/contact/">Contacts</a></li>
</ul>
</nav>
</header>
<main>
<h1>À propos</h1>
<p>Je suis Maxim, un développeur passionné par les nouvelles technologies et le développement d'applications.</p>
</main>

View File

@ -0,0 +1,2 @@
<h2>Détail de l'article</h2>
<p>Identifiant : {{ id }}</p>

View File

@ -1,25 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Title</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mon Portfolio</title>
<link rel="stylesheet" href="http://localhost/portfolio/public/asset/style/style.css">
</head>
<body>
<header>
</header>
<aside>
</aside>
<main>
{{ content }}
</main>
{{ content }}
<footer>
<p>&copy; SERMAND Maxim, 2025. Tous droits réservés.</p>
</footer>
<script src="http://localhost/portfolio/public/asset/script/script.js"></script>
</body>
</html>
</html>

View File

@ -0,0 +1,20 @@
<header>
<div id="logo">
<h1>SERMAND Maxim</h1>
</div>
<button id="menu-toggle" aria-expanded="false">&#9776;</button>
<nav id="navbar">
<ul>
<li><a href="http://localhost/portfolio/">Accueil</a></li>
<li><a href="http://localhost/portfolio/about/">À propos</a></li>
<li><a href="http://localhost/portfolio/project/">Projets</a></li>
<li><a href="http://localhost/portfolio/experience/">Expériences</a></li>
<li><a href="http://localhost/portfolio/tech">Veilles technologiques</a></li>
<li><a href="http://localhost/portfolio/contact/" class="active">Contacts</a></li>
</ul>
</nav>
</header>
<main>
<h1>À propos</h1>
<p>Je suis Maxim, un développeur passionné par les nouvelles technologies et le développement d'applications.</p>
</main>

View File

@ -0,0 +1,2 @@
<h2>Détail de l'article</h2>
<p>Identifiant : {{ id }}</p>

View File

@ -0,0 +1,20 @@
<header>
<div id="logo">
<h1>SERMAND Maxim</h1>
</div>
<button id="menu-toggle" aria-expanded="false">&#9776;</button>
<nav id="navbar">
<ul>
<li><a href="http://localhost/portfolio/">Accueil</a></li>
<li><a href="http://localhost/portfolio/about/">À propos</a></li>
<li><a href="http://localhost/portfolio/project/">Projets</a></li>
<li><a href="http://localhost/portfolio/experience/" class="active">Expériences</a></li>
<li><a href="http://localhost/portfolio/tech">Veilles technologiques</a></li>
<li><a href="http://localhost/portfolio/contact/">Contacts</a></li>
</ul>
</nav>
</header>
<main>
<h1>À propos</h1>
<p>Je suis Maxim, un développeur passionné par les nouvelles technologies et le développement d'applications.</p>
</main>

View File

@ -0,0 +1,2 @@
<h2>Détail de l'article</h2>
<p>Identifiant : {{ id }}</p>

20
template/home/index.html Normal file
View File

@ -0,0 +1,20 @@
<header>
<div id="logo">
<h1>SERMAND Maxim</h1>
</div>
<button id="menu-toggle" aria-expanded="false">&#9776;</button>
<nav id="navbar">
<ul>
<li><a href="http://localhost/portfolio/" class="active">Accueil</a></li>
<li><a href="http://localhost/portfolio/about/">À propos</a></li>
<li><a href="http://localhost/portfolio/project/">Projets</a></li>
<li><a href="http://localhost/portfolio/experience/">Expériences</a></li>
<li><a href="http://localhost/portfolio/tech/">Veilles technologiques</a></li>
<li><a href="http://localhost/portfolio/contact/">Contacts</a></li>
</ul>
</nav>
</header>
<main>
<h1>Bienvenue sur mon portfolio</h1>
<p>Voici la page d'accueil de l'application.</p>
</main>

View File

@ -1 +1,2 @@
<p>content</p>
<h2>Détail de l'article</h2>
<p>Identifiant : {{ id }}</p>

View File

@ -0,0 +1,20 @@
<header>
<div id="logo">
<h1>SERMAND Maxim</h1>
</div>
<button id="menu-toggle" aria-expanded="false">&#9776;</button>
<nav id="navbar">
<ul>
<li><a href="http://localhost/portfolio/">Accueil</a></li>
<li><a href="http://localhost/portfolio/about/">À propos</a></li>
<li><a href="http://localhost/portfolio/project/" class="active">Projets</a></li>
<li><a href="http://localhost/portfolio/experience/">Expériences</a></li>
<li><a href="http://localhost/portfolio/tech/">Veilles technologiques</a></li>
<li><a href="http://localhost/portfolio/contact/">Contacts</a></li>
</ul>
</nav>
</header>
<main>
<h1>À propos</h1>
<p>Je suis Maxim, un développeur passionné par les nouvelles technologies et le développement d'applications.</p>
</main>

View File

@ -0,0 +1,2 @@
<h2>Détail de l'article</h2>
<p>Identifiant : {{ id }}</p>

20
template/tech/index.html Normal file
View File

@ -0,0 +1,20 @@
<header>
<div id="logo">
<h1>SERMAND Maxim</h1>
</div>
<button id="menu-toggle" aria-expanded="false">&#9776;</button>
<nav id="navbar">
<ul>
<li><a href="http://localhost/portfolio/">Accueil</a></li>
<li><a href="http://localhost/portfolio/about/">À propos</a></li>
<li><a href="http://localhost/portfolio/project/">Projets</a></li>
<li><a href="http://localhost/portfolio/experience/">Expériences</a></li>
<li><a href="http://localhost/portfolio/tech" class="active">Veilles technologiques</a></li>
<li><a href="http://localhost/portfolio/contact/">Contacts</a></li>
</ul>
</nav>
</header>
<main>
<h1>À propos</h1>
<p>Je suis Maxim, un développeur passionné par les nouvelles technologies et le développement d'applications.</p>
</main>

View File

@ -0,0 +1,2 @@
<h2>Détail de l'article</h2>
<p>Identifiant : {{ id }}</p>