From dc2a4ea99b535b97bfbf5b6b8d69ec8dab023b10 Mon Sep 17 00:00:00 2001 From: Volpeon Date: Fri, 18 Oct 2024 23:40:20 +0200 Subject: Update --- src/objects/_button.scss | 260 +++++++++++------------------------------------ 1 file changed, 58 insertions(+), 202 deletions(-) (limited to 'src/objects/_button.scss') diff --git a/src/objects/_button.scss b/src/objects/_button.scss index 097bc21..854e1e3 100644 --- a/src/objects/_button.scss +++ b/src/objects/_button.scss @@ -1,17 +1,20 @@ @use 'sass:list'; +@use 'sass:map'; +@use 'sass:meta'; +@use 'sass:string'; @use 'iro-sass/src/iro-sass' as iro; -@use '../functions' as fn; +@use '../props'; +@use '../core.vars' as core; -$sizes: 'sm' 'lg' 'xl' !default; -$themes: 'accent' 'negative' !default; -$static-themes: 'black' 'white' !default; +@forward 'button.vars'; +@use 'button.vars' as vars; -@mixin theme($theme: ()) { +@mixin -apply-theme($theme, $key: ()) { &:link, &:visited, &:enabled { - color: fn.color(list.join($theme, --label)); - background-color: fn.color(list.join($theme, --bg)); + color: props.get($theme, list.join($key, --label)...); + background-color: props.get($theme, list.join($key, --bg)...); border-color: transparent; } @@ -19,9 +22,9 @@ $static-themes: 'black' 'white' !default; &:link, &:visited, &:enabled { - color: fn.color(list.join($theme, --outline-label)); + color: props.get($theme, list.join($key, --outline-label)); background-color: transparent; - border-color: fn.color(list.join($theme, --outline-border)); + border-color: props.get($theme, list.join($key, --outline-border)); } } @@ -30,217 +33,71 @@ $static-themes: 'black' 'white' !default; &:enabled { &:hover, &:focus-visible { - color: fn.color(list.join($theme, --hover --label)); - background-color: fn.color(list.join($theme, --hover --bg)); + color: props.get($theme, list.join($key, --hover --label)); + background-color: props.get($theme, list.join($key, --hover --bg)); border-color: transparent; } &:active { - color: fn.color(list.join($theme, --active --label)); - background-color: fn.color(list.join($theme, --active --bg)); + color: props.get($theme, list.join($key, --active --label)); + background-color: props.get($theme, list.join($key, --active --bg)); border-color: transparent; } } } -@mixin static-theme($theme: ()) { - color: fn.color(list.join($theme, --disabled --label)); - background-color: fn.color(list.join($theme, --disabled --bg)); +@mixin -apply-static-theme($theme, $key: ()) { + color: props.get($theme, list.join($key, --disabled --label)); + background-color: props.get($theme, list.join($key, --disabled --bg)); border-color: transparent; &::after { - outline: fn.color(list.join($theme, --key-focus --border)) solid fn.dim(--key-focus --border); - box-shadow: 0 0 0 calc(fn.dim(--key-focus --border) + fn.dim(--key-focus --outline)) fn.color(list.join($theme, --key-focus --outline)); + outline: props.get($theme, list.join($key, --key-focus --border)) solid props.get(vars.$key-focus--border-width); + box-shadow: + 0 + 0 + 0 + calc(props.get(vars.$key-focus--border-width) + props.get(vars.$key-focus--outline-width)) + props.get($theme, list.join($key, --key-focus --outline)); } @include iro.bem-modifier('outline') { background-color: transparent; - border-color: fn.color(list.join($theme, --disabled --outline-border)); + border-color: props.get($theme, list.join($key, --disabled --outline-border)); } - @include theme($theme); + @include -apply-theme($theme, $key); @include iro.bem-modifier('primary') { - @include theme(list.join($theme, --primary)); + @include -apply-theme($theme, list.join($key, --primary)); } } -@include iro.props-namespace('button') { - @include iro.props-store(( - --dims: ( - --line-height: 1.4, - --pad-i: fn.global-dim(--size --200), - --pad-i-label: fn.global-dim(--size --75), - --pad-b: fn.global-dim(--size --65), - --border: fn.global-dim(--border --medium), - --rounding: 10em, - --font-size: fn.global-dim(--font-size --100), +@mixin styles { + @include props.materialize(meta.module-variables('vars')); - --sm: ( - --pad-i: fn.global-dim(--size --150), - --pad-i-label: fn.global-dim(--size --50), - --pad-b: fn.global-dim(--size --25), - --font-size: fn.global-dim(--font-size --75), - ), - --lg: ( - --pad-i: fn.global-dim(--size --250), - --pad-i-label: fn.global-dim(--size --100), - --pad-b: fn.global-dim(--size --100), - --font-size: fn.global-dim(--font-size --150), - ), - --xl: ( - --pad-i: fn.global-dim(--size --300), - --pad-i-label: fn.global-dim(--size --150), - --pad-b: fn.global-dim(--size --150), - --font-size: fn.global-dim(--font-size --200), - ), - - --key-focus: ( - --border: fn.global-dim(--key-focus --border), - --border-offset: fn.global-dim(--key-focus --border-offset), - --outline: fn.global-dim(--key-focus --outline), - ), - ), - --colors: ( - --bg: fn.global-color(--border-mute), - --label: fn.global-color(--text), - --outline-border: fn.global-color(--border), - --outline-label: fn.global-color(--text), - - --hover: ( - --bg: fn.global-color(--border), - --label: fn.global-color(--heading), - ), - --active: ( - --bg: fn.global-color(--border-strong), - --label: fn.global-color(--heading), - ), - --disabled: ( - --bg: fn.global-color(--border-mute), - --outline-border: fn.global-color(--border), - --label: fn.global-color(--text-disabled), - ), - --key-focus: ( - --label: fn.global-color(--focus --text), - --border: fn.global-color(--focus --border), - --outline: fn.global-color(--focus --outline), - ), - - --primary: ( - --bg: fn.global-color(--base --800), - --label: fn.global-color(--base --800-text), - --outline-border: fn.global-color(--base --800), - --outline-label: fn.global-color(--text), - - --hover: ( - --bg: fn.global-color(--base --900), - --label: fn.global-color(--base --900-text), - ), - --active: ( - --bg: fn.global-color(--base --900), - --label: fn.global-color(--base --900-text), - ), - ), - ), - )); - - @each $theme in $themes { - @include iro.props-store(( - --colors: ( - --#{$theme}: ( - --bg: fn.global-color(--#{$theme}-static --900), - --label: fn.global-color(--#{$theme}-static --900-text), - --outline-border: fn.global-color(--#{$theme} --900), - --outline-label: fn.global-color(--#{$theme} --1000), - - --hover: ( - --bg: fn.global-color(--#{$theme}-static --1000), - --label: fn.global-color(--#{$theme}-static --1000-text), - ), - --active: ( - --bg: fn.global-color(--#{$theme}-static --1100), - --label: fn.global-color(--#{$theme}-static --1100-text), - ), - ), - ), - )); - } - - @each $theme in $static-themes { - @include iro.props-store(( - --colors: ( - --static-#{$theme}: ( - --bg: fn.global-color(--#{$theme}-transparent --200), - --label: fn.global-color(--#{$theme}-transparent --900), - --outline-border: fn.global-color(--#{$theme}-transparent --300), - --outline-label: fn.global-color(--#{$theme}-transparent --900), - - --hover: ( - --bg: fn.global-color(--#{$theme}-transparent --300), - --label: fn.global-color(--#{$theme}-transparent --900), - ), - --active: ( - --bg: fn.global-color(--#{$theme}-transparent --400), - --label: fn.global-color(--#{$theme}-transparent --900), - ), - --disabled: ( - --bg: fn.global-color(--#{$theme}-transparent --200), - --outline-border: fn.global-color(--#{$theme}-transparent --300), - --label: fn.global-color(--#{$theme}-transparent --500), - ), - --key-focus: ( - --bg: fn.global-color(--#{$theme}-transparent --100), - --label: fn.global-color(--#{$theme}-transparent --900), - --border: fn.global-color(--#{$theme}-transparent --900), - --outline: fn.global-color(--#{$theme}-transparent --300), - ), - - --primary: ( - --bg: fn.global-color(--#{$theme}-transparent --800), - --label: fn.global-color(--#{$theme}-transparent --text), - --outline-border: fn.global-color(--#{$theme}-transparent --800), - --outline-label: fn.global-color(--#{$theme}-transparent --900), - - --hover: ( - --bg: fn.global-color(--#{$theme}-transparent --900), - --label: fn.global-color(--#{$theme}-transparent --text), - ), - --active: ( - --bg: fn.global-color(--#{$theme}-transparent --900), - --label: fn.global-color(--#{$theme}-transparent --text), - ), - ), - ), - ), - )); - } - - @include iro.bem-object(iro.props-namespace()) { + @include iro.bem-object('button') { position: relative; display: inline-block; - padding-block: fn.dim(--pad-b); - padding-inline: fn.dim(--pad-i); - font-size: fn.dim(--font-size); + padding-block: props.get(vars.$pad-b); + padding-inline: props.get(vars.$pad-i); + font-size: props.get(vars.$font-size); font-weight: 500; - line-height: fn.dim(--line-height); - color: fn.color(--disabled --label); + line-height: props.get(vars.$line-height); text-align: center; text-decoration: none; - background-color: fn.color(--disabled --bg); - border: fn.dim(--border) solid transparent; - border-color: fn.color(--disabled --bg); - border-radius: fn.dim(--rounding); + border: props.get(vars.$border-width) solid transparent; + border-radius: props.get(vars.$rounding); &::after { position: absolute; - inset: calc(-1 * fn.dim(--border) - fn.dim(--key-focus --border-offset)); + inset: calc(-1 * props.get(vars.$border-width) - props.get(vars.$key-focus--border-offset)); z-index: 1; display: none; pointer-events: none; content: ''; - border-radius: calc(fn.dim(--rounding) + fn.dim(--key-focus --border-offset)); - outline: fn.color(--key-focus --border) solid fn.dim(--key-focus --border); - box-shadow: 0 0 0 calc(fn.dim(--key-focus --border) + fn.dim(--key-focus --outline)) fn.color(--key-focus --outline); + border-radius: calc(props.get(vars.$rounding) + props.get(vars.$key-focus--border-offset)); + outline: transparent solid props.get(vars.$key-focus--border-width); } &:link, @@ -254,7 +111,7 @@ $static-themes: 'black' 'white' !default; } @include iro.bem-elem('label') { - margin-inline: fn.dim(--pad-i-label); + margin-inline: props.get(vars.$pad-i-label); } @include iro.bem-modifier('block') { @@ -263,37 +120,36 @@ $static-themes: 'black' 'white' !default; @include iro.bem-modifier('outline') { background-color: transparent; - border-color: fn.color(--disabled --outline-border); } - @each $size in $sizes { - @include iro.bem-modifier($size) { - padding-block: fn.dim(--#{$size} --pad-b); - padding-inline: fn.dim(--#{$size} --pad-i); - font-size: fn.dim(--#{$size} --font-size); + @each $mod, $pad-i, $pad-i-label, $pad-b, $font-size in vars.$sizes { + @include iro.bem-modifier($mod) { + padding-block: props.get($pad-b); + padding-inline: props.get($pad-i); + font-size: props.get($font-size); @include iro.bem-elem('label') { - margin-inline: fn.dim(--#{$size} --pad-i-label); + margin-inline: props.get($pad-i-label); } } } - @include static-theme; - - @each $theme in $themes { - @include iro.bem-modifier($theme) { - @include theme(--#{$theme}); + @include -apply-static-theme(vars.$default-theme); + + @each $theme in map.keys(props.get(vars.$themes)) { + @include iro.bem-modifier(string.slice($theme, 3)) { + @include -apply-theme(vars.$themes, $theme); } } - - @each $theme in $static-themes { - @include iro.bem-modifier(static-#{$theme}) { - @include static-theme(--static-#{$theme}); + + @each $theme in map.keys(props.get(vars.$static-themes)) { + @include iro.bem-modifier(string.slice($theme, 3)) { + @include -apply-static-theme(vars.$static-themes, $theme); } } @include iro.bem-modifier('round') { - inline-size: calc(1em * fn.dim(--line-height) + 2 * fn.dim(--pad-b)); + inline-size: calc(1em * props.get(vars.$line-height) + 2 * props.get(vars.$pad-b)); padding-inline: 0; border-radius: 100em; } -- cgit v1.2.3-70-g09d2