SMMP/build/viewer/view/machine/machine_groups.php

118 lines
2.8 KiB
PHP
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace viewer\view\machine;
use \viewer\core\Viewer;
use \api\core\ModuleRequest;
use \api\core\Authentification;
use \error\core\Error;
class machine_groups{
public static function template($type=null){
switch($type){
case 'machine': return "
<span>
@name
<span class='rem-member' data-member='@id_machine' data-cluster='@id_cluster'></span>
</span>";
break;
case 'machine_cluster': return "
<article class='inline-box' id='@id_machine_cluster'>
<span class='title' style='color: ".$_SESSION['WAREHOUSE']['theme']."'>@name</span>
<span class='link_remove' data-cluster='@id_machine_cluster'>@icon_remove</span>
<span class='link_edit' data-cluster='@id_machine_cluster'>@icon_edit</span>
<span class='code'>
@icon_type
<span>@count machines</span>
</span>
<span class='groups'>
@icon_group
@machines
<span class='add-member' data-cluster='@id_machine_cluster'>+</span>
</span>
</article>";
break;
default: return "
<input type='text' class='searchbar' placeholder='Recherche'>
@clusterlist";
break;
}
}
public static function view($params){
$view = '';
/* [1] On récupère la liste des utilisateurs
=========================================================*/
$request = new ModuleRequest('clusterDefault/getAll', [
'class' => 1
]);
$answer = $request->dispatch();
// si erreur, on affiche l'explicitation
if( $answer->error != Error::Success )
return Viewer::$htmlError;
$CLUSTERLIST = $answer->get('clusters');
foreach($CLUSTERLIST as $c=>$cluster){
$machinesReq = new ModuleRequest('clusterDefault/getMembers', [
'id_cluster' => $cluster['id_machine_cluster'],
'class' => 1
]);
$machinesRes = $machinesReq->dispatch();
/* (2) Gestion si erreur */
if( $machinesRes->error == Error::Success ) $machines = $machinesRes->get('members');
else $machines = [];
$CLUSTERLIST[$c]['count'] = count($machines);
$CLUSTERLIST[$c]['machines'] = Viewer::replaceMultiple(
self::template('machine'),
$machines,
[ 'id_cluster' => $cluster['id_machine_cluster'] ]
);
}
$view_cluster = Viewer::replaceMultiple(
self::template('machine_cluster'),
$CLUSTERLIST, [
'icon_remove' => file_get_contents( __PUBLIC__.'/src/static/sub-menu-side/remove.svg' ),
'icon_edit' => file_get_contents( __PUBLIC__.'/src/static/sub-menu-side/edit.svg' ),
'icon_type' => file_get_contents( __PUBLIC__.'/src/static/menu-side/device.svg' ),
'icon_group' => file_get_contents( __PUBLIC__.'/src/static/container/group.svg' ),
]);
return Viewer::replaceSingle(self::template(), [ 'clusterlist' => $view_cluster ]);
}
}
?>