///
//  Copyright (c) 2022 GrowStocks
//
//  Permission is hereby granted, free of charge, to any person obtaining a copy
//  of this software and associated documentation files (the "Software"), to deal
//  in the Software without restriction, including without limitation the rights
//  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
//  copies of the Software, and to permit persons to whom the Software is
//  furnished to do so, subject to the following conditions:
//
//  The above copyright notice and this permission notice shall be included in all
//  copies or substantial portions of the Software.
//
//  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
//  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
//  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
//  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
//  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
//  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
//  SOFTWARE.
///

@use '../theme';
@use '../support';

@use 'sass:map';

@use 'validators';

@mixin apply(
    $component-name,
    $typography-theme: (),
    $is-extender: false
) {
    @if not support.is-empty($typography-theme) {
        @if validators.is-type-prop($typography-theme) {
            $family: map.get($typography-theme, 'family');
            $size: map.get($typography-theme, 'size');
            $weight: map.get($typography-theme, 'weight');
            $line-height: map.get($typography-theme, 'line-height');

            @if not support.is-empty($family) {
                @if $is-extender {
                    @include theme.key-bind('#{$component-name}-family', theme.token-switch($family));
                } @else {
                    font-family: theme.key-create('#{$component-name}-family', theme.token-switch($family));
                }
            }

            @if not support.is-empty($size) {
                @if $is-extender {
                    @include theme.key-bind('#{$component-name}-size', theme.token-switch($size));
                } @else {
                    font-size: theme.key-create('#{$component-name}-size', theme.token-switch($size));
                }
            }

            @if not support.is-empty($weight) {
                @if $is-extender {
                    @include theme.key-bind('#{$component-name}-weight', theme.token-switch($weight));
                } @else {
                    font-weight: theme.key-create('#{$component-name}-weight', theme.token-switch($weight));
                }
            }

            @if not support.is-empty($line-height) {
                @if $is-extender {
                    @include theme.key-bind('#{$component-name}-line-height', theme.token-switch($line-height));
                } @else {
                    line-height: theme.key-create('#{$component-name}-line-height', theme.token-switch($line-height));
                }
            }
        }
    }
}
