Creating variable groups in Sass
Asked Answered
H

4

7

On the site I'm working on we were using Scaffold, which is a PHP-based system similar to Sass. It also can process Sass functions\files. Unfortunately that system is now abandonware, and we are looking on a way to move completely to Sass. There is one big feature with Scaffold though that I'm not finding a way to port to Sass, the variable groups.

Variable in Scaffold can be organized in groups and used with a point-separated markup. For example I would define them as:

@variables vargroup1{
    variable1: ####;
    variable2: ####;
    variable3: ####;
    variable4: ####;
}

And later use on the code as, for example.

body{ width: vargroup1.variable1; margin: vargroup1.variable2 + 10;}

This helps development a lot, since you can group together variables from a system and reading the CSS files you can easily know what to reference. I didn't find anything like that on the Sass documentation, anyone knows if it is possible? Or if there is anyway using Mixins to do this?

Thanks

Hunker answered 20/3, 2012 at 0:11 Comment(1)
Does this answer your question? SASS - get map item value by item indexLinstock
S
5

There is no equivalent in Sass. But I can think in two workarounds:

1) Sass lists and its related list functions.

Your code could look like the following:

$variables = 40px 30px 20px 10px;

body {width: nth($variables, 1); margin: nth($variables, 2) + 10;}

It's not the same because list indexes can't be strings, so you haven't any way to name your variables.

2) Define a custom function. Look at Function Directives section in Sass reference

@function variables($variable_name) {
  @if ($variable_name == 'variable1') {
    @return 40px;
  } @else if ($variable_name == 'variable2') {
    @return 30px;
  }
}

body {width: variables('variable_1'); margin: variables('variable_2') + 10;}

This way is less intuitive and uglier but you can 'name your variables'.

Savour answered 21/3, 2012 at 15:38 Comment(3)
Thanks for the answer mate, I feared as much.Hunker
Your are welcome. It's a pity there is no an exact equivalent.Savour
@WaitingforDev... Can you update this answer that was accepted over a decade ago before Sass maps existed?Linstock
H
5

I came across this somewhat clunky solution (see Chris Eppstein's reply) using zip and index. Apparently a maintainer of SASS added these built-in functions in response to a similar question.

To quote his reply:

$border-names: a, b, c;
$border-widths: 1px, 1px, 2px;
$border-styles: solid, dashed, solid;
$border-colors: red, green, blue;
$borders: zip($border-widths, $border-styles, $border-colors);

@function border-for($name) {
   @return nth($borders, index($border-names, $name))
}

@each $name in $border-names {
  .border-#{$name} {
    border: border-for($name);
  }
}

Would generate:

.border-a { border: 1px solid red; }
.border-b { border: 1px dashed green; }
.border-c { border: 2px solid blue; }

The "naming your variables" comes from the list "-names" at the top; you then use the index of a desired variable name from that variable list to get the nth value from another variable lists. zip is used to mush separate lists together, so that you can retrieve the same index from all lists at the same time. Wrapping that behavior in a function makes it easier to retrieve a set.

Hagy answered 21/9, 2012 at 3:42 Comment(2)
hmm...multidimensional arrays seem nicer -- see SASS @each with multiple variables and the "more elegant" solutionHagy
wait - zip is making the multidimensional array. nevermind; I'll leave the link above because it's still useful.Hagy
L
1

You could use the scss/sass map function:

@use "sass:map";

$variables: (
    "variable1": ####;
    "variable2": ####;
    "variable3": ####;
    "variable4": ####;
}

body {
    width: map.get($variables, "variable1"); 
    margin: map.get($variables, "variable2") + 10;
}

Documentation

Lovins answered 7/2, 2023 at 11:54 Comment(0)
O
0

You can use SASS lists a it's related functions on a way similar to that:

// List order: top, bottom, left, right, width, height, ...
$Header: 10px,auto,10px,auto,100%,50px;
$Footer: auto,0px,0px,auto,100%,20px;

@function getVar($variable,$name:top){
    $var_index:1;
    @if $name==bottom {
        $var_index:2;
    } @else if $name==left {
        $var_index:3;
    }
    // Continue de if else for each property you want.
    return nth($variable,$var_index);
}

That way calling something like:

getVar($Header,left)

Should return the value of the left property for the list of Header, but changing it to getVar($Footer,top) would return the value for the top property of the "Footer Group" (Footer List of Values).

That works for the time of using the values, but a the definition, you must follow the exact order and cannot leave any empty value, the nearest to an empty value that I found is #{''} what means "Empty String with no quotes", an empty value, but is added to the CSS.

Otten answered 27/3, 2012 at 23:45 Comment(1)
() would be an empty list in Sass.Anodize

© 2022 - 2024 — McMap. All rights reserved.