mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-24 17:23:50 +02:00
424 lines
14 KiB
Vue
424 lines
14 KiB
Vue
<template>
|
|
<div style="width: 100%">
|
|
<div class="mt-15" style="height: 25px">
|
|
<transition name="el-fade-in-linear">
|
|
<Location
|
|
v-show="!isLoading"
|
|
class="flex items-center justify-center"
|
|
:location="activityDetailData[0]?.location"
|
|
is-open-previous-instance-info-dialog />
|
|
</transition>
|
|
</div>
|
|
|
|
<div v-if="hasChartData" ref="activityDetailChartRef"></div>
|
|
<div v-else style="display: flex; justify-content: center; align-items: center; min-height: 160px; width: 100%">
|
|
<DataTableEmpty type="nodata" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { computed, nextTick, onBeforeUnmount, onMounted, ref, watch } from 'vue';
|
|
import { DataTableEmpty } from '@/components/ui/data-table';
|
|
import { storeToRefs } from 'pinia';
|
|
|
|
import dayjs from 'dayjs';
|
|
|
|
import { useAppearanceSettingsStore, useUserStore } from '../../../stores';
|
|
import { timeToText } from '../../../shared/utils';
|
|
|
|
import * as echarts from 'echarts';
|
|
import { showUserDialog } from '../../../coordinators/userCoordinator';
|
|
|
|
const { isDarkMode, dtHour12 } = storeToRefs(useAppearanceSettingsStore());
|
|
|
|
const { currentUser } = storeToRefs(useUserStore());
|
|
|
|
const props = defineProps({
|
|
activityDetailData: {
|
|
type: Array,
|
|
required: true
|
|
},
|
|
barWidth: {
|
|
type: Number,
|
|
required: true,
|
|
default: 10
|
|
}
|
|
});
|
|
|
|
const activityDetailChartRef = ref(null);
|
|
|
|
const isLoading = ref(true);
|
|
let echartsInstance = null;
|
|
const usersFirstActivity = ref(null);
|
|
const resizeObserver = ref(null);
|
|
const hasChartData = computed(() => (props.activityDetailData || []).length > 0);
|
|
|
|
const startTimeStamp = computed(() => {
|
|
return props.activityDetailData.find((item) => item.user_id === currentUser.value.id)?.joinTime.valueOf();
|
|
});
|
|
|
|
const endTimeStamp = computed(() => {
|
|
return props.activityDetailData.find((item) => item.user_id === currentUser.value.id)?.leaveTime.valueOf();
|
|
});
|
|
|
|
watch(
|
|
() => isDarkMode.value,
|
|
() => {
|
|
if (echartsInstance) {
|
|
echartsInstance.dispose();
|
|
echartsInstance = null;
|
|
initEcharts();
|
|
}
|
|
}
|
|
);
|
|
|
|
watch(
|
|
() => dtHour12.value,
|
|
() => {
|
|
if (echartsInstance) {
|
|
initEcharts();
|
|
}
|
|
}
|
|
);
|
|
|
|
initResizeObserver();
|
|
|
|
onMounted(async () => {
|
|
await nextTick();
|
|
initEcharts();
|
|
});
|
|
|
|
// onDeactivated(() => {
|
|
// // prevent switch tab play resize animation
|
|
// if (resizeObserver.value) {
|
|
// resizeObserver.value.disconnect();
|
|
// }
|
|
// });
|
|
|
|
onBeforeUnmount(() => {
|
|
if (resizeObserver.value) {
|
|
resizeObserver.value.disconnect();
|
|
resizeObserver.value = null;
|
|
}
|
|
if (echartsInstance.value) {
|
|
echartsInstance.value.dispose();
|
|
echartsInstance.value = null;
|
|
}
|
|
});
|
|
|
|
/**
|
|
*
|
|
*/
|
|
function initResizeObserver() {
|
|
resizeObserver.value = new ResizeObserver((entries) => {
|
|
if (!echartsInstance) {
|
|
return;
|
|
}
|
|
for (const entry of entries) {
|
|
try {
|
|
echartsInstance.resize({
|
|
width: entry.contentRect.width,
|
|
animation: {
|
|
duration: 300
|
|
}
|
|
});
|
|
} catch (error) {
|
|
console.warn('Error resizing chart:', error);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
async function initEcharts() {
|
|
if (!activityDetailChartRef.value || !props.activityDetailData || props.activityDetailData.length === 0) {
|
|
isLoading.value = false;
|
|
return;
|
|
}
|
|
|
|
const chartsHeight = props.activityDetailData.length * (props.barWidth + 10) + 200;
|
|
const chartDom = activityDetailChartRef.value;
|
|
|
|
const afterInit = () => {
|
|
if (!echartsInstance) {
|
|
console.error('ECharts instance not initialized');
|
|
isLoading.value = false;
|
|
return;
|
|
}
|
|
|
|
try {
|
|
echartsInstance.resize({
|
|
height: chartsHeight,
|
|
animation: {
|
|
duration: 300
|
|
}
|
|
});
|
|
|
|
echartsInstance.off('click');
|
|
|
|
const options = getNewOption();
|
|
if (options && options.series && options.series.length > 0) {
|
|
echartsInstance.clear();
|
|
echartsInstance.setOption(options, { notMerge: true });
|
|
echartsInstance.on('click', 'yAxis', handleClickYAxisLabel);
|
|
} else {
|
|
echartsInstance.clear();
|
|
}
|
|
} catch (error) {
|
|
console.error('Error in afterInit:', error);
|
|
}
|
|
|
|
isLoading.value = false;
|
|
};
|
|
|
|
const initEchartsInstance = () => {
|
|
if (!echartsInstance) {
|
|
echartsInstance = echarts.init(chartDom, `${isDarkMode.value ? 'dark' : null}`, {
|
|
height: chartsHeight,
|
|
useDirtyRect: props.activityDetailData.length > 80
|
|
});
|
|
if (resizeObserver.value) {
|
|
resizeObserver.value.observe(chartDom);
|
|
}
|
|
}
|
|
};
|
|
|
|
initEchartsInstance();
|
|
setTimeout(afterInit, 50);
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param params
|
|
*/
|
|
function handleClickYAxisLabel(params) {
|
|
const userData = usersFirstActivity.value[params.dataIndex];
|
|
if (userData?.user_id) {
|
|
showUserDialog(userData.user_id);
|
|
}
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
function getNewOption() {
|
|
if (!props.activityDetailData || props.activityDetailData.length === 0) {
|
|
return {
|
|
title: {
|
|
text: 'No data',
|
|
left: 'center',
|
|
top: 'middle'
|
|
}
|
|
};
|
|
}
|
|
|
|
if (!startTimeStamp.value || !endTimeStamp.value) {
|
|
return {
|
|
title: {
|
|
text: 'Invalid timestamp data',
|
|
left: 'center',
|
|
top: 'middle'
|
|
}
|
|
};
|
|
}
|
|
|
|
// grouping player activity entries by user_id and calculate below:
|
|
// 1. offset: the time from startTimeStamp or the previous entry's tail to the current entry's joinTime
|
|
// 2. time: the time the user spent in the instance
|
|
// 3. tail: the time from startTimeStamp to the current entry's leaveTime
|
|
// 4. entry: the original activity detail entry
|
|
const userGroupedEntries = new Map();
|
|
// uniqueUserEntries has each user's first entry and used to keep the order of the users calculated in InstanceActivity.vue
|
|
const uniqueUserEntries = [];
|
|
for (const entry of props.activityDetailData) {
|
|
if (!userGroupedEntries.has(entry.user_id)) {
|
|
userGroupedEntries.set(entry.user_id, []);
|
|
uniqueUserEntries.push(entry);
|
|
}
|
|
const elements = userGroupedEntries.get(entry.user_id);
|
|
const offset = Math.max(
|
|
0,
|
|
elements.length === 0
|
|
? entry.joinTime.valueOf() - startTimeStamp.value
|
|
: entry.joinTime.valueOf() - startTimeStamp.value - elements[elements.length - 1].tail
|
|
);
|
|
const tail =
|
|
elements.length === 0 ? offset + entry.time : elements[elements.length - 1].tail + offset + entry.time;
|
|
const element = { offset, time: entry.time, tail, entry };
|
|
elements.push(element);
|
|
}
|
|
usersFirstActivity.value = uniqueUserEntries;
|
|
|
|
const generateSeries = () => {
|
|
const maxEntryCount = Math.max(...Array.from(userGroupedEntries.values()).map((entries) => entries.length));
|
|
const placeholderSeries = (data) => {
|
|
return {
|
|
name: 'Placeholder',
|
|
type: 'bar',
|
|
stack: 'Total',
|
|
itemStyle: {
|
|
borderColor: 'transparent',
|
|
color: 'transparent'
|
|
},
|
|
emphasis: {
|
|
itemStyle: {
|
|
borderColor: 'transparent',
|
|
color: 'transparent'
|
|
}
|
|
},
|
|
data
|
|
};
|
|
};
|
|
const timeSeries = (data) => {
|
|
return {
|
|
name: 'Time',
|
|
type: 'bar',
|
|
stack: 'Total',
|
|
colorBy: 'data',
|
|
barWidth: props.barWidth,
|
|
emphasis: {
|
|
focus: 'self'
|
|
},
|
|
itemStyle: {
|
|
borderRadius: 2,
|
|
shadowBlur: 2,
|
|
shadowOffsetX: 0.7,
|
|
shadowOffsetY: 0.5
|
|
},
|
|
data
|
|
};
|
|
};
|
|
|
|
// generate series having placeholder and time series for each user
|
|
const series = Array(maxEntryCount)
|
|
.fill(0)
|
|
.flatMap((_, index) => {
|
|
return [
|
|
placeholderSeries(
|
|
uniqueUserEntries.map((entry) => {
|
|
const element = userGroupedEntries.get(entry.user_id)[index];
|
|
return element ? element.offset : 0;
|
|
})
|
|
),
|
|
timeSeries(
|
|
uniqueUserEntries.map((entry) => {
|
|
const element = userGroupedEntries.get(entry.user_id)[index];
|
|
return element ? element.time : 0;
|
|
})
|
|
)
|
|
];
|
|
});
|
|
|
|
return series;
|
|
};
|
|
|
|
const friendOrFavIcon = (display_name) => {
|
|
const foundItem = props.activityDetailData.find((item) => item.display_name === display_name);
|
|
|
|
if (!foundItem) {
|
|
return '';
|
|
}
|
|
|
|
if (foundItem.isFavorite) {
|
|
return '⭐';
|
|
}
|
|
if (foundItem.isFriend) {
|
|
return '💚';
|
|
}
|
|
return '';
|
|
};
|
|
|
|
const getTooltip = (params) => {
|
|
const activityDetailData = props.activityDetailData;
|
|
const param = params;
|
|
const userData = uniqueUserEntries[param.dataIndex];
|
|
const isTimeSeries = params.seriesIndex % 2 === 1;
|
|
if (!isTimeSeries) {
|
|
return '';
|
|
}
|
|
const targetEntryIndex = Math.floor(params.seriesIndex / 2);
|
|
|
|
if (!activityDetailData || !userData) {
|
|
return '';
|
|
}
|
|
|
|
// first, find the user's entries, then get the focused entry
|
|
const instanceData = userGroupedEntries.get(userData.user_id)[targetEntryIndex]?.entry;
|
|
if (!instanceData) {
|
|
return '';
|
|
}
|
|
|
|
const format = dtHour12.value ? 'hh:mm:ss A' : 'HH:mm:ss';
|
|
const formattedLeftDateTime = dayjs(instanceData.leaveTime).format(format);
|
|
const formattedJoinDateTime = dayjs(instanceData.joinTime).format(format);
|
|
|
|
const timeString = timeToText(instanceData.time, true);
|
|
const color = param.color;
|
|
|
|
return `
|
|
<div style="display: flex; align-items: center;">
|
|
<div style="width: 10px; height: 55px; background-color: ${color}; margin-right: 6px;"></div>
|
|
<div>
|
|
<div>${instanceData.display_name} ${friendOrFavIcon(instanceData.display_name)}</div>
|
|
<div>${formattedJoinDateTime} - ${formattedLeftDateTime}</div>
|
|
<div>${timeString}</div>
|
|
</div>
|
|
</div>
|
|
`;
|
|
};
|
|
|
|
const format = dtHour12.value ? 'hh:mm A' : 'HH:mm';
|
|
|
|
const echartsOption = {
|
|
tooltip: {
|
|
trigger: 'item',
|
|
axisPointer: {
|
|
type: 'shadow'
|
|
},
|
|
formatter: getTooltip
|
|
},
|
|
grid: {
|
|
top: 50,
|
|
left: 160,
|
|
right: 90
|
|
},
|
|
yAxis: {
|
|
type: 'category',
|
|
axisLabel: {
|
|
interval: 0,
|
|
formatter: (value) => {
|
|
const MAX_LENGTH = 20;
|
|
const len = value.length;
|
|
return `${friendOrFavIcon(value)} ${len > MAX_LENGTH ? `${value.substring(0, MAX_LENGTH)}...` : value}`;
|
|
}
|
|
},
|
|
inverse: true,
|
|
data: uniqueUserEntries.map((item) => item.display_name),
|
|
triggerEvent: true
|
|
},
|
|
xAxis: {
|
|
type: 'value',
|
|
min: 0,
|
|
max: endTimeStamp.value - startTimeStamp.value,
|
|
axisLine: { show: true },
|
|
axisLabel: {
|
|
formatter: (value) => dayjs(value + startTimeStamp.value).format(format)
|
|
},
|
|
splitLine: { lineStyle: { type: 'dashed' } }
|
|
},
|
|
series: generateSeries(),
|
|
backgroundColor: 'transparent'
|
|
};
|
|
|
|
return echartsOption;
|
|
}
|
|
|
|
defineExpose({
|
|
echartsInstance,
|
|
initEcharts
|
|
});
|
|
</script>
|