becker-oss/json-styler
最新稳定版本:1.0.3
Composer 安装命令:
composer require becker-oss/json-styler
包简介
Component to properly style Json Strings.
README 文档
README
Requirements
- PHP 8.3+
- Laravel 12
- TailwindCSS
Installation
composer require becker-oss/json-styler
Using the Component
To use the component you have to pass the json as string to:
<x-json-styler :data="$json" />
If no theme is given , it will use the default theme of the config:
'default' => [
'braces' => 'darkorange',
'brackets' => 'darkgreen',
'keys' => 'purple',
'values' => 'darkgreen',
'background'=> 'bg-white',
'custom_keywords' => [
'ERROR' => 'red',
'issues' => 'red',
],
],
if the given theme is incomplete, it will merge the missing entrys from an duplicate entry of the default theme (hardcoded).
Customizing
Standard options are
- dark
- default (light mode)
To further customize themes and adding custom keywords:
php artisan vendor:publish --tag=laravelJsonStyler-config
Edit the Config file to your needs:
'default' => [
'braces' => 'darkorange',
'brackets' => 'darkgreen',
'keys' => 'purple',
'values' => 'darkgreen',
'background'=> 'bg-white',
'custom_keywords' => [
'ERROR' => 'red',
'issues' => 'red',
],
],
'adminTool' => [
'braces' => '#ff9800',
'brackets' => '#4caf50',
'keys' => '#9c27b0',
'values' => '#8bc34a',
'background'=> 'bg-gray',
'custom_keywords' => [
'ERROR' => '#f44336',
'issues' => '#e91e63',
],
],
You can now pass your theme to the component like this :
<x-json-styler :data="$json" theme="adminTool" />
or use a variable for changing themes like this :
<x-json-styler :data="$json" :theme="$theme" />
Finally
You can now customize the coloroutput of the Json Styler component and integrate it into your code.
统计信息
- 总下载量: 4
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-03-28