@import 'mixins/mixins';
@import 'mixins/utils';
@import 'mixins/button';
@import 'common/var';

@include b(radio) {
  color: $--radio-font-color;
  font-weight: $--radio-font-weight;
  line-height: inherit;
  position: relative;
  cursor: pointer;
  display: inline-block;
  vertical-align: bottom;
  white-space: nowrap;
  outline: none;
  font-size: $--font-size-base;
  margin-right: 20px;
  @include utils-user-select(none);

  @include when(bordered) {
    padding: $--radio-bordered-padding;
    border-radius: $--border-radius-base;
    border: $--radio-input-border;
    box-sizing: border-box;
    height: $--radio-bordered-height;
    line-height: 1;
    vertical-align: bottom;

    .el-radio__label {
      line-height: 19px;
    }

    &.is-checked {
      border-color: $--color-primary;
    }

    &.is-disabled {
      cursor: not-allowed;
      border-color: $--border-color-base;
    }
  }

  @include m(medium) {
    &.is-bordered {
      padding: $--radio-bordered-medium-padding;
      border-radius: $--button-medium-border-radius;
      height: $--radio-bordered-medium-height;
      .el-radio__label {
        line-height: 16px;
      }
    }
    .el-radio__label {
      font-size: $--button-medium-font-size;
    }
    .el-radio__inner {
      height: $--radio-bordered-medium-input-height;
      width: $--radio-bordered-medium-input-width;
    }
  }
  @include m(small) {
    &.is-bordered {
      padding: $--radio-bordered-small-padding;
      border-radius: $--button-small-border-radius;
      height: $--radio-bordered-small-height;
    }
    .el-radio__label {
      font-size: $--button-small-font-size;
    }
    .el-radio__inner {
      height: $--radio-bordered-small-input-height;
      width: $--radio-bordered-small-input-width;
      &::after {
        width: 6px;
        height: 6px;
      }
    }
  }
  @include m(mini) {
    &.is-bordered {
      padding: $--radio-bordered-mini-padding;
      border-radius: $--button-mini-border-radius;
      height: $--radio-bordered-mini-height;
      .el-radio__label {
        line-height: 14px;
      }
    }
    .el-radio__label {
      font-size: $--button-mini-font-size;
    }
    .el-radio__inner {
      height: $--radio-bordered-mini-input-height;
      width: $--radio-bordered-mini-input-width;
      &::after {
        width: 6px;
        height: 6px;
      }
    }
  }

  &:last-child {
    margin-right: 0;
  }

  @include e(input) {
    white-space: nowrap;
    cursor: pointer;
    outline: none;
    display: inline-block;
    line-height: 1;
    position: relative;
    vertical-align: middle;

    @include when(disabled) {
      .el-radio__inner {
        background-color: $--radio-disabled-input-fill;
        border-color: $--radio-disabled-input-border-color;
        cursor: not-allowed;

        &::after {
          cursor: not-allowed;
          background-color: $--radio-disabled-icon-color;
        }

        & + .el-radio__label {
          cursor: not-allowed;
        }
      }
      &.is-checked {
        .el-radio__inner {
          background-color: $--radio-disabled-checked-input-fill;
          border-color: $--radio-disabled-checked-input-border-color;

          &::after {
            background-color: $--radio-disabled-checked-icon-color;
          }
        }
      }
      & + span.el-radio__label {
        color: $--color-text-placeholder;
        cursor: not-allowed;
      }
    }

    @include when(checked) {
      .el-radio__inner {
        border-color: $--radio-checked-input-border-color;
        background: $--radio-input-background-color;

        &::after {
          transform: translate(-50%, -50%) scale(1);
          background: $--radio-checked-icon-color;
        }
      }

      // & + .el-radio__label {
      //   color: $--radio-checked-font-color;
      // }
    }

    @include when(focus) {
      .el-radio__inner {
        border-color: $--radio-input-border-color-hover;
      }
    }
  }
  @include e(inner) {
    border: $--radio-input-border;
    border-color: $--radio-input-border-color;
    border-radius: $--radio-input-border-radius;
    width: $--radio-input-width;
    height: $--radio-input-height;
    background-color: $--radio-input-background-color;
    position: relative;
    cursor: pointer;
    display: inline-block;
    box-sizing: border-box;

    &:hover {
      border-color: $--radio-input-border-color-hover;
    }

    &::after {
      width: 8px;
      height: 8px;
      border-radius: $--radio-input-border-radius;
      background-color: $--color-white;
      content: '';
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%) scale(0);
      transition: transform 0.15s ease-in;
    }
  }

  @include e(original) {
    opacity: 0;
    outline: none;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    &:focus-visible {
      & + .el-radio__inner {
        outline-offset: 1px;
        outline: 1px solid $--color-primary;
      }
    }
  }

  @include e(label) {
    font-size: $--radio-font-size;
    padding-left: 5px;
  }
}
