Remove not needed HtmlFormatter service

This commit is contained in:
Kacper Donat 2020-04-14 15:26:54 +02:00
parent be428859b7
commit 6a2c62470d
5 changed files with 48 additions and 10 deletions

View File

@ -52,7 +52,6 @@
}, },
"scripts": { "scripts": {
"auto-scripts": { "auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd" "assets:install %PUBLIC_DIR%": "symfony-cmd"
}, },
"post-install-cmd": [ "post-install-cmd": [

View File

@ -48,8 +48,6 @@ services:
Kadet\Highlighter\KeyLighter: Kadet\Highlighter\KeyLighter:
factory: ['@App\Service\KeyLighterVersioner', 'getKeyLighter'] factory: ['@App\Service\KeyLighterVersioner', 'getKeyLighter']
Kadet\Highlighter\Formatter\HtmlFormatter: ~
League\CommonMark\Environment: League\CommonMark\Environment:
factory: ['League\CommonMark\Environment', 'createGFMEnvironment'] factory: ['League\CommonMark\Environment', 'createGFMEnvironment']
calls: calls:

37
deploy.php Normal file
View File

@ -0,0 +1,37 @@
<?php
namespace Deployer;
require 'recipe/symfony4.php';
// Project name
set('application', 'keylighter.kadet.net');
// Project repository
set('repository', 'git@git.kadet.net:kadet.net/keylighter.git');
// [Optional] Allocate tty for git clone. Default value is false.
set('git_tty', true);
// Shared files/dirs between deploys
add('shared_files', []);
add('shared_dirs', ['var/keylighter']);
// Writable dirs by web server
add('writable_dirs', []);
// Hosts
host('kadet.net')
->stage('production')
->set('deploy_path', '~/www/{{application}}');
// Tasks
task('build', function () {
run('cd {{release_path}} && make');
});
// [Optional] if deploy fails automatically unlock.
after('deploy:failed', 'deploy:unlock');
// Migrate database before symlink new release.
//before('deploy:symlink', 'database:migrate');

View File

@ -2,7 +2,6 @@
namespace App\Controller; namespace App\Controller;
use Kadet\Highlighter\Formatter\HtmlFormatter;
use Kadet\Highlighter\KeyLighter; use Kadet\Highlighter\KeyLighter;
use Symfony\Component\HttpFoundation\JsonResponse; use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Request;
@ -13,10 +12,10 @@ class HighlightAction
private $keylighter; private $keylighter;
private $formatter; private $formatter;
public function __construct(KeyLighter $keylighter, HtmlFormatter $formatter) public function __construct(KeyLighter $keylighter)
{ {
$this->keylighter = $keylighter; $this->keylighter = $keylighter;
$this->formatter = $formatter; $this->formatter = $keylighter->getFormatter('html');
} }
/** /**

View File

@ -13,18 +13,23 @@ use function Kadet\Highlighter\highlight;
class KeyLighterExtension extends AbstractExtension class KeyLighterExtension extends AbstractExtension
{ {
private $formatter;
public function getFilters() public function getFilters()
{ {
$formatter = new HtmlFormatter(['prefix' => 'kl-']);
return [ return [
new TwigFilter('highlight', function($source, $language) use ($formatter) { new TwigFilter('highlight', function($source, $language) {
if (!$language instanceof Language) { if (!$language instanceof Language) {
$language = KeyLighter::get()->getLanguage($language); $language = KeyLighter::get()->getLanguage($language);
} }
return highlight($source, $language, $formatter); return highlight($source, $language, $this->getFormatter());
}, ['pre_escape' => 'html', 'is_safe' => ['html']]) }, ['pre_escape' => 'html', 'is_safe' => ['html']])
]; ];
} }
public function getFormatter()
{
return $this->formatter ?: $this->formatter = new HtmlFormatter();
}
} }