ttree/ress
Composer 安装命令:
composer require ttree/ress
包简介
Ttree Responsive Web Design with Server-Side Component
README 文档
README
Description
Responsive Web Design is really really trendy (and mandatory) today. But in some cases it's not the best solution.
Most responsive website serve exactly the same amount of bits to desktop, tablet or mobile user. Many mobile user will leave your website if the loading time is to long. Or sometimes your design need a different markup to support your design decisions.
If you are intersted by this topics, you can read those articles:
- You May Be Losing Users If Responsive Web Design Is Your Only Mobile Strategy
- Improve Mobile Support With Server-Side-Enhanced Responsive Design
- RESS: Responsive Design + Server Side Components
What's include in this package ?
This package include the library MobileDetect and extend the Action Request class with two new methods:
- ActionRequest::isMobile()
- ActionRequest::isTablet()
You can use those methods in your own controller, Fusion prototypes, ...
No magic everything is configurable
Tweak a Fusion prototype to change the rendering by device type
prototype(Your.Package.CustomElement) < prototype(Neos.Fusion:Case) {
default {
condition = ${request.mobile}
itemRenderer = Your.Package.CustomElementDefault
}
default {
condition = true
itemRenderer = Your.Package.CustomElementDefault
}
@cache {
mode = 'dynamic'
entryIdentifier {
node = ${node}
}
entryDiscriminator = ${request.mobile : 'mobile' ? 'default'}
context {
1 = 'node'
2 = 'documentNode'
}
entryTags {
1 = ${'Node_' + node.identifier}
}
}
}
By using the dynamic caching mode you don't need to configure the upper cache segments.
Completly different markup for Mobile, Tablet & Desktop
You can override your root Fusion conditions to select different rendering for different type of client:
root {
mobile {
@position = 'before default'
condition = ${request.mobile && Configuration.setting('Ttree.Ress.enable.mobile') == true}
type = 'Your.Package:MobilePage'
}
tablet {
@position = 'before default'
condition = ${request.tablet && Configuration.setting('Ttree.Ress.enable.tablet') == true}
type = 'Your.Package:TabletPage'
}
@cache {
entryIdentifier {
mobile = ${request.mobile && Configuration.setting('Ttree.Ress.enable.mobile') == true ? 'mobile' : ''}
tablet = ${request.tablet && Configuration.setting('Ttree.Ress.enable.tablet') == true ? 'tablet' : ''}
}
}
}
In this example the root cache entry identifier are configured correctly for mobile and table cache. Please make sure to configure your other cache segments correctly.
Sponsors & Contributors
The development of this package is sponsored by ttree (https://ttree.ch) and techniconcept (https://techniconcept.ch).
ttree/ress 适用场景与选型建议
ttree/ress 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 161 次下载、GitHub Stars 达 5, 最近一次更新时间为 2014 年 07 月 23 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 ttree/ress 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 ttree/ress 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 161
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 5
- 点击次数: 7
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-07-23