cirrus-ui
Version:
A lightweight UI framework written in SCSS
354 lines (292 loc) • 11.7 kB
Plain Text
// _generator.scss unit tests
@use '../test_base' as *;
@use '../../src/internal/generator';
@use '../../src/internal/mixins';
@include describe('utility()') {
@include it('should generate expected utility classes with variant support') {
@include assert {
@include output {
@include generator.utility(
$common-class-name: 'text',
$class-value-pairs: (
'blue': (
'color': blue,
),
),
$variants: (
'hover',
'dark',
'reduce-motion',
),
$generate-viewports: 'true',
$override: '!important'
);
}
@include expect {
.u-text-blue {
color: blue ;
}
.hover\:u-text-blue:hover {
color: blue ;
}
@media (prefers-color-scheme: dark) {
.dark\:u-text-blue {
color: blue ;
}
}
@media (prefers-reduced-motion: reduce) {
.reduce-motion\:u-text-blue {
color: blue ;
}
}
@media screen and (min-width: 640px) {
.u-text-blue-sm {
color: blue ;
}
.hover\:u-text-blue-sm:hover {
color: blue ;
}
}
@media screen and (min-width: 640px) and (prefers-color-scheme: dark) {
.dark\:u-text-blue-sm {
color: blue ;
}
}
@media screen and (min-width: 640px) and (prefers-reduced-motion: reduce) {
.reduce-motion\:u-text-blue-sm {
color: blue ;
}
}
@media screen and (min-width: 768px) {
.u-text-blue-md {
color: blue ;
}
.hover\:u-text-blue-md:hover {
color: blue ;
}
}
@media screen and (min-width: 768px) and (prefers-color-scheme: dark) {
.dark\:u-text-blue-md {
color: blue ;
}
}
@media screen and (min-width: 768px) and (prefers-reduced-motion: reduce) {
.reduce-motion\:u-text-blue-md {
color: blue ;
}
}
@media screen and (min-width: 1024px) {
.u-text-blue-lg {
color: blue ;
}
.hover\:u-text-blue-lg:hover {
color: blue ;
}
}
@media screen and (min-width: 1024px) and (prefers-color-scheme: dark) {
.dark\:u-text-blue-lg {
color: blue ;
}
}
@media screen and (min-width: 1024px) and (prefers-reduced-motion: reduce) {
.reduce-motion\:u-text-blue-lg {
color: blue ;
}
}
@media screen and (min-width: 1280px) {
.u-text-blue-xl {
color: blue ;
}
.hover\:u-text-blue-xl:hover {
color: blue ;
}
}
@media screen and (min-width: 1280px) and (prefers-color-scheme: dark) {
.dark\:u-text-blue-xl {
color: blue ;
}
}
@media screen and (min-width: 1280px) and (prefers-reduced-motion: reduce) {
.reduce-motion\:u-text-blue-xl {
color: blue ;
}
}
}
}
}
}
@include describe('utility-with-body()') {
@include it('should generate expected utility classes with variant support') {
@include assert {
@include output {
@include generator.utility-with-body(
$variants: (
'hover',
'dark',
'reduce-motion',
),
$generate-viewports: 'true',
$override: '!important'
)
using ($variant-prefix, $prefix, $common-class, $delimiter, $key, $suffix-str, $variant-suffix, $override) {
$colors: red, white;
@each $color in $colors {
.#{$variant-prefix}#{$prefix}#{$color}#{$suffix-str}#{$variant-suffix} {
color: #{$color} #{$override};
}
}
}
}
@include expect {
.u-red {
color: red ;
}
.u-white {
color: white ;
}
.hover\:u-red:hover {
color: red ;
}
.hover\:u-white:hover {
color: white ;
}
@media (prefers-color-scheme: dark) {
.dark\:u-red {
color: red ;
}
.dark\:u-white {
color: white ;
}
}
@media (prefers-reduced-motion: reduce) {
.reduce-motion\:u-red {
color: red ;
}
.reduce-motion\:u-white {
color: white ;
}
}
@media screen and (min-width: 640px) {
.u-red-sm {
color: red ;
}
.u-white-sm {
color: white ;
}
.hover\:u-red-sm:hover {
color: red ;
}
.hover\:u-white-sm:hover {
color: white ;
}
}
@media screen and (min-width: 640px) and (prefers-color-scheme: dark) {
.dark\:u-red-sm {
color: red ;
}
.dark\:u-white-sm {
color: white ;
}
}
@media screen and (min-width: 640px) and (prefers-reduced-motion: reduce) {
.reduce-motion\:u-red-sm {
color: red ;
}
.reduce-motion\:u-white-sm {
color: white ;
}
}
@media screen and (min-width: 768px) {
.u-red-md {
color: red ;
}
.u-white-md {
color: white ;
}
.hover\:u-red-md:hover {
color: red ;
}
.hover\:u-white-md:hover {
color: white ;
}
}
@media screen and (min-width: 768px) and (prefers-color-scheme: dark) {
.dark\:u-red-md {
color: red ;
}
.dark\:u-white-md {
color: white ;
}
}
@media screen and (min-width: 768px) and (prefers-reduced-motion: reduce) {
.reduce-motion\:u-red-md {
color: red ;
}
.reduce-motion\:u-white-md {
color: white ;
}
}
@media screen and (min-width: 1024px) {
.u-red-lg {
color: red ;
}
.u-white-lg {
color: white ;
}
.hover\:u-red-lg:hover {
color: red ;
}
.hover\:u-white-lg:hover {
color: white ;
}
}
@media screen and (min-width: 1024px) and (prefers-color-scheme: dark) {
.dark\:u-red-lg {
color: red ;
}
.dark\:u-white-lg {
color: white ;
}
}
@media screen and (min-width: 1024px) and (prefers-reduced-motion: reduce) {
.reduce-motion\:u-red-lg {
color: red ;
}
.reduce-motion\:u-white-lg {
color: white ;
}
}
@media screen and (min-width: 1280px) {
.u-red-xl {
color: red ;
}
.u-white-xl {
color: white ;
}
.hover\:u-red-xl:hover {
color: red ;
}
.hover\:u-white-xl:hover {
color: white ;
}
}
@media screen and (min-width: 1280px) and (prefers-color-scheme: dark) {
.dark\:u-red-xl {
color: red ;
}
.dark\:u-white-xl {
color: white ;
}
}
@media screen and (min-width: 1280px) and (prefers-reduced-motion: reduce) {
.reduce-motion\:u-red-xl {
color: red ;
}
.reduce-motion\:u-white-xl {
color: white ;
}
}
}
}
}
}