如何在嵌套sass映射(SCSS)中执行'if'语句?

时间:2015-03-04 10:09:08

标签: css if-statement sass each

由于我是萨斯(SCSS)的新手,我的野心似乎超过了我的能力。有人可以协助我完成以下任务。


背景

我们目前有一个图标系统,有两种不同的文件格式;一个是PNG,另一个是SVG。我们的一些图标有两种文件类型,有些具有PNG或SVG。我希望能够单独列出它们。

这是我的SCSS变量图。

$image-path: "http://www.mywebsite.com/assets/img/icons";
$icons-map: (
    tick: (
        filename:       icons_tick,
        has-png:            true,
        has-svg:            false,
    ),          
    secure: (
        filename:       icons_secure,
        has-png:            true,
        has-svg:            true,
    ),
    checkout: (
        filename:       icons_checkout,
        has-png:            false,
        has-svg:            true,
    ),
);

我是如何尝试列出来的......

/* Standard (PNG) Icons */
@each $icon-type, $icon-file in $icons-map {
    @if $has-png == "true" { 
        .icon-#{$icon-type}:after {
            background-image: url('#{$image-path}/png/#{$filename}.png');
        }
    }
}

/* Advanced SVG icons (progressive enhancement for newer mobiles, retina-style displays, etc) */
@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (     -o-min-device-pixel-ratio: 2/1),
only screen and (        min-device-pixel-ratio: 2),
only screen and (                min-resolution: 192dpi),
only screen and (                min-resolution: 2dppx) {
    @each $icon-type, $icon-file in $icons-map {
        @if $has-svg == "true" { 
            .icon.#{$icon-type}:after {
                background-image: url('#{$image-path}/svg/#{$filename}.svg');
            }
        }
    }
}

唯一的问题是它似乎没有计划......任何想法我都会出错吗?我假设我是如何循环嵌套地图的,或者我如何设置我的' if'言。

我希望期望输出是这样的;

/* Standard (PNG) Icons */
.icon.tick {
      background-image: url('http://www.mywebsite.com/assets/img/icons/png/icons_tick.png');
    }
    .icon.secure {
      background-image: url('http://www.mywebsite.com/assets/img/icons/png/icons_secure.png');
    }
/* Advanced SVG icons (progressive enhancement for newer mobiles, retina-style displays, etc) */
    @media only screen and (-webkit-min-device-pixel-ratio: 2),
        only screen and (     -o-min-device-pixel-ratio: 2/1),
        only screen and (        min-device-pixel-ratio: 2),
        only screen and (                min-resolution: 192dpi),
        only screen and (                min-resolution: 2dppx) {
    .icon.secure {
      background-image: url('http://www.mywebsite.com/assets/img/icons/svg/icons_secure.svg');
    }
    .icon.checkout {
      background-image: url('http://www.mywebsite.com/assets/img/icons/svg/icons_checkout.svg');
    }

}

不断收到错误 $ has-png $ has-svg是未定义的变量

感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

您应首先尝试使用map-get获取地图中的值,因为返回值(我的解决方案中的$file)是一个列表。下面是带有“变量”的简化版本,其中->表示它返回该类型,而:之后是您需要输入的类型,显示您的变量将代表什么以及如何然后你必须使用它们:

/* @each $type->string, $file->map in $icons-map:map */
@each $type, $file in $icons-map {
    /* if get-value-with-keyname-in-map($file:map, has-png:string)->boolean; is true */
    @if map-get($file, has-png) == true { 
        .icon-#{$type}:after {
            /* print get-value-with-keyname-in-map($file:map, filename:string)->string; */
            background-image: url('#{$image-path}/png/#{map-get($file, filename)}.png');
        }
    } 
}

请记住,您正在寻找keys而不是变量,唯一存在的变量是您定义的变量,这意味着has-pnghas-svg不是变量,它们是地图中的键(在这种情况下,地图为$file,即地图$type中的密钥$icons-map的值。此外,由于您将它们定义为booleans,因此无法使用== "true"进行比较,因为这意味着字符串,因此请检查它们是否为== true

我从中获得的输出是:

.icon-tick:after {
    background-image: url("http://www.mywebsite.com/assets/img/icons/png/icons_tick.png");
}
.icon-secure:after {
    background-image: url("http://www.mywebsite.com/assets/img/icons/png/icons_secure.png");
}

这似乎是你想要的。