///
//  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 '../tokens' as primitive-token;
@use 'sass:map';
@use 'sass:list';

@use 'theme-tokens' as token;
@use 'theme-keys' as key;

$_valid-intents: (
  'create',
  'bind'
);

@mixin property($property, $values, $intent: 'create') {
  $key: list.nth($values, 1);
  $value: list.nth($values, 2);

  @if not list.index($_valid-intents, $intent) {
    @error 'Invalid intent: #{$intent}. Expecting a valid intent: #{$_valid-intents}.';
  }

  @if $intent == 'bind' {
    @include key.bind($key, _assert-value($value));
  } @else if $intent == 'create' {
    #{$property}: key.create($key, _assert-value($value));
  }
}

@function _assert-value($query) {
  @return token.switch($query, primitive-token.primitive-token-switch($query));
}