@use 'mixins/mixins' as *;
@use 'common/var' as *;

@mixin op-icon() {
  width: 32px;
  height: 32px;
  font-size: 20px;
  color: getCssVar('color-white');
  background-color: getCssVar('color-black');
  box-shadow: getCssVar('box-shadow-lv2');

  &:hover {
    cursor: pointer;
    color: getCssVar('color-primary');
  }
}

@include b(image-viewer) {
  @include e(wrapper) {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  @include e(btn) {
    position: absolute;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    // opacity: 0.8;
    box-sizing: border-box;
    user-select: none;

    &:hover {
      cursor: pointer;
      color: getCssVar('color-primary');
    }

    .#{$namespace}-icon {
      font-size: inherit;
    }
  }

  @include e(close) {
    top: 32px;
    right: 32px;
    width: 32px;
    height: 32px;
    font-size: 20px;
  }

  @include e(canvas) {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
  }

  @include e(actions) {
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    width: 240px;
    height: 36px;
    padding: 0 20px;
    background-color: getCssVar('color-black');
    border-color: getCssVar('color-black');
    border-radius: 18px;
    box-shadow: getCssVar('box-shadow-lv2');

    @include e(actions__inner) {
      width: 100%;
      height: 100%;
      text-align: justify;
      cursor: default;
      font-size: 20px;
      color: getCssVar('color-white');
      display: flex;
      align-items: center;
      justify-content: space-around;

      .#{$namespace}-icon {
        &:hover {
          cursor: pointer;
          color: getCssVar('color-primary');
        }
      }
    }
  }

  @include e(prev) {
    top: 50%;
    transform: translateY(-50%);
    left: 32px;
    @include op-icon();
  }

  @include e(next) {
    top: 50%;
    transform: translateY(-50%);
    right: 32px;
    text-indent: 2px;
    @include op-icon();
  }

  @include e(close) {
    @include op-icon();
  }

  @include e(mask) {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    // opacity: 0.5;
    background: getCssVar('color-overlay');
  }
}

.viewer-fade-enter-active {
  animation: viewer-fade-in getCssVar('transition-duration');
}

.viewer-fade-leave-active {
  animation: viewer-fade-out getCssVar('transition-duration');
}

@keyframes viewer-fade-in {
  0% {
    transform: translate3d(0, -20px, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes viewer-fade-out {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  100% {
    transform: translate3d(0, -20px, 0);
    opacity: 0;
  }
}
