<?php

use yii\helpers\Html;
use yii\grid\GridView;
use yii\data\ArrayDataProvider;
use yii\debug\panels\ConfigPanel;

/**
 * @var \yii\web\View $this
 * @var array $manifest
 * @var \yii\debug\models\search\Debug $searchModel
 * @var ArrayDataProvider $dataProvider
 */

$this->title = 'Yii Debugger';
?>
<div class="default-index">


    <div id="yii-debug-toolbar" class="yii-debug-toolbar-top">
        <div class="yii-debug-toolbar-block title">
            <a href="#">
                <img width="29" height="30" alt="" src="<?= \yii\debug\Module::getYiiLogo() ?>">
                Yii Debugger
            </a>
        </div>
        <?php foreach ($panels as $panel): ?>
            <?= $panel->getSummary() ?>
        <?php endforeach; ?>
	</div>

	<div class="container">
		<div class="row">
			<h1>Available Debug Data</h1>

<?php

$timeFormatter = extension_loaded('intl') ? Yii::createObject(['class' => 'yii\i18n\Formatter']) : Yii::$app->formatter;

echo GridView::widget([
	'dataProvider' => $dataProvider,
	'filterModel' => $searchModel,
	'rowOptions' => function ($model, $key, $index, $grid) use ($searchModel) {
		$dbPanel = $this->context->module->panels['db'];

		if ($searchModel->isCodeCritical($model['statusCode']) || $dbPanel->isQueryCountCritical($model['sqlCount'])) {
			return ['class'=>'danger'];
		} else {
			return [];
		}
	},
	'columns' => [
		['class' => 'yii\grid\SerialColumn'],
		[
			'attribute' => 'tag',
			'value' => function ($data) {
				return Html::a($data['tag'], ['view', 'tag' => $data['tag']]);
			},
			'format' => 'html',
		],
		[
			'attribute' => 'time',
			'value' => function ($data) use ($timeFormatter) {
				return $timeFormatter->asDateTime($data['time'], 'short');
			},
		],
		'ip',
		[
			'attribute' => 'sqlCount',
			'label' => 'Total queries',
			'value' => function ($data) {
				$dbPanel = $this->context->module->panels['db'];

				if ($dbPanel->isQueryCountCritical($data['sqlCount'])) {

					$content = Html::tag('b', $data['sqlCount']) . ' ' . Html::tag('span', '', ['class' => 'glyphicon glyphicon-exclamation-sign']);
					return Html::a($content, ['view', 'panel' => 'db', 'tag' => $data['tag']], [
						'title' => 'Too many queries. Allowed count is ' . $dbPanel->criticalQueryThreshold,
					]);

				} else {
					return $data['sqlCount'];
				}
			},
			'format' => 'html',
		],
		[
			'attribute' => 'method',
			'filter' => ['get' => 'GET', 'post' => 'POST', 'delete' => 'DELETE', 'put' => 'PUT', 'head' => 'HEAD']
		],
		[
			'attribute'=>'ajax',
			'value' => function ($data) {
				return $data['ajax'] ? 'Yes' : 'No';
			},
			'filter' => ['No', 'Yes'],
		],
		[
			'attribute' => 'url',
			'label' => 'URL',
		],
		[
			'attribute' => 'statusCode',
			'filter' => [200 => 200, 404 => 404, 403 => 403, 500 => 500],
			'label' => 'Status code'
		],
	],
]); ?>
		</div>
	</div>
</div>