visuellverstehen/statamic-classify
Composer 安装命令:
composer require visuellverstehen/statamic-classify
包简介
A useful helper to add CSS classes to all HTML tags generated by the bard editor.
README 文档
README
Classify
Classify is a useful helper to add CSS classes to all HTML tags generated by the Statamic Bard editor.
Installation
Requirements
- Statamic v5 || v6
- Laravel 11 || 12 || 13
- PHP 8.3+
Installation
Install Classify via composer:
composer require visuellverstehen/statamic-classify
Publish config file
The installation process will automatically publish the classify.php file into the config folder.
Usage
Configuration
To add or change style sets, simply add or change an array with classes that should be added to the HTML tag.
'default' => [ 'h1' => 'text-2xl', 'a' => 'link hover:text-blue', 'p' => 'mb-5', 'li p' => 'mb-2 ml-4', ],
This example uses TailwindCSS, but you can use whatever kind of CSS you want.
Example Output
<h1 class="text-2xl">A headline</h1> <p class="mb-5">Some text</p> <ul> <li><p class="mb-2 ml-4">A list item</p></li> <li><p class="mb-2 ml-4">A list item</p></li> <li><p class="mb-2 ml-4"><a class="link hover:text-blue" href="#">Click me</a></p></li> </ul> <p class="mb-5">Another text</p>
Usage
If you want to use the default style set, use the classify modifier.
{{ bard_text | classify }}
If you want to add multiple style sets, you can define those in the config file:
'default' => [ // ], 'blog' => [ 'a' => 'link hover:underline', 'li p' => 'ml-3 font-bold', 'p' => 'mb-5', ], // Antlers view {{ bard_text | classify:blog }}
If you want to get the defined classes for a certain element, you can get them straight from your config or use the classify tag:
{{ classify:h1 }}
// output: text-2xl
{{ classify element="li p" }}
// output: mb-2 ml-4
{{ classify:a styleset="blog" }}
// output: link hover:underline
Usage with Blade
If you wish to use classify with Blade instead of Antlers:
// no param is needed to use the 'default' styleset {!! Statamic::modify($bard_text)->classify() !!} {!! Statamic::modify($bard_text)->classify('blog') !!}
Nested selectors
You can nest your selectors to style elements differently in varying contexts.
Let's assume you want to style links inside lists differently to a general link, you can make use of nesting:
`ul li p a` => 'my-secial-css-class-for-nested-links-in-lists`,
`a` => `a-general-link-class`,
Classify will take care of the order, so you don't need to define the nested selector before the general selector.
Important: Direct child relationships
Note: Nested selectors use CSS direct child selectors (>), which means each element must be a direct child of the previous element in the selector.
For example:
'li p'matches<li><p>content</p></li>✅'ul p'does not match<ul><li><p>content</p></li></ul>❌ (becausepis not a direct child oful)
If you need to target elements with intermediate elements, define the complete path:
- Use
'ul li p'to match<ul><li><p>content</p></li></ul>✅
Working with CSS frameworks (like TailwindCSS)
Some CSS frameworks utilize JIT compiling, or have some other means of purging CSS classes from production builds to reduce file size. Your classify CSS classes may not appear anywhere else in your template files, as they will be added dynamically. To make sure that your classes will be considered for compiling, you have to include the classify config file as content:
module.exports = { content: [ // all of your content files // './pages/**/*.{html,js}' // './components/**/*.{html,js}', './config/classify.php', ], }
More about us
License
The MIT License (MIT). Please have a look at our license file for more information.
visuellverstehen/statamic-classify 适用场景与选型建议
visuellverstehen/statamic-classify 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 120.99k 次下载、GitHub Stars 达 20, 最近一次更新时间为 2020 年 08 月 19 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「css」 「addon」 「typography」 「v5」 「statamic」 「bard」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 visuellverstehen/statamic-classify 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 visuellverstehen/statamic-classify 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 visuellverstehen/statamic-classify 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A Twig extension to insert css as inline styles with a tag
Caching and compression for Twig assets (JavaScript and CSS).
PHP SVG font parser
Add a typography test page to your silverstripe website / application.
A Twig extension with typography filter
Wrapping words for a perfect typography
统计信息
- 总下载量: 120.99k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 20
- 点击次数: 36
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-08-19