Prepares a view executable by initializing everything which is needed.
\Drupal\views\ViewExecutable $view: The executable to prepare.
protected function prepareView(ViewExecutable $view) {
$view
->setDisplay();
$view
->initStyle();
$view
->initHandlers();
$view
->initQuery();
}