<template>
	<div class="main">
		<view class='flash-sale'>
			<view class='list'>
				<view v-for="(item,index) in broadcastList" :key='index' >
					<navigator hover-class="none" :url="((item.live_status == 103 &&  item.replay_status) || item.live_status === 101 || item.live_status === 102) ? 'plugin-private://wx2b03c6e691cd7370/pages/live-player-plugin?room_id=' + item.room_id : ''">
						<view class='item acea-row row-between-wrapper'>
							<view class="live-image">
								<img class="image" :src="item.share_img">
								<view class="live-top" :class="item.live_status == 102 ? 'playRadius' : 'notPlayRadius'" :style="'background:' + (item.live_status == 101 ? playBg : (item.live_status != 101 && item.live_status != 102) ? endBg : notBg) + ';'">
									<block v-if="item.live_status == 101">
										<image :src="`${domain}/static/images/live-01.png`" mode=""></image>
										<text>直播中</text>
									</block>
									<block v-if="item.live_status == 103 && item.replay_status === 1">
										<image :src="`${domain}/static/images/live-02.png`" mode=""></image>
										<text>回放</text>
									</block>
									<block v-if="(item.live_status != 101 && item.live_status != 102 && item.live_status != 103) ||  (item.live_status == 103 && item.replay_status == 0)">
										<image :src="`${domain}/static/images/live-02.png`" mode=""></image>
										<text>已结束</text>
									</block>
									<block v-if="item.live_status == 102">
										<image :src="`${domain}/static/images/live-03.png`" mode=""></image>
										<text>预告</text>
									</block>
								</view>
								<view v-if="item.live_status == 101 || item.live_status == 102" class="broadcast-time">{{ item.show_time }}</view>
							</view>
							<view class="live-wrapper">
								<view class="live-title">{{ item.name }}</view>
								<view class="live-store">{{ item.anchor_name }}</view>
								<view class="pro-count" style="white-space: nowrap; display: flex" v-if="item.broadcast.length > 0">
									<navigator hover-class="none" class="item" v-for="(itm, idx) in item.broadcast" :key="idx">
										<view class="pro-img" v-if="idx < 3">
											<image :src="itm.goods.cover_img"></image>
											<view class="price" v-if="idx < 2">¥{{itm.goods.price}}</view>
											<view v-else class="more">+{{ item.broadcast.length - 2 }}</view>
										</view>
									</navigator>
								</view>
							</view>
						</view>
					</navigator>
				</view>
				<view class='loadingicon acea-row row-center-wrapper'>
					<text class='loading iconfont icon-jiazai' :hidden='loading==false'></text>{{loadTitle}}
				</view>
			</view>
		</view>
		<home></home>
	</div>
</template>

<script>
	// +----------------------------------------------------------------------
	// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
	// +----------------------------------------------------------------------
	// | Copyright (c) 2016~2024 https://www.crmeb.com All rights reserved.
	// +----------------------------------------------------------------------
	// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
	// +----------------------------------------------------------------------
	// | Author: CRMEB Team <admin@crmeb.com>
	// +----------------------------------------------------------------------
	import {
		getBroadcastListApi
	} from '../../../api/store.js';
	import home from '@/components/home/index.vue'
	import { HTTP_REQUEST_URL } from '@/config/app';
	export default {
		components: {
			home
		},
		data() {
			return {
				topImage: '',
				broadcastList: [],
				loadTitle: '加载更多',
				scrollLeft: 0,
				interval: 0,
				status: 1,
				page: 1,
				limit: 5,
				loading: false,
				loadend: false,
				pageloading: false,
				endBg: 'linear-gradient(#666666, #999999)',
				notBg: 'rgb(26, 163, 246)',
				playBg: 'linear-gradient(#FF0000, #FF5400)',
				domain: HTTP_REQUEST_URL,
			}
		},
		/**
		 * 用户点击右上角分享
		 */
		// #ifdef MP
		onShareAppMessage: function() {
			wx.showShareMenu({
			      withShareTicket: true,
			      menus: ['shareAppMessage', 'shareTimeline']
			    })	
			return {
				title: '直播',
				path: 'pages/activity/liveBroadcast/index',
			}
		},
		onShareTimeline: function() {
			return {
				title: '直播',
				  query: {
				    key: ''
				  },
				  imageUrl: ''
				}      
		},
		// #endif
		onLoad() {
			this.getBroadcastList();
		},
		methods: {
			getBroadcastList() {
				var that = this;
				var data = {
					page: that.page,
					limit: that.limit,
				};
				if (that.loadend) return;
				if (that.pageloading) return;
				this.pageloading = true
				getBroadcastListApi(data).then(res => {
					var list = res.data.list;
					var loadend = list.length < that.limit;
					that.page++;
					that.broadcastList = that.broadcastList.concat(list),
					that.page = that.page;
					that.pageloading = false;
					that.loadend = loadend;
					that.loadTitle = loadend ? '我也是有底线的' : '加载更多';
				}).catch(err => {
					that.pageloading = false
					that.loadTitle = '我也是有底线的'
				});
			},
		},
		/**
		 * 页面上拉触底事件的处理函数
		 */
		onReachBottom: function() {
			this.getBroadcastList();
		}
	}
</script>

<style lang="scss">
	.main {
		padding: 0 20rpx;
		margin-top: 20rpx;
		.row-between-wrapper {
			margin-bottom: 20rpx;
			display: flex;
			flex-direction: row;
			flex-wrap: wrap;
			justify-content: space-between;
			border-radius: 18rpx;
			.live-image {
				position: relative;
				width: 355rpx;
				height: 272rpx;
				border-radius: 18rpx 0 0 18rpx;

				.image {
					width: 100%;
					height: 100%;
					border-radius: 18rpx 0 0 18rpx;
				}
			}

			.live-wrapper {
				width: 50%;
				height: 272rpx;
				padding: 20rpx;
				background: #fff;
				border-radius: 0 18rpx 18rpx 0;
				position: relative;

				.live-title {
					font-size: 30rpx;
					color: #282828;
					font-weight: bold;
				}

				.live-store {
					font-size: 24rpx;
					color: #666666;
				}

				.pro-count {
					width: 330rpx;
					height: 100rpx;
					white-space: nowrap;
					position: absolute;
					bottom: 20rpx;
				}

				.item {
					width: 100rpx;
					height: 100rpx;
					margin-right: 15rpx;
					border-radius: 8rpx;
					position: relative;
					.pro-img{
						width: 100rpx;
						height: 100rpx;
					}
					image {
						width: 100rpx;
						height: 100rpx;
						max-width: 100%;
						border-radius: 8rpx;
					}

					.price {
						text-align: center;
						color: #FEFEFE;
						position: absolute;
						bottom: 4rpx;
						left: 0;
						width: 100%;
						font-size: 22rpx;
						background: rgba(0,0,0,.5);
						border-radius: 0 0 8rpx 8rpx;
					}

					.more {
						width: 100rpx;
						height: 100rpx;
						line-height: 100rpx;
						text-align: center;
						font-size: 28rpx;
						color: #FEFEFE;
						font-weight: bold;
						position: absolute;
						top: 0;
						left: 0;
						background-color: rgba(0, 0, 0, .2);
						border-radius: 8rpx;
					}
				}
			}
		}
	}

	.live-top {
		z-index: 20;
		position: absolute;
		left: 0;
		top: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #fff;
		min-width: 130rpx;
		max-width: 140rpx;
		height: 50rpx;	
		font-size: 22rpx;
		&.playRadius {
			border-radius:  18rpx 0px 0 0px;
		}
		
		&.notPlayRadius {
			border-radius: 18rpx 0px 18rpx 0px;
		}
		image {
			width: 30rpx;
			height: 30rpx;
			margin-right: 10rpx;
			/* #ifdef H5 */
			display: block;
			/* #endif */
		}
	}
	.broadcast-time {
		z-index: 20;
		position: absolute;
		left: 130rpx;
		top: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #fff;
		width: 160rpx;
		height: 50rpx;
		background: rgba(0,0,0,.4);
		font-size: 22rpx;
		border-radius: 0 0 18rpx 0;
	}
</style>