Skip to content

Commit bf8c764

Browse files
committed
feat: Add assets, scripts and styles in /public dir
1 parent e7e04f9 commit bf8c764

18 files changed

+21
-33
lines changed

controllers/.placeholder

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

controllers/SomeController.php

-6
This file was deleted.

core/Controller.php

+8-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,10 @@ abstract class Controller {
55
/** @var \Saphpi\Middleware[] $middlewares */
66
protected array $middlewares = [];
77

8-
protected function render(string $name, array $props = []): string {
9-
return Application::view()->renderView($name, $props);
8+
protected Response $response;
9+
10+
protected function render(string $name, array $props = [], string $title): string {
11+
return Application::view()->renderView($name, $props, $title);
1012
}
1113

1214
protected function redirect(string $path): void {
@@ -25,4 +27,8 @@ protected function registerMiddlewares(Middleware...$middlewares): void {
2527
public function getMiddlewares(): array {
2628
return $this->middlewares;
2729
}
30+
31+
public function registerResponse(Response $response): void {
32+
$this->response = $response;
33+
}
2834
}

core/Response.php

+4
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,8 @@ public function setHttpStatus(int $code): void {
99
public function redirect(string $path): void {
1010
header("Location: $path");
1111
}
12+
13+
public function withFlash(mixed $value, string $key = 'message'): void {
14+
Application::session()->flash($value, $key);
15+
}
1216
}

core/Router.php

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ public function resolve(): ?string {
4949
if (!$instance[0] instanceof Controller) {
5050
throw new NotImplementException("{$instance[0]} does not implement Controller abstract");
5151
}
52+
$instance[0]->registerResponse($this->response);
5253
$this->checkForMiddlewares($instance[1], $instance[0]->getMiddlewares());
5354
}
5455

core/Validator.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
class Validator {
1010
private function __construct() {}
1111

12-
public static function validate(array $datas, array $attributeRules) {
12+
public static function validate(array $datas, array $attributeRules): array {
1313
$arr = [];
1414

1515
foreach ($attributeRules as $attribute => $rules) {

core/View.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,18 @@ public function error(\Throwable $e, bool $suppress): string {
1414
return $this->renderView("app>errors/$code", ['error' => $e->getMessage()]);
1515
}
1616

17-
public function renderView(string $name, array $props = []): string {
17+
public function renderView(string $name, array $props = [], string $title = 'Page'): string {
1818
if (count($template = explode('>', $name)) !== 1) {
19+
$layout = $this->getLayout($template[0], $title);
1920
$content = $this->getContent($template[1], $props);
20-
$layout = $this->getLayout($template[0]);
2121
return str_replace('<Content></Content>', $content, $layout);
2222
}
2323

2424
$view = $this->getContent($name, $props);
2525
return $view;
2626
}
2727

28-
private function getLayout(string $name): string {
28+
private function getLayout(string $name, string $title): string {
2929
ob_start();
3030
@require_once Application::$ROOT_DIR . "/views/{$name}.sapi.php";
3131
return ob_get_clean();

middlewares/.placeholder

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

middlewares/SomeMiddleware.php

-9
This file was deleted.

migrations/.placeholder

Whitespace-only changes.

migrations/0001_create_somethings_table.down.sql

-1
This file was deleted.

migrations/0001_create_somethings_table.up.sql

-4
This file was deleted.

models/.placeholder

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

models/Something.php

-6
This file was deleted.

public/assets/.placeholder

Whitespace-only changes.

public/scripts/.placeholder

Whitespace-only changes.

public/styles/.placeholder

Whitespace-only changes.

views/app.sapi.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<script src="https://cdn.tailwindcss.com"></script>
7-
<title><?=$title ?? 'Page'?></title>
7+
<title><?=$title?></title>
88
</head>
99
<Content></Content>
1010
</html>

0 commit comments

Comments
 (0)