访问角度2组件中的bootstrap scss变量

时间:2016-10-16 11:41:09

标签: angular sass

我正在开发一个使用Angular CLI构建的新Angular2项目,并已将项目配置为使用SCSS。我已将Bootstrap 4成功加载到我的styles.scss文件中但是如果我尝试访问任何Bootstrap(或我在styles.scss中定义的变量,我会得到Undefined Variable构建错误。< / p>

组件的样式文件是否在styles angular-cli.json节点的主条目之前编译?我怎样才能使在该全局级别定义的任何变量可用于应用程序中的所有组件?谢谢!

角cli.json

"apps": [
  {
    ...
    "styles": [
      "styles/styles.scss"
    ],
    ...
  }
]

styles.scss

// Bootstrap
$enable-flex: true; // Enable Flexbox mode
@import "../../node_modules/bootstrap/scss/bootstrap";

组件

.navbar {
  background: $brand-primary; // Undefined variable here
}

3 个答案:

答案 0 :(得分:24)

仅仅因为您将引导程序4导入styles.scss并不意味着您的组件上的.scss个文件可以访问该文件。

在你的component.scss上,你必须导入Bootstrap变量:

@import '~bootstrap/scss/_variables.scss';

.navbar {
  background: $brand-primary; // No more Undefined variable here
}

说明

很多人对此感到困惑,你不应该将bootstrap.scss导入你的组件,你应该只导入你需要的东西。

如果仔细观察the source code of bootstrap.scss,他们会将所有内容分隔在不同的文件中。您有mixins文件夹和_variables.scss文件。这些应该是您在组件上导入的唯一内容,以避免CSS重复。

  

这会增加我的包大小,在每个组件上导入这些东西吗?

不,它不会。为什么? mixinsvariables是特定的(至少目前为止),所以当您将所有变量导入到您的组件中时,如下所示:

@import '~bootstrap/scss/_variables.scss';

.navbar {
  background: $brand-primary;
}

它的输出CSS将是:

.navbar {
  background: #007bff;
}

编译成CSS后,其余变量将被丢弃。

答案 1 :(得分:4)

有些人在每个组件@import中建议variables.scss .scss,但我发现这有点混乱。这样做对我们公司的CSS架构方式也不起作用。我最终朝这个方向前进,使我能够使用变量,mixins,以及扩展样式。这也允许我在一个位置管理所有CSS。

我目前正在开发一个由Angular2 CLI生成的项目。所以有一个主要的style.scss

我能够实现此目的的另一种方法是执行以下操作:

  1. styleUrls文件中删除app.component.ts

    @Component({
        selector: 'app-root',
        templateUrl: './app.component.html'
        // styleUrls: ['./app.component.scss']
    });
    
  2. 我在主styles.scss中管理所有较少的文件。所以我目前的设置看起来像:

    // Bootstrap
    @import "../node_modules/bootstrap-less/bootstrap/index";
    
    // Company Branding
    @import "theme/index";
    
    // Components
    @import "app/app.component.scss";
    @import "app/search/search.component.scss";
    
  3. 希望这种替代解决方案对某人有所帮助。

答案 2 :(得分:3)

创建一个_colors.scss文件,复制其中的所有颜色变量并将该文件导入component.scss文件中。