yii\elasticsearch\DebugPanel::getDetail PHP Method

getDetail() public method

public getDetail ( )
    public function getDetail()
    {
        $timings = $this->calculateTimings();
        ArrayHelper::multisort($timings, 3, SORT_DESC);
        $rows = [];
        $i = 0;
        foreach ($timings as $logId => $timing) {
            $duration = sprintf('%.1f ms', $timing[3] * 1000);
            $message = $timing[1];
            $traces = $timing[4];
            if (($pos = mb_strpos($message, "#")) !== false) {
                $url = mb_substr($message, 0, $pos);
                $body = mb_substr($message, $pos + 1);
            } else {
                $url = $message;
                $body = null;
            }
            $traceString = '';
            if (!empty($traces)) {
                $traceString .= Html::ul($traces, ['class' => 'trace', 'item' => function ($trace) {
                    return "<li>{$trace['file']}({$trace['line']})</li>";
                }]);
            }
            $ajaxUrl = Url::to(['elasticsearch-query', 'logId' => $logId, 'tag' => $this->tag]);
            \Yii::$app->view->registerJs(<<<JS
\$('#elastic-link-{$i}').on('click', function () {
    var result = \$('#elastic-result-{$i}');
    result.html('Sending request...');
    result.parent('tr').show();
    \$.ajax({
        type: "POST",
        url: "{$ajaxUrl}",
        success: function (data) {
            \$('#elastic-time-{$i}').html(data.time);
            \$('#elastic-result-{$i}').html(data.result);
        },
        error: function (jqXHR, textStatus, errorThrown) {
            \$('#elastic-time-{$i}').html('');
            \$('#elastic-result-{$i}').html('<span style="color: #c00;">Error: ' + errorThrown + ' - ' + textStatus + '</span><br />' + jqXHR.responseText);
        },
        dataType: "json"
    });

    return false;
});
JS
, View::POS_READY);
            $runLink = Html::a('run query', '#', ['id' => "elastic-link-{$i}"]) . '<br/>';
            $rows[] = <<<HTML
<tr>
    <td style="width: 10%;">{$duration}</td>
    <td style="width: 75%;"><div><b>{$url}</b><br/><p>{$body}</p>{$traceString}</div></td>
    <td style="width: 15%;">{$runLink}</td>
</tr>
<tr style="display: none;"><td id="elastic-time-{$i}"></td><td colspan="3" id="elastic-result-{$i}"></td></tr>
HTML;
            $i++;
        }
        $rows = implode("\n", $rows);
        return <<<HTML
<h1>Elasticsearch Queries</h1>

<table class="table table-condensed table-bordered table-striped table-hover" style="table-layout: fixed;">
<thead>
<tr>
    <th style="width: 10%;">Time</th>
    <th style="width: 75%;">Url / Query</th>
    <th style="width: 15%;">Run Query on node</th>
</tr>
</thead>
<tbody>
{$rows}
</tbody>
</table>
HTML;
    }