@use '@material/tab-indicator/tab-indicator-theme' as mdc-tab-indicator-theme;
@use '@material/tab/tab-theme' as mdc-tab-theme;
@use '../core/style/sass-utils';
@use '../core/tokens/m2/mdc/tab' as tokens-mdc-tab;
@use '../core/tokens/m2/mdc/tab-indicator' as tokens-mdc-tab-indicator;
@use '../core/tokens/m2/mat/tab-header' as tokens-mat-tab-header;
@use '../core/tokens/m2/mat/tab-header-with-background' as tokens-mat-tab-header-with-background;
@use '../core/theming/theming';
@use '../core/theming/inspection';
@use '../core/theming/validation';
@use '../core/typography/typography';
@use '../core/tokens/token-utils';

/// Outputs base theme styles (styles not dependent on the color, typography, or density settings)
/// for the mat-tab.
/// @param {Map} $theme The theme to generate base styles for.
@mixin base($theme) {
  @if inspection.get-theme-version($theme) == 1 {
    @include _theme-from-tokens(inspection.get-theme-tokens($theme, base));
  }
  @else {
    @include sass-utils.current-selector-or-root() {
      @include mdc-tab-indicator-theme.theme(tokens-mdc-tab-indicator.get-unthemable-tokens());
      @include mdc-tab-theme.secondary-navigation-tab-theme(tokens-mdc-tab.get-unthemable-tokens());
      @include token-utils.create-token-values(
          tokens-mat-tab-header.$prefix, tokens-mat-tab-header.get-unthemable-tokens());
      @include token-utils.create-token-values(
          tokens-mat-tab-header-with-background.$prefix,
          tokens-mat-tab-header-with-background.get-unthemable-tokens()
      );
    }
  }
}

/// Outputs color theme styles for the mat-tab.
/// @param {Map} $theme The theme to generate color styles for.
/// @param {ArgList} Additional optional arguments (only supported for M3 themes):
///   $color-variant: The color variant to use for the tab indicator: primary, secondary,
///      tertiary, or error (If not specified, default primary color will be used).
@mixin color($theme, $options...) {
  @if inspection.get-theme-version($theme) == 1 {
    @include _theme-from-tokens(inspection.get-theme-tokens($theme, color), $options...);
  }
  @else {
    .mat-mdc-tab-group, .mat-mdc-tab-nav-bar {
      @include _palette-styles($theme, primary);

      &.mat-accent {
        @include _palette-styles($theme, accent);
      }

      &.mat-warn {
        @include _palette-styles($theme, warn);
      }

      &.mat-background-primary {
        @include _background-styles($theme, primary);
      }

      &.mat-background-accent {
        @include _background-styles($theme, accent);
      }

      &.mat-background-warn {
        @include _background-styles($theme, warn);
      }
    }
  }
}

@mixin _background-styles($theme, $palette-name) {
  @include token-utils.create-token-values(tokens-mat-tab-header-with-background.$prefix,
    tokens-mat-tab-header-with-background.get-color-tokens($theme, $palette-name));
}

@mixin _palette-styles($theme, $palette-name) {
  @include mdc-tab-theme.secondary-navigation-tab-theme(
    tokens-mdc-tab.get-color-tokens($theme, $palette-name));
  @include mdc-tab-indicator-theme.theme(
    tokens-mdc-tab-indicator.get-color-tokens($theme, $palette-name));
  @include token-utils.create-token-values(tokens-mat-tab-header.$prefix,
   tokens-mat-tab-header.get-color-tokens($theme, $palette-name));
}

/// Outputs typography theme styles for the mat-tab.
/// @param {Map} $theme The theme to generate typography styles for.
@mixin typography($theme) {
  @if inspection.get-theme-version($theme) == 1 {
    @include _theme-from-tokens(inspection.get-theme-tokens($theme, typography));
  }
  @else {
    .mat-mdc-tab-header {
      @include mdc-tab-theme.secondary-navigation-tab-theme(
          tokens-mdc-tab.get-typography-tokens($theme));
      @include mdc-tab-indicator-theme.theme(
          tokens-mdc-tab-indicator.get-typography-tokens($theme));
      @include token-utils.create-token-values(tokens-mat-tab-header.$prefix,
        tokens-mat-tab-header.get-typography-tokens($theme));
      @include token-utils.create-token-values(tokens-mat-tab-header-with-background.$prefix,
        tokens-mat-tab-header-with-background.get-typography-tokens($theme));
    }
  }
}

/// Outputs density theme styles for the mat-tab.
/// @param {Map} $theme The theme to generate density styles for.
@mixin density($theme) {
  @if inspection.get-theme-version($theme) == 1 {
    @include _theme-from-tokens(inspection.get-theme-tokens($theme, density));
  }
  @else {
    .mat-mdc-tab-header {
      @include mdc-tab-theme.secondary-navigation-tab-theme(
          tokens-mdc-tab.get-density-tokens($theme));
      @include mdc-tab-indicator-theme.theme(
          tokens-mdc-tab-indicator.get-density-tokens($theme));
      @include token-utils.create-token-values(tokens-mat-tab-header.$prefix,
        tokens-mat-tab-header.get-density-tokens($theme));
      @include token-utils.create-token-values(tokens-mat-tab-header-with-background.$prefix,
        tokens-mat-tab-header-with-background.get-density-tokens($theme));
    }
  }
}

/// Outputs all (base, color, typography, and density) theme styles for the mat-tab.
/// @param {Map} $theme The theme to generate styles for.
/// @param {ArgList} Additional optional arguments (only supported for M3 themes):
///   $color-variant: The color variant to use for the tab indicator: primary, secondary,
///      tertiary, or error (If not specified, default primary color will be used).
@mixin theme($theme, $options...) {
  @include theming.private-check-duplicate-theme-styles($theme, 'mat-tabs') {
    @if inspection.get-theme-version($theme) == 1 {
      @include _theme-from-tokens(inspection.get-theme-tokens($theme), $options...);
    }
    @else {
      @include base($theme);
      @if inspection.theme-has($theme, color) {
        @include color($theme);
      }
      @if inspection.theme-has($theme, density) {
        @include density($theme);
      }
      @if inspection.theme-has($theme, typography) {
        @include typography($theme);
      }
    }
  }
}

@mixin _theme-from-tokens($tokens, $options...) {
  @include validation.selector-defined(
      'Calls to Angular Material theme mixins with an M3 theme must be wrapped in a selector');
  $mdc-tab-indicator-tokens: token-utils.get-tokens-for(
      $tokens, tokens-mdc-tab-indicator.$prefix, $options...);
  $mat-tab-header-tokens: token-utils.get-tokens-for(
      $tokens, tokens-mat-tab-header.$prefix, $options...);
  // Don't pass $options here, because the mdc-tab doesn't have color variants,
  // only the mdc-tab-indicator and mat-tab-header do.
  $mdc-tab-tokens: token-utils.get-tokens-for($tokens, tokens-mdc-tab.$prefix);
  @include mdc-tab-theme.secondary-navigation-tab-theme($mdc-tab-tokens);
  @include mdc-tab-indicator-theme.theme($mdc-tab-indicator-tokens);
  @include token-utils.create-token-values(tokens-mat-tab-header.$prefix, $mat-tab-header-tokens);
}
