AngularCLI集成material design自定义主题与总结

官方自定义主题指南:theming guide

一、官方指南说明:

典型样例:在src目录下新建material-design.scss

@import '~@angular/material/theming';
// Plus imports for other components in your app.
// Include the common styles for Angular Material. We include this here so that you only
// have to load a single css file for Angular Material in your app.
// Be sure that you only ever include this mixin once!
@include mat-core();
// Define the palettes for your theme using the Material Design palettes available in palette.scss
// (imported above). For each palette, you can optionally specify a default, lighter, and darker
// hue.
$candy-app-primary: mat-palette($mat-indigo);
$candy-app-accent:  mat-palette($mat-pink, A200, A100, A400);
// The warn palette is optional (defaults to red).
$candy-app-warn:    mat-palette($mat-red);
// Create the theme object (a Sass map containing all of the palettes).
$candy-app-theme: mat-light-theme($candy-app-primary, $candy-app-accent, $candy-app-warn);
// Include theme styles for core and each component used in your app.
// Alternatively, you can import and @include the theme mixins for each component
// that you are using.
@include angular-material-theme($candy-app-theme);

然后在angular-cli.json,styles配置增加刚刚的文件即可使用

说明:

自定义主题主要需要做两件事:

  1. 引入mat-core() sass mixin,它包含所有通用样式,适用于多数组件,需要注意的是它只能在应用中引入一次,多次引入可能导致项目奔溃
  2. 定义主题的数据结构,作为主题的可用色板。它可以通过mat-light-theme或者 mat-dark-theme函数创建,输出样式传递到angular-material-theme mixin,使其对所有组件有效
    主题文件不要引入到其他的scss文件中

自定义主题主要包含5中调色板:

  • A primary palette: colors most widely used across all screens and components.常规状态下的所有屏幕样式与组件样式
  • An accent palette: colors used for the floating action button and interactive elements.鼠标浮于上方或激活状态
  • A warn palette: colors used to convey error state.表示错误状态
  • A foreground palette: colors for text and icons.字体与按钮
  • A background palette: colors used for element backgrounds.元素背景

如何引入

  • 如果使用Angular CLI,它支持自动便宜scss文件,所以只需要在angular-cli.json文件的styles列表中引入scss文件即可
  • 使用node-sass编译scss成css文件,然后index.html文件中引入css文件即刻生效
    语法实例:
node-sass src/unicorn-app-theme.scss dist/unicorn-app-theme.css
注意:

主题文件不可再引入到scss文件中,如果你想在其他scss文件中引入主题文件中定义的对象(如$candy-app-theme),你可以将自定义对象独立出来见一个scss文件,然后将它们分别引入其他文件中,切不可将mat-core 与 angular-material-theme mixins重复引入scss文件中
如果想在组件中引入主题样式,需要遵循view encapsulation中的组件样式规范。

引入多个主题

#######样例

@import '~@angular/material/theming';
// Plus imports for other components in your app.

// Include the common styles for Angular Material. We include this here so that you only
// have to load a single css file for Angular Material in your app.
// **Be sure that you only ever include this mixin once!**
@include mat-core();

// Define the default theme (same as the example above).
$candy-app-primary: mat-palette($mat-indigo);
$candy-app-accent:  mat-palette($mat-pink, A200, A100, A400);
$candy-app-theme:   mat-light-theme($candy-app-primary, $candy-app-accent);

// Include the default theme styles.
@include angular-material-theme($candy-app-theme);


// Define an alternate dark theme.
$dark-primary: mat-palette($mat-blue-grey);
$dark-accent:  mat-palette($mat-amber, A200, A100, A400);
$dark-warn:    mat-palette($mat-deep-orange);
$dark-theme:   mat-dark-theme($dark-primary, $dark-accent, $dark-warn);

// Include the alternative theme styles inside of a block with a CSS class. You can make this
// CSS class whatever you want. In this example, any component inside of an element with
// `.unicorn-dark-theme` will be affected by this alternate dark theme instead of the default theme.
.unicorn-dark-theme {
  @include angular-material-theme($dark-theme);
}

说明:
对于父组件中包含unicorn-dark-theme类名的,将使用$dark-theme中定义的主题

多个主题中卫全局容器下的某个组件制定主题(如弹窗、首页中包含的组件)

你可以通过OverlayContainer向组件中注入主题类:

import {OverlayContainer} from '@angular/material';

@NgModule({
  // ...
})
export class UnicornCandyAppModule {
  constructor(overlayContainer: OverlayContainer) {
    overlayContainer.themeClass = 'unicorn-dark-theme';
  }
}

OverlayContainer的themeClass可以在任何时候更改

为特定的组件定制主题

angular-material-theme mixin是为所有组件提供样式支持,当你想为特定组件定制样式的时候,你可以:

@import '~@angular/material/theming';
// Plus imports for other components in your app.

// Include the common styles for Angular Material. We include this here so that you only
// have to load a single css file for Angular Material in your app.
// **Be sure that you only ever include this mixin once!**
@include mat-core();

// Define the theme.
$candy-app-primary: mat-palette($mat-indigo);
$candy-app-accent:  mat-palette($mat-pink, A200, A100, A400);
$candy-app-theme:   mat-light-theme($candy-app-primary, $candy-app-accent);

// Include the theme styles for only specified components.
@include mat-core-theme($candy-app-theme);
@include mat-button-theme($candy-app-theme);
@include mat-checkbox-theme($candy-app-theme);

还是需要include mat-core-theme mixin

其他定制主题的内容

theming-your-components.md

按照指南操作过程中遇到的问题

  1. 将scss文件引入angular-cli.json,不生效(不是路径问题),改用node-sass编译

  2. 安装node-sass的过程
    ···
    set SASS_BINARY_SITE=https://npm.taobao.org/mirrors/node-sass/
    cnpm i node-sass
    cnpm i -g node-sass
    ···
    安装成功后在cmd 输入 node-sass -v
    出现内容

    image.png

    则说明安装成功

  3. 输入手动编译命令报错:node-sass src/assets/scss/material-lake.scss src/assets/css/material-lake.css
    Error: File to import not found or unreadable: ~@angular/material/_theming.


    image.png

    解决办法是:改import的路径,将@import ~@angular/material/theming';改成@import '../../../node_modules/@angular/material/theming';(最好去检查下node_modules/@angular/material目录是否有_theming.scss文件),import的theming带不带下划线都不影响

  4. mat-palette的入参,必须是Material Design spec中制定的调色板名
    例如使用$mat-saphire 作为入参会提示编译错误:Undefined variable

    image.png

  5. 处理了以上几个问题,就可以成功编译了


    image.png

    然后再index.html中引入css文件<link rel="stylesheet" href="src/assets/css/material-lake.css">

  6. 通过在styles.css文件中import的方式引入主题scss文件,会提示scss加了注释导致项目编译报错


    image.png
  7. 关于语法
    theme.scss文件中$candy-app-primary、$candy-app-accent、$candy-app-warn可以随意替换,但数量不能超过三个,依次对应primary、accent、warn三种状态,不填或者在组件中入参的时候写错,则取上一个样式。

  8. 关于多个主题的使用
    可以通过组件父类的限制,拓展出多个(自定义)样式(默认是只有三种状态的样式)

项目地址:

https://github.com/LeventZheng/ngx-lake (主要关注如何自定义与整合,页面没来得及排版)

后续计划:

结合 https://material.angular.io/componentshttp://demos.creative-tim.com/material-dashboard-pro/examples/components/buttons.html 整理一套angular material组件库出来

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,456评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,370评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,337评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,583评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,596评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,572评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,936评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,595评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,850评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,601评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,685评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,371评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,951评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,934评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,167评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,636评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,411评论 2 342

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,398评论 25 707
  • 在现在的前端开发中,前后端分离、模块化开发、版本控制、文件合并与压缩、mock数据等等一些原本后端的思想开始...
    Charlot阅读 5,428评论 1 32
  • 零 都说生活真好玩,也对,因为生活总是玩我。 壹 陆晓离高三了。 穿着干净的校服,背微微有些弯曲。鼻梁...
    卖报的写手阅读 1,038评论 1 5
  • 又到了一年一度的牛郎织女相会的日子,一年365天,只有今天他们才能相见,从小我就听大人经常说起这个凄美动人的故...
    七月小七阅读 211评论 0 0
  • 在人间 文/一抹幽兰 两颗卑微的种子是可以自由恋爱的 风是不需要掌握方向,听谁指令的 尽管阳光推心置腹 也无法改变...
    一抹幽兰_ff68阅读 308评论 1 2