aboutsummaryrefslogtreecommitdiff
path: root/src/view/MainBuilder.php
blob: 2510b084a242e7d1294d30088bf865b1b472a986 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?php
// src/view/MainBuilder.php

declare(strict_types=1);

use App\Entity\Article;
use App\Entity\Node;
use App\Entity\Presentation;

class MainBuilder extends AbstractBuilder
{
    static public bool $modif_mode = false;

    public function __construct(Node $node)
    {
        $this->html .= "<main>\n";

        // page article: cas particulier où l'article est greffé sur main
        if(Director::$page_path->getLast()->getEndOfPath() === 'article'){
            // pas censé arriver
            if(!isset($_GET['id'])){
                header('Location: ' . new URL);
                die;
            }

            // nouvel article
            if($node->getAdoptedChild() == null){
                $date = new \DateTime;
                $article = new Article('', $date);
                $new = new Node('new', [], 0, null, null, $article);
            }
            // modification
            else{
                $new = $node->getAdoptedChild();
            }
            //$builder_name = $this->snakeToPascalCase($new->getName()) . 'Builder';
            $builder_name = 'NewBuilder';
            $builder = new $builder_name($new);
            $this->html .= $builder->render();
        }
        else{
            // si action = "modif_page", affiche des commandes supplémentaires
            if($_SESSION['admin'] && self::$modif_mode){
                // ajouter un contrôle du champ in_menu
                $this->viewEditBlocks($node);
            }

            // dans tous les cas
            $this->useChildrenBuilder($node);
        }

        $this->html .= "</main>\n";
    }

    // mode modification de page uniquement
    private function viewEditBlocks($node): void
    {
        $options = '';
        foreach(Blocks::$blocks as $key => $value){
            $options .= '<option value= "' . $key . '">' . $value . "</option>\n";
        }

        $head_node = null;
        foreach(ViewController::$root_node->getChildren() as $first_level_node){
            if($first_level_node->getName() === 'head'){
                $head_node = $first_level_node; // normalement c'est le 1er enfant
                break;
            }
        }
        
        // ceci pourrait être déplacé au début des blocs
        $bloc_edit = '';
        foreach($node->getChildren() as $child_node){
            ob_start();
            require self::VIEWS_PATH . 'modify_block.php';
            $bloc_edit .= ob_get_clean();
        }

        ob_start();
        require self::VIEWS_PATH . 'modify_page.php';
        $this->html .= ob_get_clean();
    }

    // utilisée dans modify_block.php
    private function makePresentationOptions(string $presentation): string
    {
        $options = '';
        foreach(Blocks::$presentations as $key => $value){
            $options .= '<option value="' . $key . '" ' . ($presentation === $key ? 'selected' : '') . '>' . $value . '</option>';
        }
        return $options;
    }
}