我正在使用SASS部分模块化我的样式表:
@import partials/header
@import partials/viewport
@import partials/footer
@import partials/forms
@import partials/list_container
@import partials/info_container
@import partials/notifications
@import partials/queues
有没有办法包括整个partials目录(它是一个充满SASS-partials的目录),如@import指南针或其他东西?
答案 0 :(得分:187)
如果您在Rails项目中使用Sass,则sass-rails gem https://github.com/rails/sass-rails具有glob导入功能。
@import "foo/*" // import all the files in the foo folder
@import "bar/**/*" // import all the files in the bar tree
在另一个答案中回答这个问题“如果你导入一个目录,你如何确定导入顺序?没有办法不会引入一些新的复杂程度。”
有些人认为将文件组织到目录中会降低复杂性。
我的组织的项目是一个相当复杂的应用程序。 17个目录中有119个Sass文件。这些大致对应于我们的视图,主要用于调整,繁重的工作由我们的自定义框架处理。对我来说,几行导入的目录比119行导入的文件名要复杂得多。
为了解决加载顺序,我们将需要首先加载的文件 - mixins,变量等 - 放在早期加载目录中。否则,加载顺序是并且应该是无关紧要的...如果我们正在做正确的事情。
答案 1 :(得分:88)
此功能永远不会成为Sass的一部分。一个主要原因是进口订单。在CSS中,最后导入的文件可以覆盖之前描述的样式。如果导入目录,如何确定导入顺序?没有办法不会引入一些新的复杂程度。通过保留导入列表(就像您在示例中所做的那样),您明确了导入顺序。如果您希望能够自信地覆盖在另一个文件中定义的样式或在一个文件中编写mixins并在另一个文件中使用它们,这是必不可少的。
要进行更全面的讨论,请在此处查看this closed feature request:
答案 2 :(得分:40)
答案 3 :(得分:32)
我在__partials__.scss
partials
的文件
|- __partials__.scss
|- /partials
|- __header__.scss
|- __viewport__.scss
|- ....
在__partials__.scss
中,我写了这些:
@import "partials/header";
@import "partials/viewport";
@import "partials/footer";
@import "partials/forms";
....
因此,当我想要导入整个partials
时,只需编写@import "partials"
即可。如果我想要导入其中任何一个,我也可以写@import "partials/header"
。
答案 4 :(得分:4)
您可以通过将sass文件放在要导入的文件夹中来使用一些解决方法,并导入该文件中的所有文件,如下所示:
文件路径:main / current / _current.scss
@import "placeholders";
@import "colors";
并在下一个dir级别文件中,您只需使用import for file从该目录导入所有文件:
文件路径:main / main.scss
@import "EricMeyerResetCSSv20";
@import "clearfix";
@import "current";
这样你就拥有相同数量的文件,就像导入整个目录一样。谨防顺序,最后来的文件将覆盖匹配的阶梯。
答案 5 :(得分:2)
您可能希望保留源订单,然后您可以使用此功能。
@import
'foo',
'bar';
我更喜欢这个。
答案 6 :(得分:2)
丹尼斯·贝斯特接受的回答是,"否则,如果我们正确地做事,那么加载订单就是并且应该是无关紧要的。"这完全是错误的。 如果你正确地做事,你可以利用css命令来帮助你减少特异性,让你保持简单和干净。
我组织导入的工作是在目录中添加_all.scss
文件,然后以正确的顺序导入其中的所有相关文件。
这样,我的主要导入文件将是简单和干净的,如下所示:
// Import all scss in the project
// Utilities, mixins and placeholders
@import 'utils/_all';
// Styles
@import 'components/_all';
@import 'modules/_all';
@import 'templates/_all';
如果需要,您也可以为子目录执行此操作,但我不认为您的css文件的结构应该太深。
虽然我使用这种方法,但我仍然认为在顺序无关紧要的情况下,应该存在一个glob导入,例如mixins甚至动画目录。
答案 7 :(得分:2)
这可能是一个古老的问题,但在2020年仍然有意义,因此我可能会发布一些更新。 自10月19日更新以来,我们通常应使用 @use 而不是 @import ,但这仅是一个说明。该问题的解决方案是使用索引文件来简化包括整个文件夹的操作。下面的示例。
// foundation/_code.scss
code {
padding: .25em;
line-height: 0;
}
// foundation/_lists.scss
ul, ol {
text-align: left;
& & {
padding: {
bottom: 0;
left: 0;
}
}
}
// foundation/_index.scss
@use 'code';
@use 'lists';
// style.scss
@use 'foundation';
https://sass-lang.com/documentation/at-rules/use#index-files
答案 8 :(得分:1)
http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html#import
看起来不像。
如果这些文件中的任何一个总是需要其他文件,那么让他们导入其他文件并仅导入顶级文件。如果它们都是独立的,那么我认为你将不得不像现在这样继续这样做。
答案 9 :(得分:1)
我也会搜索你问题的答案。对应答案,正确的导入所有功能都不存在。
这就是为什么我编写了一个python脚本,你需要将它放在你的scss文件夹的根目录中,如下所示:
- scss
|- scss-crawler.py
|- abstract
|- base
|- components
|- layout
|- themes
|- vender
然后它将遍历树并找到所有scss文件。一旦执行,它将创建一个名为main.scss
的scss文件#python3
import os
valid_file_endings = ["scss"]
with open("main.scss", "w") as scssFile:
for dirpath, dirs, files in os.walk("."):
# ignore the current path where the script is placed
if not dirpath == ".":
# change the dir seperator
dirpath = dirpath.replace("\\", "/")
currentDir = dirpath.split("/")[-1]
# filter out the valid ending scss
commentPrinted = False
for file in files:
# if there is a file with more dots just focus on the last part
fileEnding = file.split(".")[-1]
if fileEnding in valid_file_endings:
if not commentPrinted:
print("/* {0} */".format(currentDir), file = scssFile)
commentPrinted = True
print("@import '{0}/{1}';".format(dirpath, file.split(".")[0][1:]), file = scssFile)
输出文件的示例:
/* abstract */
@import './abstract/colors';
/* base */
@import './base/base';
/* components */
@import './components/audioPlayer';
@import './components/cardLayouter';
@import './components/content';
@import './components/logo';
@import './components/navbar';
@import './components/songCard';
@import './components/whoami';
/* layout */
@import './layout/body';
@import './layout/header';
答案 10 :(得分:0)
这对我来说很好
@import 'folder/*';
答案 11 :(得分:0)
您可以生成自动导入所有内容的SASS文件,我使用此Gulp任务:
concatFilenames = require('gulp-concat-filenames')
let concatFilenamesOptions = {
root: './',
prepend: "@import '",
append: "'"
}
gulp.task('sass-import', () => {
gulp.src(path_src_sass)
.pipe(concatFilenames('app.sass', concatFilenamesOptions))
.pipe(gulp.dest('./build'))
})
您还可以通过订购以下文件夹来控制导入顺序:
path_src_sass = [
'./style/**/*.sass', // mixins, variables - import first
'./components/**/*.sass', // singule components
'./pages/**/*.sass' // higher-level templates that could override components settings if necessary
]
答案 12 :(得分:-2)