derralf/elemental-styling 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

derralf/elemental-styling

Composer 安装命令:

composer require derralf/elemental-styling

包简介

An extension to add some styling option to Elements. Suggested/required for some of my silverstripe-elemental element modules

README 文档

README

Adds some Styling options to Elemental Blocks.
(private project, no help/support provided)

Requirements

  • dnadesign/silverstripe-elemental ^4 || ^5

For a SilverStripe 4.3 and Elemental 4.x compatible version of this module, please see the 2.x release line.

Installation

  • Install a module via Composer

    composer require derralf/elemental-styling
    
  • Apply a desired extension on Block class (ie. ElementContent that ships with Core module or BaseElement to apply to all child elements) mysite/_config/elements.yml

    DNADesign\Elemental\Models\BaseElement:
    extensions:
        - Derralf\ElementalStyling\ElementEditlink
        - Derralf\ElementalStyling\StyledTitle
        - Derralf\ElementalStyling\StylingMarginBottom
        - Derralf\ElementalStyling\StylingMarginTop
        - Derralf\ElementalStyling\StylingCustomInlineStyles
    
    

Configuration Example

A basic/default config. Add this to your mysite/_config/elements.yml


---
Name: elementalstyling
---
DNADesign\Elemental\Models\BaseElement:
  #  disable in line editing
  inline_editable: false
  # use included holder template ElementHolderStyled.ss
  controller_template: 'ElementHolderStyled'
  # StyledTitle config
  title_tag_default: 'h2'
  title_tag_variants:
    '': 'default'
    h2 : 'H2'
    h3 : 'H3'
    h4 : 'H4'
  title_alignment_variants:
    text-left: 'left'
    text-center: 'centered'
    text-right: 'right'
  # StylingMarginBottom config
  margin_bottom_variants:
    mb-0: '0 (none)'
    mb-1: 'XS'
    mb-2: 'Small'
    mb-3: 'Medium'
    mb-4: 'Large'
    mb-5: 'XL'
  # StylingMarginTop config
  margin_top_variants:
    mt-0: '0 (none)'
    mt-1: 'XS'
    mt-2: 'Small'
    mt-3: 'Medium'
    mt-4: 'Large'
    mt-5: 'XL'

Override title tag variants or title alignment classes for child elements:

My\Namespaced\Element:
  title_tag_variants:
    '': 'default'
    h3 : 'H3'
    h4 : 'H4'
  title_alignment_variants:  
    text-center: 'centered'

My\Namespaced\OtherElement:
  title_tag_variants: null
  title_alignment_variants: null
  

Additionally you may apply the default styles for StylingMarginBottom Extensions:

# add default styles
DNADesign\Elemental\Controllers\ElementController:
  default_styles:
    - derralf/elemental-styling:client/dist/styles/elemental_styling_margin_bottom_variants.css

(also see Elemental Docs for how to disable the default styles)

Extensions

  • ElementEditlink
    Adds links to backend for editors (modified ElementHolder template necessary)
  • Derralf\ElementalStyling\StyledTitle
    Adds styling options to Element Title (tag, alignment) - to content tab. (modifications to the/your Element-templates will be necessary)
  • Derralf\ElementalStyling\StylingMarginBottom
    Add CSS selector (for bottom margin) to the Element / Element Holder - see Settings tab.
    (modified ElementHolder template necessary)
  • Derralf\ElementalStyling\StylingCustomInlineStyles
    Add inline CSS to the Element / Element Holder - see "Expert Settigs" tab.
    (modified ElementHolder template necessary)

See HolderTemplate for included modified ElementHOlder Template.
Also see Template Notes for StylingMarginBottom extension.

Template Notes

ElementEditlink

In your controller class like mysite/code/PageController.php:

Requirements::css('derralf/elemental-styling:client/dist/styles/elemental_editlink.css');
// based on jQuery
Requirements::javascript('derralf/elemental-styling:client/dist/js/elemental_editlink.js');
// non-jQuery
Requirements::javascript('derralf/elemental-styling:client/dist/js/elemental_editlink_vanilla.js');

StyledTitle

In your elements-templates replace

<h2>$Title</h2>(or similar)
with
<% include Derralf\\Elements\\ElementTitleStyled %>
or something like
<{$TitleTagVariant} class="element__title {$TitleAlignmentVariant}">$Title</{$TitleTagVariant}>

StylingMarginBottom

Default config uses bootstrap 4 spacing selectors.

Optionally you can use the basic stylings provided with this module in your controller class like mysite/code/PageController.php

    Requirements::css('derralf/elemental-styling:dist/styles/elemental_styling_margin_bottom_variants.css');

Use HolderTemplate or add class="{$MarginBottomVariant}" to your ElementHolder template.

StylingCustomInlineStyles

Use HolderTemplate or add style="{$CustomInlineStyles.ATT}" to your ElementHolder template.

Custom Holder Template / Controller Template

This extension contains a modified controller template. Activate it like this: controller_template: 'ElementHolderStyled' (see Configuration Example above)

The Template can be found here templates/DNADesign/Elemental/Layout/ElementHolderStyled.ss

If you don't use any of the above extensions that require that special template there is no need to set controller_template.

Altenatively you can also override the default ElementHolder.ss with a custom template in /themes/[YourTheme]/templates/DNADesign/Elemental/Layout/ElementHolder.ss

Further information: https://github.com/dnadesign/silverstripe-elemental#defining-your-own-html

derralf/elemental-styling 适用场景与选型建议

derralf/elemental-styling 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 4.45k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2018 年 08 月 29 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「silverstripe」 「Content Blocks」 「elemental」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 derralf/elemental-styling 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 derralf/elemental-styling 我们能提供哪些服务?
定制开发 / 二次开发

基于 derralf/elemental-styling 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 4.45k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 20
  • 依赖项目数: 0
  • 推荐数: 5

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 3
  • 开发语言: PHP

其他信息

  • 授权协议: BSD-3-Clause
  • 更新时间: 2018-08-29