<!--
    filename: index.vue
    author: liubin
    date: 2023-08-30 14:02:49
    description: 设备加工数量
-->

<template>
	<div style="flex: 1; display: flex; background: #f2f4f9">
		<div
			class="app-container"
			style="
				margin-right: 12px;
				border-radius: 8px;
				background: #fff;
				padding: 0;
			">
			<div
				class="factory-list__selector"
				style="margin: 12px"
				title="点击切换工厂"
				@mouseenter="factoryListOpen = true"
				@mouseleave="factoryListOpen = false">
				{{ currentFactory?.label || '点我选择工厂' }}
				<div class="factory-list__wrapper" :class="{ open: factoryListOpen }">
					<ul
						class="factory-list"
						v-if="sidebarContent.length"
						@click.prevent="factoryChangeHandler">
						<li
							v-for="fc in sidebarContent"
							:key="fc.id"
							:data-value="fc.id"
							class="factory-list__item"
							:class="{ 'is-current': fc.id == currentFactory?.id }">
							<span :data-value="fc.id">
								{{ fc.label }}
							</span>
							<svg-icon
								v-if="fc.id == currentFactory?.id"
								icon-class="Confirm"
								style="height: 14px; width: 14px" />
						</li>
					</ul>
					<div v-else style="color: #0008; width: 128px; text-align: center">
						- 无 -
					</div>
				</div>
			</div>
			<!-- side bar  -->
			<div class="side-bar__left" style="width: 240px; height: 100%">
				<el-tree
					class="custom-tree-class"
					:data="currentFactory?.children"
					:props="treeProps"
					:empty-text="''"
					icon-class="custom-icon-class"
					@node-click="handleSidebarItemClick">
					<!-- <div class="custom-tree-node" slot-scope="{ node, data }">
						<span class="icon"></span>
						<span>{{ node.label }}</span>
					</div> -->
				</el-tree>
			</div>
		</div>
		<div
			class="app-container equipment-process-amount"
			style="flex: 1; border-radius: 8px; background: #fff">
			<!-- main area  -->
			<div
				class="main-content"
				style="height: 100%; display: flex; flex-direction: column">
				<SearchBar
					:formConfigs="searchBarFormConfig"
					ref="search-bar"
					@headBtnClick="handleSearchBarBtnClick" />

				<el-row style="flex: 1">
					<el-col class="custom-tabs" style="height: 100%">
						<el-tabs
							v-model="activeName"
							@tab-click="handleTabClick"
							style="height: 100%">
							<el-tab-pane :label="'\u2002数据列表\u2002'" name="table">
								<base-table
									v-if="mode == 'table'"
									:table-props="tableProps"
									:page="1"
									:limit="999"
									:table-data="list"
									@emitFun="handleEmitFun">
									<!-- <method-btn
							v-if="tableBtn.length"
						slot="handleBtn"
						label="操作"
						:method-list="tableBtn"
						@clickBtn="handleTableBtnClick" /> -->
								</base-table>
							</el-tab-pane>
							<el-tab-pane :label="'\u3000柱状图\u3000'" name="graph">
								<div class="graph" style="height: 100%">
									<!-- graph  -->
									<Graph
										v-if="list.length"
										:equipment-list="list"
										:render="renderKey" />
									<div v-if="list.length == 0" class="no-data-bg"></div>
								</div>
							</el-tab-pane>
						</el-tabs>
					</el-col>
				</el-row>

				<!-- <transition appear name="vvv" mode="out-in"></transition> -->
			</div>
		</div>
	</div>
</template>

<script>
import Graph from './graph.vue';

export default {
	name: 'EquipmentProcessAmount',
	components: { Graph },
	props: {},
	data() {
		return {
			renderKey: Math.random(),
			factoryListOpen: false,
			currentFactory: null,
			factoryList: [
				{ name: '1', value: 1 },
				{ name: '2', value: 2 },
				{ name: '3', value: 3 },
				{ name: '4', value: 4 },
				{ name: '5', value: 5 },
				{ name: '6', value: 6 },
			],
			sidebarContent: [
				// {
				// 	id: 'fc1',
				// 	name: '工厂',
				// 	lines: [
				// 		{
				// 			name: '产线1',
				// 			id: 'pl1',
				// 			sections: [
				// 				{
				// 					name: '工段1',
				// 					id: 'pl1ws1',
				// 					equipments: [
				// 						{
				// 							name: '设备1',
				// 							id: 'pl1ws1--eq1',
				// 						},
				// 						{
				// 							name: '设备2',
				// 							id: 'pl1ws1--eq2',
				// 						},
				// 						{
				// 							name: '设备3',
				// 							id: 'pl1ws1--eq3',
				// 						},
				// 					],
				// 				},
				// 				{
				// 					name: '工段2',
				// 					id: 'pl1ws2',
				// 					equipments: [
				// 						{
				// 							name: '设备1',
				// 							id: 'pl2ws1--eq1',
				// 						},
				// 						{
				// 							name: '设备2',
				// 							id: 'pl2ws1--eq2',
				// 						},
				// 						{
				// 							name: '设备3',
				// 							id: 'pl2ws1--eq3',
				// 						},
				// 					],
				// 				},
				// 				{
				// 					name: '工段3',
				// 					id: 'pl1ws3',
				// 					equipments: [
				// 						{
				// 							name: '设备1',
				// 							id: 'pl3ws1--eq1',
				// 						},
				// 						{
				// 							name: '设备2',
				// 							id: 'pl3ws1--eq2',
				// 						},
				// 						{
				// 							name: '设备3',
				// 							id: 'pl3ws1--eq3',
				// 						},
				// 					],
				// 				},
				// 			],
				// 		},
				// 		{
				// 			name: '产线2',
				// 			id: 'pl2',
				// 			sections: [
				// 				{
				// 					name: '工段1',
				// 					id: 'pl2ws1',
				// 				},
				// 				{
				// 					name: '工段2',
				// 					id: 'pl2ws2',
				// 				},
				// 				{
				// 					name: '工段3',
				// 					id: 'pl2ws3',
				// 				},
				// 			],
				// 		},
				// 	],
				// },
			],
			activeName: 'table',
			searchBarFormConfig: [
				{
					type: 'datePicker',
					label: '时间段',
					dateType: 'daterange', // datetimerange
					format: 'yyyy-MM-dd',
					valueFormat: 'yyyy-MM-dd HH:mm:ss',
					rangeSeparator: '-',
					startPlaceholder: '开始日期',
					endPlaceholder: '结束日期',
					defaultTime: ['00:00:00', '23:59:59'],
					param: 'timeVal',
					width: 350,
				},
				{
					type: 'button',
					btnName: '查询',
					name: 'search',
					color: 'primary',
				},
				// {
				// 	type: 'separate',
				// },
				// {
				// 	type: 'button',
				// 	btnName: '表格',
				// 	name: 'table',
				// 	plain: true,
				// 	color: 'success',
				// },
				// {
				// 	type: 'button',
				// 	btnName: '图表',
				// 	name: 'graph',
				// 	plain: true,
				// 	color: 'warning',
				// },
				// {
				// 	type: this.$auth.hasPermi('base:equipment-group:export') ? 'button' : '',
				// 	btnName: '导出',
				// 	name: 'export',
				// 	color: 'warning',
				// },
			],
			tableProps: [
				{ prop: 'lineName', label: '产线' },
				{ prop: 'sectionName', label: '工段' },
				// { prop: 'externalCode', label: '设备编码' },
				{ prop: 'equipmentCode', label: '设备编码' },
				{ prop: 'equipmentName', label: '设备名称' },
				{ prop: 'totalQuantity', label: '加工数量' },
			],
			mode: 'table', // table | graph
			queryParams: {
				// pageNo: 1,
				// pageSize: 999,
				recordTime: [],
				equipmentId: null,
				lineId: null,
				sectionId: null,
				productId: null,
			},
			list: [],
			treeProps: {
				children: 'children',
				label: 'label',
			},
		};
	},
	mounted() {
		this.getTree();
	},
	methods: {
		/** build side bar tree */
		buildTree(data) {
			data.forEach((factory) => {
				this.$set(factory, 'label', factory.name);
				this.$set(factory, 'type', '工厂');
				delete factory.name;
				// factory.children = factory.lines;
				// delete factory.lines;
				factory.children?.forEach((line) => {
					this.$set(line, 'label', line.name);
					this.$set(line, 'type', '产线');
					delete line.name;
					// line.children = line.sections;
					// delete line.sections;
					line.children?.forEach((ws) => {
						this.$set(ws, 'label', ws.name);
						this.$set(ws, 'type', '工段');
						delete ws.name;
						// ws.children = ws.equipments;
						// delete ws.equipments;
						ws.children?.forEach((eq) => {
							this.$set(eq, 'label', eq.name);
							this.$set(eq, 'type', '设备');
							delete eq.name;
						});
					});
				});
			});
		},

		async getTree() {
			const { data } = await this.$axios('/base/core-factory/getTree');
			this.sidebarContent = data;
			this.buildTree(data);
			console.log('tree', this.sidebarContent);
		},

		handleTabClick(tab, event) {
			if (tab.name == 'graph') this.renderKey = Math.random();
		},

		factoryChangeHandler(event) {
			this.factoryListOpen = false;
			const fcId = event.target.dataset.value;
			this.handleSidebarItemClick({ id: fcId, type: '工厂' });
			this.currentFactory = this.sidebarContent.find((item) => item.id == fcId);
		},

		handleSidebarItemClick({ label, id, type }) {
			console.log('label clicked!', label, id, type);
			switch (type) {
				case '设备':
					this.queryParams.equipmentId = id;
					break;
				case '工段':
					this.queryParams.equipmentId = null;
					this.queryParams.sectionId = id;
					break;
				case '产线':
					this.queryParams.equipmentId = null;
					this.queryParams.sectionId = null;
					this.queryParams.lineId = id;
					break;
				case '工厂':
					this.queryParams.equipmentId = null;
					this.queryParams.sectionId = null;
					this.queryParams.lineId = null;
					break;
			}
		},

		handleEmitFun() {},

		handleSearchBarBtnClick(btn) {
			switch (btn.btnName) {
				case 'table':
					this.mode = 'table';
					break;
				case 'graph':
					this.mode = 'graph';
					break;
				case 'search':
					if (btn.timeVal != null && btn.timeVal.length > 0)
						this.queryParams.recordTime = btn.timeVal;
					else this.queryParams.recordTime = null;
					this.handleQuery();
					break;
			}
		},

		async handleQuery() {
			console.log('queryParams', this.queryParams);
			const { data } = await this.$axios({
				url: '/monitoring/equipment-monitor/quantity-det-list',
				method: 'get',
				params: this.queryParams,
			});
			this.list = data;
		},
	},
};
</script>

<style scoped>
.side-bar__left >>> .is-current {
	padding: 0;
	color: #111;
	/* background: #f2f4f7; */
	background: #e3efff !important;
}

.vvv-enter,
.vvv-leave-to {
	/* transform: translateY(24px) scaleY(0); */
	transform: translateY(24px);
	opacity: 0;
}

.vvv-enter-active,
.vvv-leave-active {
	transition: all 0.3s ease-out;
}

.vvv-enter-to,
.vvv-leave {
	/* transform: translateY(0) scaleY(1); */
	transform: translateY(0);
}

.custom-tabs >>> .el-tabs__header {
	margin-bottom: 8px;
	display: inline-block;
	transform: translateY(-12px);
}
.custom-tabs >>> .el-tabs__item {
	padding-left: 0px !important;
	padding-right: 0px !important;
	line-height: 36px !important;
	height: 36px;
}

.factory-list__selector {
	position: relative;
	height: 36px;
	font-size: 16px;
	line-height: 36px;
	padding-left: 28px;
	background: url(../../../assets/images/factory-icon.png) 0 / 10% no-repeat;
}

.factory-list__selector:hover {
	cursor: pointer;
	color: #0008;
}

.factory-list__selector::after {
	/* content: ''; */
	position: absolute;
	top: 16px;
	right: 12px;
	display: inline-block;
	width: 8px;
	height: 8px;
	/* background: #5c5c5c; */
	border-color: #000;
	border-width: 4px;
	border-style: solid;
	border-top-color: transparent;
	border-right-color: transparent;
	border-bottom-color: transparent;
}
.factory-list__selector:hover::after {
	/* cursor: pointer; */
	border-left-color: #0008;
}

.factory-list__wrapper {
	visibility: hidden;
	position: absolute;
	background: #fff;
	box-shadow: 0 0 32px 10px #0002;
	border-radius: 8px;
	top: 36px;
	left: 90px;
	/* max-width: 128px; */
	height: auto;
	width: auto;
	white-space: nowrap;
	overflow: hidden;
	/* transition: all 0.3s ease-out; */
	z-index: 1000;
}

.factory-list__wrapper.open {
	visibility: visible;
}

ul,
li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.factory-list {
	color: #0008;
	max-height: 240px;
	overflow-y: auto;
}

.factory-list__item {
	font-size: 16px;
	line-height: 1;
	padding: 8px 16px 8px 16px;
	min-width: 128px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.factory-list__item:hover,
.factory-list__item.is-current {
	background: #e3efff;
	color: #0b58ff;
}

/* .factory-list__item.is-current::after {
	content: '√';
	position: absolute;
	top: 8px;
	right: 16px;
	font-weight: bold;
} */

.custom-tree-class >>> .el-tree-node__content {
	width: 100%;
	height: auto !important;
	padding: 8px 12px !important;
}
.custom-tree-class >>> .el-tree-node__content:hover {
	background: #e3efff;
}

.custom-tree-class >>> .el-tree-node__children .el-tree-node__content {
	padding: 8px 18px !important;
}

.custom-tree-class
	>>> .el-tree-node__children
	.el-tree-node__children
	.el-tree-node__content {
	padding: 8px 24px !important;
}

.custom-tabs >>> .el-tabs__content {
	height: calc(100% - 42px);
}
.custom-tabs >>> .el-tab-pane {
	height: 100%;
}
</style>

<style>
.custom-icon-class {
	margin-right: 8px;
	width: 20px;
	height: 20px;
	background: url('../../../assets/images/Qian.png') center center / contain
		no-repeat;
}

.custom-icon-class.el-tree-node__expand-icon.expanded {
	transform: unset;
}

.el-tree-node__children .custom-icon-class {
	background: url('../../../assets/images/tree-icon-2.png') 100% / contain
		no-repeat;
}

.el-tree-node__children .el-tree-node__children .custom-icon-class {
	background: unset;
}
</style>