1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-06 13:16:45 +02:00

feat(shortcodes): change shortcodes signature

This commit is contained in:
Awilum
2022-06-03 12:48:43 +03:00
parent a07e6c0138
commit acf6d5161c
2 changed files with 14 additions and 9 deletions

View File

@@ -22,17 +22,22 @@ use function parsers;
use function registry;
// Shortcode: registry
// Usage: (registry get:flextype.manifest.version)
// Usage: (registry get id:'flextype.manifest.version')
parsers()->shortcodes()->addHandler('registry', static function (ShortcodeInterface $s) {
if (! registry()->get('flextype.settings.parsers.shortcodes.shortcodes.registry.enabled')) {
return '';
}
$result = '';
$params = $s->getParameters();
if ($s->getParameter('get') != null && registry()->get('flextype.settings.parsers.shortcodes.shortcodes.registry.get.enabled') === true) {
if (collection(array_keys($params))->filter(fn ($v) => $v == 'get')->count() > 0 &&
isset($params['id']) &&
registry()->get('flextype.settings.parsers.shortcodes.shortcodes.registry.get.enabled') === true) {
$value = parsers()->shortcodes()->parse($s->getParameter('get'));
$default = ($s->getParameter('default') != null) ? parsers()->shortcodes()->parse($s->getParameter('default')) : null;
$result = registry()->get($value, $default);
$id = parsers()->shortcodes()->parse($params['id']);
$default = (isset($params['default'])) ? parsers()->shortcodes()->parse($params['default']) : null;
$result = registry()->get($id, $default);
return is_array($result) ? serializers()->json()->encode($result) : $result;
}

View File

@@ -3,13 +3,13 @@
declare(strict_types=1);
test('registry shortcode', function () {
expect(strings(parsers()->shortcodes()->parse("(registry get:'flextype.manifest')"))->isJson())->toBeTrue();
expect(parsers()->shortcodes()->parse("(registry get:'flextype.manifest.name')"))->toBe('Flextype');
expect(parsers()->shortcodes()->parse("(registry get:'flextype.manifest.foo' default:'Default')"))->toBe('Default');
expect(strings(parsers()->shortcodes()->parse("(registry get id:'flextype.manifest')"))->isJson())->toBeTrue();
expect(parsers()->shortcodes()->parse("(registry get id:'flextype.manifest.name')"))->toBe('Flextype');
expect(parsers()->shortcodes()->parse("(registry get id:'flextype.manifest.foo' default:'Default')"))->toBe('Default');
});
test('registry shortcode disabled', function () {
registry()->set('flextype.settings.parsers.shortcodes.shortcodes.registry.enabled', false);
expect(parsers()->shortcodes()->parse("(registry get:'flextype.manifest.name')"))->toBe('');
expect(parsers()->shortcodes()->parse("(registry get id:'flextype.manifest.name')"))->toBe('');
registry()->set('flextype.settings.parsers.shortcodes.shortcodes.registry.enabled', true);
});