Merged in feature/MAPG-117-map-selection-page (pull request #91)
MAPG-117 remove admin/maps and place a button to the maps page if admin is logged in
This commit is contained in:
		
						commit
						4b0057e3ba
					
				@ -23,7 +23,6 @@ Container::$routeCollection->group('game', function (MapGuesser\Routing\RouteCol
 | 
			
		||||
    $routeCollection->post('guess-json', '{mapId}/guess.json', [MapGuesser\Controller\GameFlowController::class, 'evaluateGuess']);
 | 
			
		||||
});
 | 
			
		||||
Container::$routeCollection->group('admin', function (MapGuesser\Routing\RouteCollection $routeCollection) {
 | 
			
		||||
    $routeCollection->get('admin.maps', 'maps', [MapGuesser\Controller\MapAdminController::class, 'getMaps']);
 | 
			
		||||
    $routeCollection->get('admin.mapEditor', 'mapEditor/{mapId}', [MapGuesser\Controller\MapAdminController::class, 'getMapEditor']);
 | 
			
		||||
    $routeCollection->get('admin.place', 'place.json/{placeId}', [MapGuesser\Controller\MapAdminController::class, 'getPlace']);
 | 
			
		||||
    $routeCollection->post('admin.saveMap', 'saveMap/{mapId}/json', [MapGuesser\Controller\MapAdminController::class, 'saveMap']);
 | 
			
		||||
 | 
			
		||||
@ -162,6 +162,14 @@ button.red:hover, button.red:focus, a.button.red:hover, a.button.red:focus {
 | 
			
		||||
    background-color: #7f2929;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
button.yellow, a.button.yellow {
 | 
			
		||||
    background-color: #e8a349;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
button.yellow:hover, button.yellow:focus, a.button.yellow:hover, a.button.yellow:focus {
 | 
			
		||||
    background-color: #c37713;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
input, select, textarea {
 | 
			
		||||
    background-color: #f9fafb;
 | 
			
		||||
    border: solid #c8d2e1 1px;
 | 
			
		||||
 | 
			
		||||
@ -27,7 +27,7 @@ div.mapItem>img {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
div.mapItem>div.inner {
 | 
			
		||||
    padding: 8px;
 | 
			
		||||
    padding: 10px 8px;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
div.mapItem>div.inner>div.info {
 | 
			
		||||
 | 
			
		||||
@ -37,13 +37,6 @@ class MapAdminController implements ISecured
 | 
			
		||||
        return $user !== null && $user->hasPermission(IUser::PERMISSION_ADMIN);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public function getMaps(): IContent
 | 
			
		||||
    {
 | 
			
		||||
        //TODO
 | 
			
		||||
 | 
			
		||||
        return new HtmlContent('admin/maps');
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public function getMapEditor(): IContent
 | 
			
		||||
    {
 | 
			
		||||
        $mapId = (int) $this->request->query('mapId');
 | 
			
		||||
 | 
			
		||||
@ -2,13 +2,22 @@
 | 
			
		||||
 | 
			
		||||
use MapGuesser\Database\Query\Select;
 | 
			
		||||
use MapGuesser\Database\RawExpression;
 | 
			
		||||
use MapGuesser\Interfaces\Authentication\IUser;
 | 
			
		||||
use MapGuesser\Interfaces\Database\IResultSet;
 | 
			
		||||
use MapGuesser\Interfaces\Request\IRequest;
 | 
			
		||||
use MapGuesser\Interfaces\Response\IContent;
 | 
			
		||||
use MapGuesser\Util\Geo\Bounds;
 | 
			
		||||
use MapGuesser\Response\HtmlContent;
 | 
			
		||||
 | 
			
		||||
class MapsController
 | 
			
		||||
{
 | 
			
		||||
    private IRequest $request;
 | 
			
		||||
 | 
			
		||||
    public function __construct(IRequest $request)
 | 
			
		||||
    {
 | 
			
		||||
        $this->request = $request;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public function getMaps(): IContent
 | 
			
		||||
    {
 | 
			
		||||
        $select = new Select(\Container::$dbConnection, 'maps');
 | 
			
		||||
@ -36,7 +45,8 @@ class MapsController
 | 
			
		||||
            $maps[] = $map;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        $data = ['maps' => $maps];
 | 
			
		||||
        $user = $this->request->user();
 | 
			
		||||
        $data = ['maps' => $maps, 'isAdmin' => $user !== null && $user->hasPermission(IUser::PERMISSION_ADMIN)];
 | 
			
		||||
        return new HtmlContent('maps', $data);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -3,7 +3,7 @@
 | 
			
		||||
<div class="header small">
 | 
			
		||||
    <div class="grid">
 | 
			
		||||
        <h1>
 | 
			
		||||
            <a href="/admin/maps" title="Back to maps">
 | 
			
		||||
            <a href="/maps" title="Back to playable maps">
 | 
			
		||||
                <img class="inline" src="/static/img/icon.svg">
 | 
			
		||||
                <span>MapGuesser</span>
 | 
			
		||||
            </a>
 | 
			
		||||
 | 
			
		||||
@ -1,7 +0,0 @@
 | 
			
		||||
<?php require ROOT . '/views/templates/main_header.php'; ?>
 | 
			
		||||
<?php require ROOT . '/views/templates/header.php'; ?>
 | 
			
		||||
<div class="main">
 | 
			
		||||
    <h2>Maps</h2>
 | 
			
		||||
    <p>TODO</p>
 | 
			
		||||
</div>
 | 
			
		||||
<?php require ROOT . '/views/templates/main_footer.php'; ?>
 | 
			
		||||
@ -31,6 +31,7 @@
 | 
			
		||||
                    <p class="small justify marginTop"><?= $map['description'] ?></p>
 | 
			
		||||
                </div>
 | 
			
		||||
                <a class="button fullWidth" href="game/<?= $map['id']; ?>" title="Play map '<?= $map['name'] ?>'">Play this map</a>
 | 
			
		||||
                <a class="button yellow fullWidth marginTop" href="admin/mapEditor/<?= $map['id']; ?>" title="Edit map '<?= $map['name'] ?>'">Edit this map</a>
 | 
			
		||||
            </div>
 | 
			
		||||
        <?php endforeach; ?>
 | 
			
		||||
        <?php if (count($maps) < 4): ?>
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user