<template>
  <view class="container activity-content">
    <view class="top-content-box">
      <search-bar @goSearch="goSearch" :searchTitle="searchPlaceholderList.SummarySearch" :width="52">
        <template slot="content-left">
          <view class="content">
            <view class="activity-back" @click="activityPlayBack" v-if="isUserBindingPhoneNumber">
              <image src="https://hzchart.oss-cn-shanghai.aliyuncs.com/new_cygx/at_back.png"></image>
              回放
            </view>
          </view>
        </template>
      </search-bar>
      <view class="screen-item">
        <text v-if="isUserBindingPhoneNumber" :class="isShowJurisdiction ? 'active' : ''" @click="permissioActivity">有权限行业</text>
        <!-- 各种状态选择 -->
        <view class="select-conyent" ref="select-conyent">
          <van-dropdown-menu active-color="#333333">
            <van-dropdown-item id="industry" :title="chartPermissionName">
              <view class="menu-items">
                <view class="menu-items-box" v-for="item in listChartPermission" :key="item.ChartPermissionId" @click="overallClick(item)">
                  <view class="items-box">
                    <u-icon v-if="item.IsChoose" name="checkbox-mark" :color="isShowJurisdiction ? '#ccc' : '#376cbb'" size="24"></u-icon>
                  </view>
                  <text>{{ item.PermissionName }}</text>
                </view>
              </view>
              <view class="replacement">
                <text @click="replacementBtn" class="replacement-box">重置</text>
                <text @click="replacementConfirm">确定</text>
              </view>
            </van-dropdown-item>
          </van-dropdown-menu>
        </view>
        <text v-for="item in activityTimeList" :key="item.Id" :class="item.IsChoose ? 'active' : ''" @click="isActivityDate(item.Id)">{{ item.StatusName }}</text>
      </view>
    </view>

    <!-- 筛选状态 -->

    <!-- 活动列表 -->
    <block>
      <view class="collect-activity" v-if="haveData">
        <activityTypeList
          :dataList="collectTypeList"
          :chartPermissionIds="chartPermissionIds"
          :isShowJurisdiction="isShowJurisdiction"
          :whichDay="whichDay"
          containerStyle="padding: 34rpx;display: flex;"
        />
        <view class="end-activity-text" v-if="collectTypeList.length" @click="endActivity">已结束活动 >></view>
      </view>
      <view class="nodata" v-if="!haveData">
        <image src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/act_search.png" mode="" class="nodata_ico"></image>
        <text>暂时没有符合条件的活动</text>
      </view>
      <freeCharge class="free-charge" :isShowFreeBtn="isShowFree" />
    </block>
    <!-- <not-have-login v-else /> -->
    <Loading />
  </view>
</template>

<script>
import { activity } from "@/config/api.js";
import { Throttle } from "@/config/util.js";
import SearchBar from "@/components/search-bar/searchBar.vue";
import activityTypeList from "./components/activityTypeList.vue";
import freeCharge from "@/components/freeCharge";
import NotHaveLogin from "../../components/notHaveLogin.vue";
let app = getApp();
export default {
  components: {
    freeCharge,
    SearchBar,
    NotHaveLogin,
    activityTypeList,
  },
  data() {
    return {
      whichDay: "",
      activityTypeId: "",
      chartPermissionIds: "",
      chartPermissionName: "全行业",
      isGetJurisdiction: 0,
      isrefresh: true,
      isShowJurisdiction: false, //
      haveData: true,
      listChartPermission: [],
      listChartPermissionInit: [],
      collectTypeList: [],
      activityTimeList: [
        { Id: 1, IsChoose: false, StatusName: "今日活动" },
        { Id: 2, IsChoose: false, StatusName: "明日活动" },
      ],
    };
  },
  computed: {
    messageTitle() {
      // 计算分享时候的title
      let arr = this.whichDay ? this.whichDay.split(",") : [];
      let whichData = arr.length == 2 ? "今日活动,明日活动" : arr == "1" ? "今日活动" : arr == "2" ? "明日活动" : "";
      let title = whichData ? whichData + "," + this.chartPermissionName : this.chartPermissionName !== "全行业" ? this.chartPermissionName : "";
      return title || "近期全行业活动预告";
    },
  },
  methods: {
    // 获取权限、所有的行业
    async getUserSearchContent() {
      // IsHideResearch 行业列表是否隐藏 买方研选
      const res = await activity.getUserSearchContent({
        IsShowJurisdiction: this.isGetJurisdiction,
        IsHideResearch: false,
      });
      if (res.Ret === 200) {
        this.isShowJurisdiction = res.Data.IsShowJurisdiction;
        this.listChartPermission = res.Data.ListChartPermission;
        this.listChartPermissionInit = res.Data.ListChartPermission2;
        this.clickPermission();
        if (this.chartPermissionIds) {
          this.closeTheWindow();
        }
      }
    },

    // 获取列表数据
    async getActivityLabelTypeList() {
      const res = await activity.getActivityLabelTypeList({
        ChartPermissionIds: this.chartPermissionIds,
        IsShowJurisdiction: this.isGetJurisdiction,
        ActiveState: "1",
        WhichDay: this.whichDay,
        IsPower: this.isGetJurisdiction,
      });
      if (res.Ret === 200) {
        this.collectTypeList = res.Data.List || [];
        this.haveData = this.collectTypeList.length ? true : false;
        if (this.refresh) {
          uni.stopPullDownRefresh();
          this.refresh = false;
        }
      }
    },

    // 下拉的选择的关闭事件
    closeTheWindow() {
      const types = this.chartPermissionIds ? this.chartPermissionIds.split(",").map(Number) : [];
      if (types.length > 0) {
        const str = [];
        this.listChartPermission.forEach((item) => {
          if (types.includes(item.ChartPermissionId)) {
            item.IsChoose = true;
            str.push(item.PermissionName);
          } else {
            item.IsChoose = false;
          }
        });
        this.chartPermissionName = str.length == 6 ? "全行业" : str.join(",");
      }
    },

    // 下拉的选择的选中事件
    overallClick(item) {
      if (this.isShowJurisdiction) return;
      this.listChartPermission.forEach((key) => {
        if (key.ChartPermissionId == item.ChartPermissionId) {
          key.IsChoose = !key.IsChoose;
        }
      });
    },

    // 下拉的选择的重置事件
    replacementBtn() {
      this.listChartPermission = this.listChartPermissionInit;
      this.chartPermissionIds = "";
      this.isShowJurisdiction = false;
      this.listChartPermission.map((item) => (item.IsChoose = false));
      this.chartPermissionName = "全行业";
      this.getActivityLabelTypeList();
    },

    // 下拉选择的确定事件
    replacementConfirm() {
      const arr = [];
      const str = [];
      this.listChartPermission &&
        this.listChartPermission.forEach((key) => {
          if (key.IsChoose) {
            arr.push(key.ChartPermissionId);
            str.push(key.PermissionName);
          }
        });
      if (str.length == this.listChartPermission.length || str.length <= 0) {
        this.chartPermissionName = "全行业";
      } else {
        this.chartPermissionName = str.join(",");
      }
      this.chartPermissionIds = arr.join(",");
      this.getActivityLabelTypeList();
      this.selectComponent("#industry").toggle(false);
    },

    // 今日明日的点击事件
    isActivityDate(id) {
      this.selectComponent("#industry").toggle(false);
      this.activityTimeList.forEach((item) => {
        if (item.Id == id) item.IsChoose = !item.IsChoose;
      });
      const arr = [];
      this.activityTimeList.forEach((item) => item.IsChoose && arr.push(item.Id));
      this.whichDay = arr.join(",");
      this.getActivityLabelTypeList();
    },

    // 是否有权限的点击事件
    async permissioActivity() {
      if (!this.$store.state.isAuth && !this.$store.state.isBind) {
        this.selectComponent("#industry").toggle(false);
        this.isShowJurisdiction = !this.isShowJurisdiction;
        this.isGetJurisdiction = this.isShowJurisdiction ? 1 : 2;
        await this.getUserSearchContent();
        this.selectComponent("#industry").toggle(false);
        if (this.isShowJurisdiction) {
          this.getActivityLabelTypeList();
        } else {
          this.replacementBtn();
        }
      } else {
        //已授权未绑定
        this.$store.dispatch("checkHandle");
      }
    },

    // 点击后有权限的
    clickPermission() {
      if (this.isShowJurisdiction) {
        const arr = [];
        this.listChartPermission &&
          this.listChartPermission.forEach((key) => {
            if (key.IsChoose) {
              arr.push(key.ChartPermissionId);
            }
          });
        this.chartPermissionIds = arr.join(",");
      }
    },
    // 进入页面 判断是否是分享的
    loadShare(option) {
      if (option && Object.keys(option).length !== 0) {
        this.whichDay = option.whichDay || "";
        this.chartPermissionIds = option.chartPermissionIds || "";
        this.isGetJurisdiction = option.isGetJurisdiction;
        this.$nextTick(() => {
          let day = this.whichDay ? this.whichDay.split(",").map(Number) : [];
          this.activityTimeList.forEach((item) => {
            if (day.includes(item.Id)) {
              item.IsChoose = true;
            }
          });
        });
      }
    },
    //去往搜索事件
    goSearch() {
      uni.navigateTo({ url: "/pages-search/indedxSearch/indedxSearch?source=活动页面" });
    },
    //去往 活动回放activityPlayBack
    async activityPlayBack() {
      // await this.$store.dispatch("showLoginModal");
      uni.navigateTo({ url: "/activityPages/playBack/playBack" });
    },
    // 跳转已结束活动
    endActivity() {
      uni.navigateTo({
        url: "/activityPages/endActivity/endActivity",
      });
    },
  },
  //load
  onLoad(option) {
    this.loadShare(option);
    this.getUserSearchContent();
    this.getActivityLabelTypeList();
  },
  onShow() {
    this.$store.commit("setRouterReport", "活动");
    this.$store.commit("setRouterActivity", "活动");
    this.getRecordTracking("活动");
  },
  /** 用户点击分享 */
  onShareAppMessage: function (res) {
    return {
      title: this.isHorzMobile ? "好友向您推荐此内容,上传名片享查研观向免费月卡!" : this.messageTitle,
      path: "/pages/activity/activity?whichDay=" + this.whichDay + "&chartPermissionIds=" + this.chartPermissionIds + "&isGetJurisdiction=" + this.isGetJurisdiction,
    };
  },
  /* 下拉刷新 */
  onPullDownRefresh: Throttle(function () {
    this.refresh = true;
    this.page_no = 1;
    this.getActivityLabelTypeList();
  }),
  // 页面滚动事件
  onPageScroll() {},
};
</script>

<style scoped lang="scss">
.activity-content {
  background-color: $uni-bg-color;
  padding-bottom: 90rpx;
  position: relative;
  .top-content-box {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background-color: #fff;
    /deep/ .nav-bar-wrap {
      .content {
        height: 100%;
        display: flex;
        align-items: center;
        padding-left: 30rpx;
        margin-right: 20rpx;
        .activity-back {
          display: flex;
          flex-shrink: 0;
          align-items: center;
          color: $uni-color-new;
          font-size: 30rpx;
          image {
            width: 40rpx;
            height: 40rpx;
          }
        }
      }
    }
  }
  .screen-item {
    height: 100rpx;
    padding: 0 34rpx;
    font-size: 24rpx;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text {
      width: 150rpx;
      text-align: center;
      line-height: 51rpx;
      background-color: #f8f8fa;
      box-sizing: border-box;
      border-radius: 26rpx;
    }
    .active {
      background-color: $uni-color-new;
      color: #fff;
    }
  }
  .select-conyent {
    .decide {
      background-color: #f8f8fa;
      display: flex;
      align-items: center;
      margin: 0 auto;
      height: 110rpx;
      width: 100%;
      padding-left: 30rpx;
    }
    .items-box {
      width: 40rpx;
    }
    .menu-items {
      background-color: #f8f8fa;
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      padding: 30rpx 30rpx 0;
      .menu-items-box {
        display: flex;
        width: 50%;
        font-size: 28rpx;
        font-weight: 400;
        margin-bottom: 40rpx;
      }
      text {
        text-align: left;
      }
    }
    .replacement {
      margin: 0rpx 30rpx 20rpx;
      display: flex;
      background-color:  $uni-color-new;
      height: 60rpx;
      font-size: 28rpx;
      font-weight: 400;
      color: #ffffff;
      border-radius: 30rpx;
      box-sizing: border-box;
      text {
        flex: 1;
        line-height: 58rpx;
        background-color:  $uni-color-new;
      }
      .replacement-box {
        border: 1rpx solid  $uni-color-new;
        color:  $uni-color-new;
        background: #ffffff;
        border-radius: 28rpx 0rpx 28rpx 28rpx;
      }
    }
  }
  .nodata_ico {
    width: 374rpx;
    height: 288rpx;
  }
  .end-activity-text {
    display: flex;
    justify-content: center;
    margin-top: 60rpx;
    color: $uni-color-new;
  }
  /deep/.not-have-login {
    padding-top: 200rpx !important;
  }
}
/deep/.van-dropdown-menu {
  background-color: #fff;
  box-shadow: none !important;
  align-items: center !important;
}
/deep/.van-dropdown-menu__item {
  box-sizing: border-box;
  width: 160rpx;
  padding-right: 20rpx;
  height: 51rpx;
  border-radius: 26rpx;
  background: #f8f8fa;
}
/deep/.van-dropdown-item {
  margin-top: -10rpx;
}
/deep/[data-index="2"] {
  margin-right: 0rpx;
}
/deep/ .van-ellipsis {
  font-size: 24rpx;
}
@import "@/components/activity/indexActivity.scss";
</style>