@import "mixins/mixins";
@import "mixins/utils";
@import "common/var";

@include b(progress) {
  position: relative;
  line-height: 1;

  @include m(line) {
    display: table;
    width: 100%;
  }

  @include e(text) {
    font-size:14px;
    color: $--color-text-primary;
    display: table-cell;
    vertical-align: middle;
    padding-left: 10px;
    line-height: 1;
    white-space: nowrap;

    i {
      vertical-align: middle;
      display: block;
    }
  }

  @include m((circle,dashboard)) {
    display: inline-block;

    .el-progress__text {
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      text-align: center;
      margin: 0;
      padding: 0;
      transform: translate(0, -50%);

      i {
        vertical-align: middle;
        display: inline-block;
      }
    }
  }


  @include m(without-text) {
    .el-progress__text {
      display: none;
    }

    .el-progress-bar {
      padding-right: 0;
      margin-right: 0;
      display: block;
    }
  }

  @include m(text-inside) {
    .el-progress-bar {
      padding-right: 0;
      margin-right: 0;
    }
  }

  @include when(success) {
    .el-progress-bar__inner {
      background-color: $--color-success;
    }

    .el-progress__text {
      color: $--color-success;
    }
  }

  @include when(warning) {
    .el-progress-bar__inner {
      background-color: $--color-warning;
    }

    .el-progress__text {
      color: $--color-warning;
    }
  }

  @include when(exception) {
    .el-progress-bar__inner {
      background-color: $--color-danger;
    }

    .el-progress__text {
      color: $--color-danger;
    }
  }
}

@include b(progress-bar) {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  box-sizing: border-box;

  @include e(outer) {
    height: 10px;
    border-radius: 100px;
    background-color: $--border-color-base;
    overflow: hidden;
    position: relative;
    vertical-align: middle;
  }
  @include e(inner) {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: $--color-primary;
    text-align: right;
    border-radius: 100px;
    line-height: 1;
    white-space: nowrap;
    transition: width 0.6s ease;
    @include utils-vertical-center;
    &.active::before{
      content: "";
      opacity: 0;
      position: absolute;
      left: 0;
      bottom: 0;
      height: 100%;
      background: $--color-white;
      border-radius: 100px;
      animation:progress-active 2s ease-in-out infinite;
    }
    @include when(indeterminate) {
      transform: translateZ(0);
      animation: indeterminate 3s infinite;
    }
    @include when(striped) {
      background-image: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.1) 25%,
        transparent 25%,
        transparent 50%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.1) 75%,
        transparent 75%,
        transparent
      );
      background-size: 1.25em 1.25em;
      &.el-progress-bar__inner--striped-flow {
        animation: striped-flow 3s linear infinite;
      }
    }
  }

  @include e(innerText) {
    display: inline-block;
    vertical-align: middle;
    color: $--color-white;
    font-size: 12px;
    margin: 0 5px;
  }
}

@keyframes progress {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 32px 0;
  }
}

@keyframes progress-active {
  0% {
    opacity:.4;
    width:0
  }
  to {
    opacity:0;
    width:100%
  }
}

 @keyframes indeterminate {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

@keyframes striped-flow {
  0% {
    background-position: -100%;
  }

  100% {
    background-position: 100%;
  }
}
