grass/src/builtin/meta.rs

252 lines
7.9 KiB
Rust
Raw Normal View History

use super::GlobalFunctionMap;
2020-02-02 21:09:29 -05:00
2020-04-12 19:37:12 -04:00
use codemap::Spanned;
use super::{Builtin, GLOBAL_FUNCTIONS};
2020-04-30 18:31:55 -04:00
use crate::args::CallArgs;
2020-04-06 00:27:09 -04:00
use crate::common::QuoteKind;
2020-04-30 18:31:55 -04:00
use crate::error::SassResult;
use crate::scope::global_var_exists;
2020-04-30 18:31:55 -04:00
use crate::scope::Scope;
use crate::selector::Selector;
use crate::unit::Unit;
use crate::value::{SassFunction, Value};
2020-02-02 22:33:04 -05:00
fn if_(mut args: CallArgs, scope: &Scope, super_selector: &Selector) -> SassResult<Value> {
args.max_args(3)?;
if arg!(args, scope, super_selector, 0, "condition").is_true(args.span())? {
Ok(arg!(args, scope, super_selector, 1, "if-true"))
} else {
Ok(arg!(args, scope, super_selector, 2, "if-false"))
}
}
fn feature_exists(
mut args: CallArgs,
scope: &Scope,
super_selector: &Selector,
) -> SassResult<Value> {
args.max_args(1)?;
match arg!(args, scope, super_selector, 0, "feature") {
Value::Ident(s, _) => Ok(match s.as_str() {
// A local variable will shadow a global variable unless
// `!global` is used.
"global-variable-shadowing" => Value::True,
// the @extend rule will affect selectors nested in pseudo-classes
// like :not()
"extend-selector-pseudoclass" => Value::False,
// Full support for unit arithmetic using units defined in the
// [Values and Units Level 3][] spec.
"units-level-3" => Value::True,
// The Sass `@error` directive is supported.
"at-error" => Value::True,
// The "Custom Properties Level 1" spec is supported. This means
// that custom properties are parsed statically, with only
// interpolation treated as SassScript.
"custom-property" => Value::False,
_ => Value::False,
}),
v => Err((
format!(
"$feature: {} is not a string.",
v.to_css_string(args.span())?
),
args.span(),
)
.into()),
2020-04-30 18:31:55 -04:00
}
}
2020-04-30 18:31:55 -04:00
fn unit(mut args: CallArgs, scope: &Scope, super_selector: &Selector) -> SassResult<Value> {
args.max_args(1)?;
let unit = match arg!(args, scope, super_selector, 0, "number") {
Value::Dimension(_, u) => u.to_string(),
v => {
return Err((
2020-04-30 18:31:55 -04:00
format!(
"$number: {} is not a number.",
2020-04-30 18:31:55 -04:00
v.to_css_string(args.span())?
),
args.span(),
)
.into())
2020-04-30 18:31:55 -04:00
}
};
Ok(Value::Ident(unit, QuoteKind::Quoted))
}
2020-04-30 18:31:55 -04:00
fn type_of(mut args: CallArgs, scope: &Scope, super_selector: &Selector) -> SassResult<Value> {
args.max_args(1)?;
let value = arg!(args, scope, super_selector, 0, "value");
Ok(Value::Ident(
value.kind(args.span())?.to_owned(),
QuoteKind::None,
))
}
2020-04-30 18:31:55 -04:00
fn unitless(mut args: CallArgs, scope: &Scope, super_selector: &Selector) -> SassResult<Value> {
args.max_args(1)?;
match arg!(args, scope, super_selector, 0, "number") {
Value::Dimension(_, Unit::None) => Ok(Value::True),
Value::Dimension(_, _) => Ok(Value::False),
_ => Ok(Value::True),
2020-04-30 18:31:55 -04:00
}
}
fn inspect(mut args: CallArgs, scope: &Scope, super_selector: &Selector) -> SassResult<Value> {
args.max_args(1)?;
Ok(Value::Ident(
2020-05-06 11:50:35 -04:00
arg!(args, scope, super_selector, 0, "value")
.inspect(args.span())?
.into(),
QuoteKind::None,
))
}
fn variable_exists(
mut args: CallArgs,
scope: &Scope,
super_selector: &Selector,
) -> SassResult<Value> {
args.max_args(1)?;
match arg!(args, scope, super_selector, 0, "name") {
Value::Ident(s, _) => Ok(Value::bool(scope.var_exists(&s))),
v => Err((
format!("$name: {} is not a string.", v.to_css_string(args.span())?),
args.span(),
)
.into()),
2020-04-30 18:31:55 -04:00
}
}
2020-04-30 18:31:55 -04:00
fn global_variable_exists(
mut args: CallArgs,
scope: &Scope,
super_selector: &Selector,
) -> SassResult<Value> {
args.max_args(1)?;
match arg!(args, scope, super_selector, 0, "name") {
Value::Ident(s, _) => Ok(Value::bool(global_var_exists(&s))),
v => Err((
format!("$name: {} is not a string.", v.to_css_string(args.span())?),
args.span(),
)
.into()),
2020-04-30 18:31:55 -04:00
}
}
2020-04-30 18:31:55 -04:00
fn mixin_exists(mut args: CallArgs, scope: &Scope, super_selector: &Selector) -> SassResult<Value> {
args.max_args(2)?;
match arg!(args, scope, super_selector, 0, "name") {
Value::Ident(s, _) => Ok(Value::bool(scope.mixin_exists(&s))),
v => Err((
format!("$name: {} is not a string.", v.to_css_string(args.span())?),
args.span(),
)
.into()),
2020-04-30 18:31:55 -04:00
}
}
2020-04-30 18:31:55 -04:00
fn function_exists(
mut args: CallArgs,
scope: &Scope,
super_selector: &Selector,
) -> SassResult<Value> {
args.max_args(2)?;
match arg!(args, scope, super_selector, 0, "name") {
Value::Ident(s, _) => Ok(Value::bool(
scope.fn_exists(&s) || GLOBAL_FUNCTIONS.contains_key(s.as_str()),
)),
v => Err((
format!("$name: {} is not a string.", v.to_css_string(args.span())?),
args.span(),
)
.into()),
2020-04-30 18:31:55 -04:00
}
}
2020-04-30 18:31:55 -04:00
fn get_function(mut args: CallArgs, scope: &Scope, super_selector: &Selector) -> SassResult<Value> {
args.max_args(3)?;
let name = match arg!(args, scope, super_selector, 0, "name") {
Value::Ident(s, _) => s,
v => {
return Err((
2020-04-30 18:31:55 -04:00
format!("$name: {} is not a string.", v.to_css_string(args.span())?),
args.span(),
)
.into())
2020-04-30 18:31:55 -04:00
}
};
let css = arg!(args, scope, super_selector, 1, "css" = Value::False).is_true(args.span())?;
let module = match arg!(args, scope, super_selector, 2, "module" = Value::Null) {
Value::Ident(s, ..) => Some(s),
Value::Null => None,
v => {
return Err((
format!(
"$module: {} is not a string.",
v.to_css_string(args.span())?
),
2020-04-30 18:31:55 -04:00
args.span(),
)
.into())
2020-04-30 18:31:55 -04:00
}
};
if module.is_some() && css {
return Err((
"$css and $module may not both be passed at once.",
args.span(),
)
.into());
2020-04-30 18:31:55 -04:00
}
let func = match scope.get_fn(Spanned {
node: name.clone(),
span: args.span(),
}) {
Ok(f) => SassFunction::UserDefined(Box::new(f), name),
Err(..) => match GLOBAL_FUNCTIONS.get(name.as_str()) {
Some(f) => SassFunction::Builtin(f.clone(), name),
None => return Err((format!("Function not found: {}", name), args.span()).into()),
},
};
Ok(Value::Function(func))
}
2020-04-30 18:31:55 -04:00
fn call(mut args: CallArgs, scope: &Scope, super_selector: &Selector) -> SassResult<Value> {
let func = match arg!(args, scope, super_selector, 0, "function") {
Value::Function(f) => f,
v => {
2020-04-30 18:31:55 -04:00
return Err((
format!(
"$function: {} is not a function reference.",
v.to_css_string(args.span())?
),
2020-04-30 18:31:55 -04:00
args.span(),
)
.into())
2020-04-30 18:31:55 -04:00
}
};
func.call(args.decrement(), scope, super_selector)
}
2020-04-30 18:31:55 -04:00
2020-05-16 18:01:06 -04:00
pub(crate) fn declare(f: &mut GlobalFunctionMap) {
2020-04-30 18:31:55 -04:00
f.insert("if", Builtin::new(if_));
f.insert("feature-exists", Builtin::new(feature_exists));
f.insert("unit", Builtin::new(unit));
f.insert("type-of", Builtin::new(type_of));
f.insert("unitless", Builtin::new(unitless));
f.insert("inspect", Builtin::new(inspect));
f.insert("variable-exists", Builtin::new(variable_exists));
2020-04-04 12:31:43 -04:00
f.insert(
2020-04-30 18:31:55 -04:00
"global-variable-exists",
Builtin::new(global_variable_exists),
2020-04-04 12:31:43 -04:00
);
2020-04-30 18:31:55 -04:00
f.insert("mixin-exists", Builtin::new(mixin_exists));
f.insert("function-exists", Builtin::new(function_exists));
f.insert("get-function", Builtin::new(get_function));
f.insert("call", Builtin::new(call));
2020-02-07 00:10:43 -05:00
}