Migrate all Vue components from Options API to <script setup>

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-06 17:10:06 +08:00
parent a619be7881
commit 3b7b6ae859
61 changed files with 10835 additions and 11750 deletions

View File

@@ -29,106 +29,86 @@
</div> </div>
</template> </template>
<script> <script setup>
import { computed, onMounted, ref, } from 'vue'; import { computed, onMounted, ref } from 'vue';
import { mapActions, mapState, storeToRefs } from 'pinia'; import { storeToRefs } from 'pinia';
import i18next from '@/i18n/i18n'; import i18next from '@/i18n/i18n';
import { useRouter } from 'vue-router'; import { useRouter, useRoute } from 'vue-router';
import { useLoginStore } from '@/stores/login'; import { useLoginStore } from '@/stores/login';
import { useAcctMgmtStore } from '@/stores/acctMgmt'; import { useAcctMgmtStore } from '@/stores/acctMgmt';
import { useAllMapDataStore } from '@/stores/allMapData'; import { useAllMapDataStore } from '@/stores/allMapData';
import { useConformanceStore } from '@/stores/conformance'; import { useConformanceStore } from '@/stores/conformance';
import { leaveFilter, leaveConformance } from '@/module/alertModal.js'; import { leaveFilter, leaveConformance } from '@/module/alertModal.js';
import emitter from '@/utils/emitter';
export default { const router = useRouter();
setup() { const route = useRoute();
const { logOut } = useLoginStore(); const loginStore = useLoginStore();
const loginStore = useLoginStore(); const allMapDataStore = useAllMapDataStore();
const router = useRouter(); const conformanceStore = useConformanceStore();
const allMapDataStore = useAllMapDataStore(); const acctMgmtStore = useAcctMgmtStore();
const conformanceStore = useConformanceStore();
const acctMgmtStore = useAcctMgmtStore();
const { tempFilterId } = storeToRefs(allMapDataStore);
const { conformanceLogTempCheckId } = storeToRefs(conformanceStore);
const loginUserData = ref(null); const { logOut } = loginStore;
const currentViewingUserDetail = computed(() => acctMgmtStore.currentViewingUser.detail); const { tempFilterId } = storeToRefs(allMapDataStore);
const isAdmin = ref(false); const { conformanceLogTempCheckId, conformanceFilterTempCheckId } = storeToRefs(conformanceStore);
const { userData } = storeToRefs(loginStore);
const { isAcctMenuOpen } = storeToRefs(acctMgmtStore);
const getIsAdminValue = async () => { const loginUserData = ref(null);
await loginStore.getUserData(); const currentViewingUserDetail = computed(() => acctMgmtStore.currentViewingUser.detail);
loginUserData.value = loginStore.userData; const isAdmin = ref(false);
await acctMgmtStore.getUserDetail(loginUserData.value.username);
isAdmin.value = acctMgmtStore.currentViewingUser.is_admin;
};
const onBtnMyAccountClick = async() => { const getIsAdminValue = async () => {
acctMgmtStore.closeAcctMenu(); await loginStore.getUserData();
await acctMgmtStore.getAllUserAccounts(); // in case we haven't fetched yet loginUserData.value = loginStore.userData;
await acctMgmtStore.setCurrentViewingUser(loginUserData.value.username); await acctMgmtStore.getUserDetail(loginUserData.value.username);
await router.push('/my-account'); isAdmin.value = acctMgmtStore.currentViewingUser.is_admin;
}
onMounted(async () => {
await getIsAdminValue();
});
return {
logOut,
tempFilterId,
conformanceLogTempCheckId,
allMapDataStore,
conformanceStore,
isAdmin,
onBtnMyAccountClick,
};
},
data() {
return {
i18next: i18next,
}
},
computed: {
...mapState(useLoginStore, ['userData']),
...mapState(useAcctMgmtStore, ['isAcctMenuOpen']),
},
methods: {
clickOtherPlacesThenCloseMenu(){
const acctMgmtButton = document.getElementById('acct_mgmt_button');
const acctMgmtMenu = document.getElementById('account_menu');
document.addEventListener('click', (event) => {
if (!acctMgmtMenu.contains(event.target) && !acctMgmtButton.contains(event.target)) {
this.closeAcctMenu();
}
});
},
onBtnAcctMgmtClick(){
this.$router.push({name: 'AcctAdmin'});
this.closeAcctMenu();
},
onLogoutBtnClick(){
if ((this.$route.name === 'Map' || this.$route.name === 'CheckMap') && this.tempFilterId) {
// 傳給 Map通知 Sidebar 要關閉。
this.$emitter.emit('leaveFilter', false);
leaveFilter(false, this.allMapDataStore.addFilterId, false, this.logOut)
} else if((this.$route.name === 'Conformance' || this.$route.name === 'CheckConformance')
&& (this.conformanceLogTempCheckId || this.conformanceFilterTempCheckId)) {
leaveConformance(false, this.conformanceStore.addConformanceCreateCheckId, false, this.logOut)
} else {
this.logOut();
}
},
...mapActions(useLoginStore, ['getUserData']),
...mapActions(useAcctMgmtStore, ['closeAcctMenu']),
},
created() {
this.getUserData();
},
mounted(){
this.clickOtherPlacesThenCloseMenu();
},
}; };
const onBtnMyAccountClick = async () => {
acctMgmtStore.closeAcctMenu();
await acctMgmtStore.getAllUserAccounts(); // in case we haven't fetched yet
await acctMgmtStore.setCurrentViewingUser(loginUserData.value.username);
await router.push('/my-account');
};
const clickOtherPlacesThenCloseMenu = () => {
const acctMgmtButton = document.getElementById('acct_mgmt_button');
const acctMgmtMenu = document.getElementById('account_menu');
document.addEventListener('click', (event) => {
if (acctMgmtMenu && acctMgmtButton && !acctMgmtMenu.contains(event.target) && !acctMgmtButton.contains(event.target)) {
acctMgmtStore.closeAcctMenu();
}
});
};
const onBtnAcctMgmtClick = () => {
router.push({name: 'AcctAdmin'});
acctMgmtStore.closeAcctMenu();
};
const onLogoutBtnClick = () => {
if ((route.name === 'Map' || route.name === 'CheckMap') && tempFilterId.value) {
// 傳給 Map通知 Sidebar 要關閉。
emitter.emit('leaveFilter', false);
leaveFilter(false, allMapDataStore.addFilterId, false, logOut)
} else if((route.name === 'Conformance' || route.name === 'CheckConformance')
&& (conformanceLogTempCheckId.value || conformanceFilterTempCheckId.value)) {
leaveConformance(false, conformanceStore.addConformanceCreateCheckId, false, logOut)
} else {
logOut();
}
};
// created
loginStore.getUserData();
// mounted
onMounted(async () => {
await getIsAdminValue();
clickOtherPlacesThenCloseMenu();
});
</script> </script>
<style> <style>

View File

@@ -9,30 +9,22 @@
</div> </div>
</template> </template>
<script> <script setup>
import { ref, } from 'vue'; import { ref } from 'vue';
import i18next from '@/i18n/i18n.js'; import i18next from '@/i18n/i18n.js';
export default {
setup(props, { emit, }) {
const inputQuery = ref("");
const onSearchClick = (event) => { const emit = defineEmits(['on-search-account-button-click']);
event.preventDefault();
emit('on-search-account-button-click', inputQuery.value);
};
const handleKeyPressOfSearch = (event) => { const inputQuery = ref("");
if (event.key === 'Enter') {
emit('on-search-account-button-click', inputQuery.value);
}
}
return { const onSearchClick = (event) => {
inputQuery, event.preventDefault();
onSearchClick, emit('on-search-account-button-click', inputQuery.value);
handleKeyPressOfSearch, };
i18next,
}; const handleKeyPressOfSearch = (event) => {
}, if (event.key === 'Enter') {
emit('on-search-account-button-click', inputQuery.value);
}
}; };
</script> </script>

View File

@@ -12,27 +12,17 @@
</div> </div>
</template> </template>
<script> <script setup>
import { defineComponent } from 'vue'; defineProps({
isActivated: {
export default defineComponent({ type: Boolean,
props: { required: true,
isActivated: { default: true,
type: Boolean,
required: true,
default: true,
},
displayText: {
type: String,
required: true,
default: "Status",
}
}, },
setup(props) { displayText: {
return { type: String,
isActivated: props.isActivated, required: true,
displayText: props.displayText, default: "Status",
};
} }
}); });
</script> </script>

View File

@@ -15,35 +15,23 @@
</button> </button>
</template> </template>
<script> <script setup>
import { ref, } from 'vue'; import { ref } from 'vue';
export default { defineProps({
props: { buttonText: {
buttonText: { type: String,
type: String, required: false,
required: false,
},
}, },
setup(props) { });
const buttonText = props.buttonText;
const isPressed = ref(false); const isPressed = ref(false);
const onMousedown = () => { const onMousedown = () => {
isPressed.value = true; isPressed.value = true;
} };
const onMouseup = () => { const onMouseup = () => {
isPressed.value = false; isPressed.value = false;
} };
return {
buttonText,
onMousedown,
onMouseup,
isPressed,
};
},
}
</script> </script>

View File

@@ -16,35 +16,23 @@
</button> </button>
</template> </template>
<script> <script setup>
import { ref, } from 'vue'; import { ref } from 'vue';
export default { defineProps({
props: { buttonText: {
buttonText: { type: String,
type: String, required: false,
required: false,
},
}, },
setup(props) { });
const buttonText = props.buttonText;
const isPressed = ref(false); const isPressed = ref(false);
const onMousedown = () => { const onMousedown = () => {
isPressed.value = true; isPressed.value = true;
} };
const onMouseup = () => { const onMouseup = () => {
isPressed.value = false; isPressed.value = false;
} };
return {
buttonText,
onMousedown,
onMouseup,
isPressed,
};
},
}
</script> </script>

View File

@@ -146,128 +146,126 @@
</div> </div>
</Sidebar> </Sidebar>
</template> </template>
<script> <script setup>
import { ref, onMounted } from 'vue';
import { useRoute } from 'vue-router';
import { useCompareStore } from '@/stores/compare'; import { useCompareStore } from '@/stores/compare';
import { getTimeLabel } from '@/module/timeLabel.js'; import { getTimeLabel } from '@/module/timeLabel.js';
import getMoment from 'moment'; import getMoment from 'moment';
export default { const props = defineProps({
setup() { sidebarState: {
const compareStore = useCompareStore(); type: Boolean,
require: false,
},
});
return { compareStore }; const route = useRoute();
}, const compareStore = useCompareStore();
props:{
sidebarState: { const primaryValueCases = ref(0);
type: Boolean, const primaryValueTraces = ref(0);
require: false, const primaryValueTaskInstances = ref(0);
const primaryValueTasks = ref(0);
const secondaryValueCases = ref(0);
const secondaryValueTraces = ref(0);
const secondaryValueTaskInstances = ref(0);
const secondaryValueTasks = ref(0);
const primaryStatData = ref(null);
const secondaryStatData = ref(null);
/**
* Number to percentage
* @param {number} val 原始數字
* @returns {string} 轉換完成的百分比字串
*/
const getPercentLabel = (val) => {
if((val * 100).toFixed(1) >= 100) return 100;
else return parseFloat((val * 100).toFixed(1));
};
/**
* setting stats data
* @param { object } data fetch API stats data
* @param { string } fileName file Name
* @returns { object } primaryStatData | secondaryStatData回傳 primaryStatData 或 secondaryStatData
*/
const getStatData = (data, fileName) => {
return {
name: fileName,
cases: {
count: data.cases.count.toLocaleString('en-US'),
total: data.cases.total.toLocaleString('en-US'),
ratio: getPercentLabel(data.cases.ratio)
}, },
}, traces: {
data() { count: data.traces.count.toLocaleString('en-US'),
return { total: data.traces.total.toLocaleString('en-US'),
primaryValueCases: 0, ratio: getPercentLabel(data.traces.ratio)
primaryValueTraces: 0, },
primaryValueTaskInstances: 0, task_instances: {
primaryValueTasks: 0, count: data.task_instances.count.toLocaleString('en-US'),
secondaryValueCases: 0, total: data.task_instances.total.toLocaleString('en-US'),
secondaryValueTraces: 0, ratio: getPercentLabel(data.task_instances.ratio)
secondaryValueTaskInstances: 0, },
secondaryValueTasks: 0, tasks: {
primaryStatData: null, count: data.tasks.count.toLocaleString('en-US'),
secondaryStatData: null, total: data.tasks.total.toLocaleString('en-US'),
ratio: getPercentLabel(data.tasks.ratio)
},
started_at: getMoment(data.started_at).format('YYYY.MM.DD HH:mm'),
completed_at: getMoment(data.completed_at).format('YYYY.MM.DD HH:mm'),
case_duration: {
min: getTimeLabel(data.case_duration.min, 2),
max: getTimeLabel(data.case_duration.max, 2),
average: getTimeLabel(data.case_duration.average, 2),
median: getTimeLabel(data.case_duration.median, 2),
} }
},
methods: {
/**
* Number to percentage
* @param {number} val 原始數字
* @returns {string} 轉換完成的百分比字串
*/
getPercentLabel(val){
if((val * 100).toFixed(1) >= 100) return 100;
else return parseFloat((val * 100).toFixed(1));
},
/**
* setting stats data
* @param { object } data fetch API stats data
* @param { string } fileName file Name
* @returns { object } primaryStatData | secondaryStatData回傳 primaryStatData 或 secondaryStatData
*/
getStatData(data, fileName) {
return {
name: fileName,
cases: {
count: data.cases.count.toLocaleString('en-US'),
total: data.cases.total.toLocaleString('en-US'),
ratio: this.getPercentLabel(data.cases.ratio)
},
traces: {
count: data.traces.count.toLocaleString('en-US'),
total: data.traces.total.toLocaleString('en-US'),
ratio: this.getPercentLabel(data.traces.ratio)
},
task_instances: {
count: data.task_instances.count.toLocaleString('en-US'),
total: data.task_instances.total.toLocaleString('en-US'),
ratio: this.getPercentLabel(data.task_instances.ratio)
},
tasks: {
count: data.tasks.count.toLocaleString('en-US'),
total: data.tasks.total.toLocaleString('en-US'),
ratio: this.getPercentLabel(data.tasks.ratio)
},
started_at: getMoment(data.started_at).format('YYYY.MM.DD HH:mm'),
completed_at: getMoment(data.completed_at).format('YYYY.MM.DD HH:mm'),
case_duration: {
min: getTimeLabel(data.case_duration.min, 2),
max: getTimeLabel(data.case_duration.max, 2),
average: getTimeLabel(data.case_duration.average, 2),
median: getTimeLabel(data.case_duration.median, 2),
}
}
},
/**
* Behavior when show
*/
show(){
this.primaryValueCases = this.primaryStatData.cases.ratio;
this.primaryValueTraces= this.primaryStatData.traces.ratio;
this.primaryValueTaskInstances = this.primaryStatData.task_instances.ratio;
this.primaryValueTasks = this.primaryStatData.tasks.ratio;
this.secondaryValueCases = this.secondaryStatData.cases.ratio;
this.secondaryValueTraces= this.secondaryStatData.traces.ratio;
this.secondaryValueTaskInstances = this.secondaryStatData.task_instances.ratio;
this.secondaryValueTasks = this.secondaryStatData.tasks.ratio;
},
/**
* Behavior when hidden
*/
hide(){
this.primaryValueCases = 0;
this.primaryValueTraces= 0;
this.primaryValueTaskInstances = 0;
this.primaryValueTasks = 0;
this.secondaryValueCases = 0;
this.secondaryValueTraces= 0;
this.secondaryValueTaskInstances = 0;
this.secondaryValueTasks = 0;
},
},
async mounted() {
const routeParams = this.$route.params;
const primaryType = routeParams.primaryType;
const secondaryType = routeParams.secondaryType;
const primaryId = routeParams.primaryId;
const secondaryId = routeParams.secondaryId;
const primaryData = await this.compareStore.getStateData(primaryType, primaryId);
const secondaryData = await this.compareStore.getStateData(secondaryType, secondaryId);
const primaryFileName = await this.compareStore.getFileName(primaryId)
const secondaryFileName = await this.compareStore.getFileName(secondaryId)
this.primaryStatData = await this.getStatData(primaryData, primaryFileName);
this.secondaryStatData = await this.getStatData(secondaryData, secondaryFileName);
} }
} };
/**
* Behavior when show
*/
const show = () => {
primaryValueCases.value = primaryStatData.value.cases.ratio;
primaryValueTraces.value = primaryStatData.value.traces.ratio;
primaryValueTaskInstances.value = primaryStatData.value.task_instances.ratio;
primaryValueTasks.value = primaryStatData.value.tasks.ratio;
secondaryValueCases.value = secondaryStatData.value.cases.ratio;
secondaryValueTraces.value = secondaryStatData.value.traces.ratio;
secondaryValueTaskInstances.value = secondaryStatData.value.task_instances.ratio;
secondaryValueTasks.value = secondaryStatData.value.tasks.ratio;
};
/**
* Behavior when hidden
*/
const hide = () => {
primaryValueCases.value = 0;
primaryValueTraces.value = 0;
primaryValueTaskInstances.value = 0;
primaryValueTasks.value = 0;
secondaryValueCases.value = 0;
secondaryValueTraces.value = 0;
secondaryValueTaskInstances.value = 0;
secondaryValueTasks.value = 0;
};
onMounted(async () => {
const routeParams = route.params;
const primaryType = routeParams.primaryType;
const secondaryType = routeParams.secondaryType;
const primaryId = routeParams.primaryId;
const secondaryId = routeParams.secondaryId;
const primaryData = await compareStore.getStateData(primaryType, primaryId);
const secondaryData = await compareStore.getStateData(secondaryType, secondaryId);
const primaryFileName = await compareStore.getFileName(primaryId)
const secondaryFileName = await compareStore.getFileName(secondaryId)
primaryStatData.value = await getStatData(primaryData, primaryFileName);
secondaryStatData.value = await getStatData(secondaryData, secondaryFileName);
});
</script> </script>
<style scoped> <style scoped>
:deep(.p-progressbar .p-progressbar-value) { :deep(.p-progressbar .p-progressbar-value) {

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -9,40 +9,33 @@
</div> </div>
</div> </div>
</template> </template>
<script> <script setup>
import { ref, watch } from 'vue';
import { sortNumEngZhtw } from '@/module/sortNumEngZhtw.js'; import { sortNumEngZhtw } from '@/module/sortNumEngZhtw.js';
import emitter from '@/utils/emitter';
export default { const props = defineProps(['data', 'select']);
props: ['data', 'select'],
data() { const sortData = ref([]);
return { const actList = ref(props.select);
sortData: [],
actList: this.select, watch(() => props.data, (newValue) => {
} sortData.value = sortNumEngZhtw(newValue);
}, }, { immediate: true });
watch: {
data: { watch(() => props.select, (newValue) => {
handler: function(newValue) { actList.value = newValue;
this.sortData = sortNumEngZhtw(newValue) });
},
immediate: true, // 立即執行一次排序 /**
}, * 將選取的 Activities 傳出去
select: function(newValue) { */
this.actList = newValue; function actListData() {
} emitter.emit('actListData', actList.value);
},
methods: {
/**
* 將選取的 Activities 傳出去
*/
actListData() {
this.$emitter.emit('actListData', this.actList);
}
},
created() {
this.$emitter.on('reset', (data) => {
this.actList = data;
});
},
} }
// created
emitter.on('reset', (data) => {
actList.value = data;
});
</script> </script>

View File

@@ -9,65 +9,55 @@
</div> </div>
</div> </div>
</template> </template>
<script> <script setup>
import { mapActions, } from 'pinia'; import { ref, computed, watch } from 'vue';
import { useConformanceInputStore } from "@/stores/conformanceInput"; import { useConformanceInputStore } from "@/stores/conformanceInput";
import { sortNumEngZhtw } from '@/module/sortNumEngZhtw.js'; import { sortNumEngZhtw } from '@/module/sortNumEngZhtw.js';
import emitter from '@/utils/emitter';
export default { const props = defineProps(['title', 'select', 'data', 'category', 'task', 'isSubmit']);
props: ['title', 'select', 'data', 'category', 'task', 'isSubmit'], const emit = defineEmits(['selected-task']);
data() {
return { const conformanceInputStore = useConformanceInputStore();
sortData: [],
localSelect: null, const sortData = ref([]);
selectedRadio: null, const localSelect = ref(null);
} const selectedRadio = ref(null);
},
watch: { watch(() => props.data, (newValue) => {
data: { sortData.value = sortNumEngZhtw(newValue);
handler: function(newValue) { }, { immediate: true });
this.sortData = sortNumEngZhtw(newValue)
}, watch(() => props.task, (newValue) => {
immediate: true, // 立即執行一次排序 selectedRadio.value = newValue;
}, });
task: function(newValue) {
this.selectedRadio = newValue; const inputActivityRadioData = computed(() => ({
}, category: props.category,
}, task: selectedRadio.value,
computed: { }));
inputActivityRadioData: {
get(){ /**
return { * 將選取的 Activity 傳出去
category: this.category, */
task: this.selectedRadio, // For example, "a", or "出院" function actRadioData() {
}; localSelect.value = null;
}, emitter.emit('actRadioData', inputActivityRadioData.value);
} , emit('selected-task', selectedRadio.value);
}, conformanceInputStore.setActivityRadioStartEndData(inputActivityRadioData.value.task);
methods: {
/**
* 將選取的 Activity 傳出去
*/
actRadioData() {
this.localSelect = null;
this.$emitter.emit('actRadioData', this.inputActivityRadioData);
this.$emit('selected-task', this.selectedRadio);
this.setActivityRadioStartEndData(this.inputActivityRadioData.task);
},
setGlobalActivityRadioDataState(){
//this.title: value might be "From" or "To"
this.setActivityRadioStartEndData(this.inputActivityRadioData.task, this.title);
},
...mapActions(useConformanceInputStore, ['setActivityRadioStartEndData']),
},
created() {
sortNumEngZhtw(this.sortData);
this.localSelect = this.isSubmit ? this.select : null;
this.selectedRadio = this.localSelect;
this.$emitter.on('reset', (data) => {
this.selectedRadio = data;
});
this.setGlobalActivityRadioDataState();
},
} }
function setGlobalActivityRadioDataState() {
//this.title: value might be "From" or "To"
conformanceInputStore.setActivityRadioStartEndData(inputActivityRadioData.value.task, props.title);
}
// created
sortNumEngZhtw(sortData.value);
localSelect.value = props.isSubmit ? props.select : null;
selectedRadio.value = localSelect.value;
emitter.on('reset', (data) => {
selectedRadio.value = data;
});
setGlobalActivityRadioDataState();
</script> </script>

View File

@@ -41,93 +41,92 @@
</div> </div>
</div> </div>
</template> </template>
<script> <script setup>
import { ref, computed } from 'vue';
import { sortNumEngZhtw } from '@/module/sortNumEngZhtw.js'; import { sortNumEngZhtw } from '@/module/sortNumEngZhtw.js';
import emitter from '@/utils/emitter';
export default { const props = defineProps(['data', 'listSeq', 'isSubmit', 'category']);
props: ['data', 'listSeq', 'isSubmit', 'category'],
data() { const listSequence = ref([]);
return { const lastItemIndex = ref(null);
listSequence: [], const isSelect = ref(true);
lastItemIndex: null,
isSelect: true const datadata = computed(() => {
} // Activity List 要排序
}, let newData;
computed: { if(props.data !== null) {
datadata: function() { newData = JSON.parse(JSON.stringify(props.data));
// Activity List 要排序 sortNumEngZhtw(newData);
let newData; }
if(this.data !== null) { return newData;
newData = JSON.parse(JSON.stringify(this.data)); });
sortNumEngZhtw(newData);
} /**
return newData; * double click Activity List
}, * @param {number} index data item index
}, * @param {object} element data item
methods: { */
/** function moveActItem(index, element) {
* double click Activity List listSequence.value.push(element);
* @param {number} index data item index
* @param {object} element data item
*/
moveActItem(index, element){
this.listSequence.push(element);
},
/**
* double click Sequence List
* @param {number} index data item index
* @param {object} element data item
*/
moveSeqItem(index, element){
this.listSequence.splice(index, 1);
},
/**
* get listSequence
*/
getComponentData(){
this.$emitter.emit('getListSequence',{
category: this.category,
task: this.listSequence,
});
},
/**
* Element dragging started
*/
onStart(evt) {
const lastChild = evt.to.lastChild.lastChild;
lastChild.style.display = 'none';
// 隱藏拖曳元素原位置
const originalElement = evt.item;
originalElement.style.display = 'none';
// 拖曳最後一個元素時,倒數第二的元素的箭頭要隱藏
const listIndex = this.listSequence.length - 1;
if(evt.oldIndex === listIndex) this.lastItemIndex = listIndex;
},
/**
* Element dragging ended
*/
onEnd(evt) {
// 顯示拖曳元素
const originalElement = evt.item;
originalElement.style.display = '';
// 拖曳結束要顯示箭頭,但最後一個不用
const lastChild = evt.item.lastChild;
const listIndex = this.listSequence.length - 1
if (evt.oldIndex !== listIndex) {
lastChild.style.display = '';
}
// reset: 拖曳最後一個元素時,倒數第二的元素的箭頭要隱藏
this.lastItemIndex = null;
},
},
created() {
const newlist = JSON.parse(JSON.stringify(this.listSeq));
this.listSequence = this.isSubmit ? newlist : [];
this.$emitter.on('reset', (data) => {
this.listSequence = [];
});
},
} }
/**
* double click Sequence List
* @param {number} index data item index
* @param {object} element data item
*/
function moveSeqItem(index, element) {
listSequence.value.splice(index, 1);
}
/**
* get listSequence
*/
function getComponentData() {
emitter.emit('getListSequence', {
category: props.category,
task: listSequence.value,
});
}
/**
* Element dragging started
*/
function onStart(evt) {
const lastChild = evt.to.lastChild.lastChild;
lastChild.style.display = 'none';
// 隱藏拖曳元素原位置
const originalElement = evt.item;
originalElement.style.display = 'none';
// 拖曳最後一個元素時,倒數第二的元素的箭頭要隱藏
const listIndex = listSequence.value.length - 1;
if(evt.oldIndex === listIndex) lastItemIndex.value = listIndex;
}
/**
* Element dragging ended
*/
function onEnd(evt) {
// 顯示拖曳元素
const originalElement = evt.item;
originalElement.style.display = '';
// 拖曳結束要顯示箭頭,但最後一個不用
const lastChild = evt.item.lastChild;
const listIndex = listSequence.value.length - 1;
if (evt.oldIndex !== listIndex) {
lastChild.style.display = '';
}
// reset: 拖曳最後一個元素時,倒數第二的元素的箭頭要隱藏
lastItemIndex.value = null;
}
// created
const newlist = JSON.parse(JSON.stringify(props.listSeq));
listSequence.value = props.isSubmit ? newlist : [];
emitter.on('reset', (data) => {
listSequence.value = [];
});
</script> </script>
<style scoped> <style scoped>
@reference "../../../../assets/tailwind.css"; @reference "../../../../assets/tailwind.css";

View File

@@ -50,90 +50,81 @@
</div> </div>
</section> </section>
</template> </template>
<script> <script setup>
import { storeToRefs } from 'pinia'; import { storeToRefs } from 'pinia';
import { useConformanceStore } from '@/stores/conformance'; import { useConformanceStore } from '@/stores/conformance';
import emitter from '@/utils/emitter';
export default { const conformanceStore = useConformanceStore();
setup() { const { selectedRuleType, selectedActivitySequence, selectedMode, selectedProcessScope, selectedActSeqMore, selectedActSeqFromTo } = storeToRefs(conformanceStore);
const conformanceStore = useConformanceStore();
const { selectedRuleType, selectedActivitySequence, selectedMode, selectedProcessScope, selectedActSeqMore, selectedActSeqFromTo } = storeToRefs(conformanceStore);
return { selectedRuleType, selectedActivitySequence, selectedMode, selectedProcessScope, selectedActSeqMore, selectedActSeqFromTo } const ruleType = [
}, {id: 1, name: 'Have activity'},
data() { {id: 2, name: 'Activity sequence'},
return { {id: 3, name: 'Activity duration'},
ruleType: [ {id: 4, name: 'Processing time'},
{id: 1, name: 'Have activity'}, {id: 5, name: 'Waiting time'},
{id: 2, name: 'Activity sequence'}, {id: 6, name: 'Cycle time'},
{id: 3, name: 'Activity duration'}, ];
{id: 4, name: 'Processing time'}, const activitySequence = [
{id: 5, name: 'Waiting time'}, {id: 1, name: 'Start & End'},
{id: 6, name: 'Cycle time'}, {id: 2, name: 'Sequence'},
], ];
activitySequence: [ const mode = [
{id: 1, name: 'Start & End'}, {id: 1, name: 'Directly follows'},
{id: 2, name: 'Sequence'}, {id: 2, name: 'Eventually follows'},
], {id: 3, name: 'Short loop(s)'},
mode: [ {id: 4, name: 'Self loop(s)'},
{id: 1, name: 'Directly follows'}, ];
{id: 2, name: 'Eventually follows'}, const processScope = [
{id: 3, name: 'Short loop(s)'}, {id: 1, name: 'End to end'},
{id: 4, name: 'Self loop(s)'}, {id: 2, name: 'Partial'},
], ];
processScope: [ const actSeqMore = [
{id: 1, name: 'End to end'}, {id: 1, name: 'All'},
{id: 2, name: 'Partial'}, {id: 2, name: 'Start'},
], {id: 3, name: 'End'},
actSeqMore: [ {id: 4, name: 'Start & End'},
{id: 1, name: 'All'}, ];
{id: 2, name: 'Start'}, const actSeqFromTo = [
{id: 3, name: 'End'}, {id: 1, name: 'From'},
{id: 4, name: 'Start & End'}, {id: 2, name: 'To'},
], {id: 3, name: 'From & To'},
actSeqFromTo: [ ];
{id: 1, name: 'From'},
{id: 2, name: 'To'}, /**
{id: 3, name: 'From & To'}, * 切換 Rule Type 的選項時的行為
] */
} function changeRadio() {
}, selectedActivitySequence.value = 'Start & End';
methods: { selectedMode.value = 'Directly follows';
/** selectedProcessScope.value = 'End to end';
* 切換 Rule Type 的選項時的行為 selectedActSeqMore.value = 'All';
*/ selectedActSeqFromTo.value = 'From';
changeRadio() { emitter.emit('isRadioChange', true); // Radio 切換時,資料要清空
this.selectedActivitySequence = 'Start & End'; }
this.selectedMode = 'Directly follows'; /**
this.selectedProcessScope = 'End to end'; * 切換 Activity sequence 的選項時的行為
this.selectedActSeqMore = 'All'; */
this.selectedActSeqFromTo = 'From'; function changeRadioSeq() {
this.$emitter.emit('isRadioChange', true); // Radio 切換時,資料要清空 emitter.emit('isRadioSeqChange',true);
}, }
/** /**
* 切換 Activity sequence 的選項時的行為 * 切換 Processing time 的選項時的行為
*/ */
changeRadioSeq() { function changeRadioProcessScope() {
this.$emitter.emit('isRadioSeqChange',true); emitter.emit('isRadioProcessScopeChange', true);
}, }
/** /**
* 切換 Processing time 的選項時的行為 * 切換 Process Scope 的選項時的行為
*/ */
changeRadioProcessScope() { function changeRadioActSeqMore() {
this.$emitter.emit('isRadioProcessScopeChange', true); emitter.emit('isRadioActSeqMoreChange', true);
}, }
/** /**
* 切換 Process Scope 的選項時的行為 * 切換 Activity Sequence 的選項時的行為
*/ */
changeRadioActSeqMore() { function changeRadioActSeqFromTo() {
this.$emitter.emit('isRadioActSeqMoreChange', true); emitter.emit('isRadioActSeqFromToChange', true);
},
/**
* 切換 Activity Sequence 的選項時的行為
*/
changeRadioActSeqFromTo() {
this.$emitter.emit('isRadioActSeqFromToChange', true);
},
}
} }
</script> </script>

View File

@@ -1,264 +1,258 @@
<template> <template>
<div class="px-4 text-sm"> <div class="px-4 text-sm">
<!-- Have activity --> <!-- Have activity -->
<ResultCheck v-if="selectedRuleType === 'Have activity'" :data="containstTasksData" :select="isSubmitTask"></ResultCheck> <ResultCheck v-if="selectedRuleType === 'Have activity'" :data="state.containstTasksData" :select="isSubmitTask"></ResultCheck>
<!-- Activity sequence --> <!-- Activity sequence -->
<ResultDot v-if="selectedRuleType === 'Activity sequence' && selectedActivitySequence === 'Start & End'" :timeResultData="selectCfmSeqSE" :select="isSubmitStartAndEnd"></ResultDot> <ResultDot v-if="selectedRuleType === 'Activity sequence' && selectedActivitySequence === 'Start & End'" :timeResultData="selectCfmSeqSE" :select="isSubmitStartAndEnd"></ResultDot>
<ResultArrow v-if="selectedRuleType === 'Activity sequence' && selectedActivitySequence === 'Sequence' && selectedMode === 'Directly follows'" :data="selectCfmSeqDirectly" :select="isSubmitCfmSeqDirectly"></ResultArrow> <ResultArrow v-if="selectedRuleType === 'Activity sequence' && selectedActivitySequence === 'Sequence' && selectedMode === 'Directly follows'" :data="state.selectCfmSeqDirectly" :select="isSubmitCfmSeqDirectly"></ResultArrow>
<ResultArrow v-if="selectedRuleType === 'Activity sequence' && selectedActivitySequence === 'Sequence' && selectedMode === 'Eventually follows'" :data="selectCfmSeqEventually" :select="isSubmitCfmSeqEventually"></ResultArrow> <ResultArrow v-if="selectedRuleType === 'Activity sequence' && selectedActivitySequence === 'Sequence' && selectedMode === 'Eventually follows'" :data="state.selectCfmSeqEventually" :select="isSubmitCfmSeqEventually"></ResultArrow>
<!-- Activity duration --> <!-- Activity duration -->
<ResultCheck v-if="selectedRuleType === 'Activity duration'" :title="'Activities include'" :data="durationData" :select="isSubmitDurationData"></ResultCheck> <ResultCheck v-if="selectedRuleType === 'Activity duration'" :title="'Activities include'" :data="state.durationData" :select="isSubmitDurationData"></ResultCheck>
<!-- Processing time --> <!-- Processing time -->
<ResultDot v-if="selectedRuleType === 'Processing time' && selectedProcessScope === 'End to end' && selectedActSeqMore === 'Start'" :timeResultData="selectCfmPtEteStart" :select="isSubmitCfmPtEteStart"></ResultDot> <ResultDot v-if="selectedRuleType === 'Processing time' && selectedProcessScope === 'End to end' && selectedActSeqMore === 'Start'" :timeResultData="state.selectCfmPtEteStart" :select="isSubmitCfmPtEteStart"></ResultDot>
<ResultDot v-if="selectedRuleType === 'Processing time' && selectedProcessScope === 'End to end' && selectedActSeqMore === 'End'" :timeResultData="selectCfmPtEteEnd" :select="isSubmitCfmPtEteEnd"></ResultDot> <ResultDot v-if="selectedRuleType === 'Processing time' && selectedProcessScope === 'End to end' && selectedActSeqMore === 'End'" :timeResultData="state.selectCfmPtEteEnd" :select="isSubmitCfmPtEteEnd"></ResultDot>
<ResultDot v-if="selectedRuleType === 'Processing time' && selectedProcessScope === 'End to end' && selectedActSeqMore === 'Start & End'" :timeResultData="selectCfmPtEteSE" :select="isSubmitCfmPtEteSE"></ResultDot> <ResultDot v-if="selectedRuleType === 'Processing time' && selectedProcessScope === 'End to end' && selectedActSeqMore === 'Start & End'" :timeResultData="selectCfmPtEteSE" :select="isSubmitCfmPtEteSE"></ResultDot>
<ResultDot v-if="selectedRuleType === 'Processing time' && selectedProcessScope === 'Partial' && selectedActSeqFromTo === 'From'" :timeResultData="selectCfmPtPStart" :select="isSubmitCfmPtPStart"></ResultDot> <ResultDot v-if="selectedRuleType === 'Processing time' && selectedProcessScope === 'Partial' && selectedActSeqFromTo === 'From'" :timeResultData="state.selectCfmPtPStart" :select="isSubmitCfmPtPStart"></ResultDot>
<ResultDot v-if="selectedRuleType === 'Processing time' && selectedProcessScope === 'Partial' && selectedActSeqFromTo === 'To'" :timeResultData="selectCfmPtPEnd" :select="isSubmitCfmPtPEnd"></ResultDot> <ResultDot v-if="selectedRuleType === 'Processing time' && selectedProcessScope === 'Partial' && selectedActSeqFromTo === 'To'" :timeResultData="state.selectCfmPtPEnd" :select="isSubmitCfmPtPEnd"></ResultDot>
<ResultDot v-if="selectedRuleType === 'Processing time' && selectedProcessScope === 'Partial' && selectedActSeqFromTo === 'From & To'" :timeResultData="selectCfmPtPSE" :select="isSubmitCfmPtPSE"></ResultDot> <ResultDot v-if="selectedRuleType === 'Processing time' && selectedProcessScope === 'Partial' && selectedActSeqFromTo === 'From & To'" :timeResultData="selectCfmPtPSE" :select="isSubmitCfmPtPSE"></ResultDot>
<!-- Waiting time --> <!-- Waiting time -->
<ResultDot v-if="selectedRuleType === 'Waiting time' && selectedProcessScope === 'End to end' && selectedActSeqMore === 'Start'" :timeResultData="selectCfmWtEteStart" :select="isSubmitCfmWtEteStart"></ResultDot> <ResultDot v-if="selectedRuleType === 'Waiting time' && selectedProcessScope === 'End to end' && selectedActSeqMore === 'Start'" :timeResultData="state.selectCfmWtEteStart" :select="isSubmitCfmWtEteStart"></ResultDot>
<ResultDot v-if="selectedRuleType === 'Waiting time' && selectedProcessScope === 'End to end' && selectedActSeqMore === 'End'" :timeResultData="selectCfmWtEteEnd" :select="isSubmitCfmWtEteEnd"></ResultDot> <ResultDot v-if="selectedRuleType === 'Waiting time' && selectedProcessScope === 'End to end' && selectedActSeqMore === 'End'" :timeResultData="state.selectCfmWtEteEnd" :select="isSubmitCfmWtEteEnd"></ResultDot>
<ResultDot v-if="selectedRuleType === 'Waiting time' && selectedProcessScope === 'End to end' && selectedActSeqMore === 'Start & End'" :timeResultData="selectCfmWtEteSE" :select="isSubmitCfmWtEteSE"></ResultDot> <ResultDot v-if="selectedRuleType === 'Waiting time' && selectedProcessScope === 'End to end' && selectedActSeqMore === 'Start & End'" :timeResultData="selectCfmWtEteSE" :select="isSubmitCfmWtEteSE"></ResultDot>
<ResultDot v-if="selectedRuleType === 'Waiting time' && selectedProcessScope === 'Partial' && selectedActSeqFromTo === 'From'" :timeResultData="selectCfmWtPStart" :select="isSubmitCfmWtPStart"></ResultDot> <ResultDot v-if="selectedRuleType === 'Waiting time' && selectedProcessScope === 'Partial' && selectedActSeqFromTo === 'From'" :timeResultData="state.selectCfmWtPStart" :select="isSubmitCfmWtPStart"></ResultDot>
<ResultDot v-if="selectedRuleType === 'Waiting time' && selectedProcessScope === 'Partial' && selectedActSeqFromTo === 'To'" :timeResultData="selectCfmWtPEnd" :select="isSubmitCfmWtPEnd"></ResultDot> <ResultDot v-if="selectedRuleType === 'Waiting time' && selectedProcessScope === 'Partial' && selectedActSeqFromTo === 'To'" :timeResultData="state.selectCfmWtPEnd" :select="isSubmitCfmWtPEnd"></ResultDot>
<ResultDot v-if="selectedRuleType === 'Waiting time' && selectedProcessScope === 'Partial' && selectedActSeqFromTo === 'From & To'" :timeResultData="selectCfmWtPSE" :select="isSubmitCfmWtPSE"></ResultDot> <ResultDot v-if="selectedRuleType === 'Waiting time' && selectedProcessScope === 'Partial' && selectedActSeqFromTo === 'From & To'" :timeResultData="selectCfmWtPSE" :select="isSubmitCfmWtPSE"></ResultDot>
<!-- Cycle time --> <!-- Cycle time -->
<ResultDot v-if="selectedRuleType === 'Cycle time' && selectedProcessScope === 'End to end' && selectedActSeqMore === 'Start'" :timeResultData="selectCfmCtEteStart" :select="isSubmitCfmCtEteStart"></ResultDot> <ResultDot v-if="selectedRuleType === 'Cycle time' && selectedProcessScope === 'End to end' && selectedActSeqMore === 'Start'" :timeResultData="state.selectCfmCtEteStart" :select="isSubmitCfmCtEteStart"></ResultDot>
<ResultDot v-if="selectedRuleType === 'Cycle time' && selectedProcessScope === 'End to end' && selectedActSeqMore === 'End'" :timeResultData="selectCfmCtEteEnd" :select="isSubmitCfmCtEteEnd"></ResultDot> <ResultDot v-if="selectedRuleType === 'Cycle time' && selectedProcessScope === 'End to end' && selectedActSeqMore === 'End'" :timeResultData="state.selectCfmCtEteEnd" :select="isSubmitCfmCtEteEnd"></ResultDot>
<ResultDot v-if="selectedRuleType === 'Cycle time' && selectedProcessScope === 'End to end' && selectedActSeqMore === 'Start & End'" :timeResultData="selectCfmCtEteSE" :select="isSubmitCfmCtEteSE"></ResultDot> <ResultDot v-if="selectedRuleType === 'Cycle time' && selectedProcessScope === 'End to end' && selectedActSeqMore === 'Start & End'" :timeResultData="selectCfmCtEteSE" :select="isSubmitCfmCtEteSE"></ResultDot>
</div> </div>
</template> </template>
<script> <script setup>
import { reactive, computed } from 'vue';
import { storeToRefs } from 'pinia'; import { storeToRefs } from 'pinia';
import { useConformanceStore } from '@/stores/conformance'; import { useConformanceStore } from '@/stores/conformance';
import emitter from '@/utils/emitter';
import ResultCheck from '@/components/Discover/Conformance/ConformanceSidebar/ResultCheck.vue'; import ResultCheck from '@/components/Discover/Conformance/ConformanceSidebar/ResultCheck.vue';
import ResultArrow from '@/components/Discover/Conformance/ConformanceSidebar/ResultArrow.vue'; import ResultArrow from '@/components/Discover/Conformance/ConformanceSidebar/ResultArrow.vue';
import ResultDot from '@/components/Discover/Conformance/ConformanceSidebar/ResultDot.vue'; import ResultDot from '@/components/Discover/Conformance/ConformanceSidebar/ResultDot.vue';
export default { const conformanceStore = useConformanceStore();
setup() { const { selectedRuleType, selectedActivitySequence, selectedMode, selectedProcessScope, selectedActSeqMore, selectedActSeqFromTo, isStartSelected, isEndSelected } = storeToRefs(conformanceStore);
const conformanceStore = useConformanceStore();
const { selectedRuleType, selectedActivitySequence, selectedMode, selectedProcessScope, selectedActSeqMore, selectedActSeqFromTo, isStartSelected, isEndSelected } = storeToRefs(conformanceStore);
return { selectedRuleType, selectedActivitySequence, selectedMode, selectedProcessScope, selectedActSeqMore, selectedActSeqFromTo, isStartSelected, isEndSelected } const props = defineProps(['isSubmit', 'isSubmitTask', 'isSubmitStartAndEnd', 'isSubmitCfmSeqDirectly', 'isSubmitCfmSeqEventually', 'isSubmitDurationData', 'isSubmitCfmPtEteStart', 'isSubmitCfmPtEteEnd', 'isSubmitCfmPtEteSE', 'isSubmitCfmPtPStart', 'isSubmitCfmPtPEnd', 'isSubmitCfmPtPSE', 'isSubmitCfmWtEteStart', 'isSubmitCfmWtEteEnd', 'isSubmitCfmWtEteSE', 'isSubmitCfmWtPStart', 'isSubmitCfmWtPEnd', 'isSubmitCfmWtPSE', 'isSubmitCfmCtEteStart', 'isSubmitCfmCtEteEnd', 'isSubmitCfmCtEteSE']);
},
props: ['isSubmit', 'isSubmitTask', 'isSubmitStartAndEnd', 'isSubmitCfmSeqDirectly', 'isSubmitCfmSeqEventually', 'isSubmitDurationData', 'isSubmitCfmPtEteStart', 'isSubmitCfmPtEteEnd', 'isSubmitCfmPtEteSE', 'isSubmitCfmPtPStart', 'isSubmitCfmPtPEnd', 'isSubmitCfmPtPSE', 'isSubmitCfmWtEteStart', 'isSubmitCfmWtEteEnd', 'isSubmitCfmWtEteSE', 'isSubmitCfmWtPStart', 'isSubmitCfmWtPEnd', 'isSubmitCfmWtPSE', 'isSubmitCfmCtEteStart', 'isSubmitCfmCtEteEnd', 'isSubmitCfmCtEteSE'],
components: {
ResultCheck,
ResultArrow,
ResultDot,
},
data() {
return {
containstTasksData: null,
startEndData: null,
selectCfmSeqStart: null,
selectCfmSeqEnd: null,
selectCfmSeqDirectly: [],
selectCfmSeqEventually: [],
durationData: null,
selectCfmPtEteStart: null, // Processing time
selectCfmPtEteEnd: null,
selectCfmPtEteSEStart: null,
selectCfmPtEteSEEnd: null,
selectCfmPtPStart: null,
selectCfmPtPEnd: null,
selectCfmPtPSEStart: null,
selectCfmPtPSEEnd: null,
selectCfmWtEteStart: null, // Waiting time
selectCfmWtEteEnd: null,
selectCfmWtEteSEStart: null,
selectCfmWtEteSEEnd: null,
selectCfmWtPStart: null,
selectCfmWtPEnd: null,
selectCfmWtPSEStart: null,
selectCfmWtPSEEnd: null,
selectCfmCtEteStart: null, // Cycle time
selectCfmCtEteEnd: null,
selectCfmCtEteSEStart: null,
selectCfmCtEteSEEnd: null,
startAndEndIsReset: false,
}
},
computed: {
selectCfmSeqSE: function() {
const data = [];
if(this.selectCfmSeqStart) data.push(this.selectCfmSeqStart);
if(this.selectCfmSeqEnd) data.push(this.selectCfmSeqEnd);
data.sort((a, b) => {
const order = { 'Start': 1, 'End': 2};
return order[a.category] - order[b.category];
});
return data;
},
selectCfmPtEteSE: function() {
const data = [];
if(this.selectCfmPtEteSEStart) data.push(this.selectCfmPtEteSEStart);
if(this.selectCfmPtEteSEEnd) data.push(this.selectCfmPtEteSEEnd);
data.sort((a, b) => {
const order = { 'Start': 1, 'End': 2};
return order[a.category] - order[b.category];
});
return data;
},
selectCfmPtPSE: function() {
const data = [];
if(this.selectCfmPtPSEStart) data.push(this.selectCfmPtPSEStart);
if(this.selectCfmPtPSEEnd) data.push(this.selectCfmPtPSEEnd);
data.sort((a, b) => {
const order = { 'From': 1, 'To': 2};
return order[a.category] - order[b.category];
});
return data;
},
selectCfmWtEteSE: function() {
const data = [];
if(this.selectCfmWtEteSEStart) data.push(this.selectCfmWtEteSEStart);
if(this.selectCfmWtEteSEEnd) data.push(this.selectCfmWtEteSEEnd);
data.sort((a, b) => {
const order = { 'Start': 1, 'End': 2};
return order[a.category] - order[b.category];
});
return data;
},
selectCfmWtPSE: function() {
const data = [];
if(this.selectCfmWtPSEStart) data.push(this.selectCfmWtPSEStart);
if(this.selectCfmWtPSEEnd) data.push(this.selectCfmWtPSEEnd);
data.sort((a, b) => {
const order = { 'From': 1, 'To': 2};
return order[a.category] - order[b.category];
});
return data;
},
selectCfmCtEteSE: function() {
const data = [];
if(this.selectCfmCtEteSEStart) data.push(this.selectCfmCtEteSEStart);
if(this.selectCfmCtEteSEEnd) data.push(this.selectCfmCtEteSEEnd);
data.sort((a, b) => {
const order = { 'Start': 1, 'End': 2};
return order[a.category] - order[b.category];
});
return data;
},
},
methods: {
/**
* All reset
*/
reset() {
this.containstTasksData = null;
this.startEndData = null;
this.selectCfmSeqStart = null;
this.selectCfmSeqEnd = null;
this.selectCfmSeqDirectly = [];
this.selectCfmSeqEventually = [];
this.durationData = null;
this.selectCfmPtEteStart = null;
this.selectCfmPtEteEnd = null;
this.selectCfmPtEteSEStart = null;
this.selectCfmPtEteSEEnd = null;
this.selectCfmPtPStart = null;
this.selectCfmPtPEnd = null;
this.selectCfmPtPSEStart = null;
this.selectCfmPtPSEEnd = null;
this.selectCfmWtEteStart = null; // Waiting time
this.selectCfmWtEteEnd = null;
this.selectCfmWtEteSEStart = null;
this.selectCfmWtEteSEEnd = null;
this.selectCfmWtPStart = null;
this.selectCfmWtPEnd = null;
this.selectCfmWtPSEStart = null;
this.selectCfmWtPSEEnd = null;
this.selectCfmCtEteStart = null; // Cycle time
this.selectCfmCtEteEnd = null;
this.selectCfmCtEteSEStart = null;
this.selectCfmCtEteSEEnd = null;
this.startAndEndIsReset = true;
},
},
created() {
this.$emitter.on('actListData', (data) => {
this.containstTasksData = data;
});
this.$emitter.on('actRadioData', (newData) => {
const data = JSON.parse(JSON.stringify(newData)); // 深拷貝原始 cases 的內容
const categoryMapping = { const state = reactive({
'cfmSeqStart': ['Start', 'selectCfmSeqStart', 'selectCfmSeqEnd'], containstTasksData: null,
'cfmSeqEnd': ['End', 'selectCfmSeqEnd', 'selectCfmSeqStart'], startEndData: null,
'cfmPtEteStart': ['Start', 'selectCfmPtEteStart'], selectCfmSeqStart: null,
'cfmPtEteEnd': ['End', 'selectCfmPtEteEnd'], selectCfmSeqEnd: null,
'cfmPtEteSEStart': ['Start', 'selectCfmPtEteSEStart', 'selectCfmPtEteSEEnd'], selectCfmSeqDirectly: [],
'cfmPtEteSEEnd': ['End', 'selectCfmPtEteSEEnd', 'selectCfmPtEteSEStart'], selectCfmSeqEventually: [],
'cfmPtPStart': ['From', 'selectCfmPtPStart'], durationData: null,
'cfmPtPEnd': ['To', 'selectCfmPtPEnd'], selectCfmPtEteStart: null, // Processing time
'cfmPtPSEStart': ['From', 'selectCfmPtPSEStart', 'selectCfmPtPSEEnd'], selectCfmPtEteEnd: null,
'cfmPtPSEEnd': ['To', 'selectCfmPtPSEEnd', 'selectCfmPtPSEStart'], selectCfmPtEteSEStart: null,
'cfmWtEteStart': ['Start', 'selectCfmWtEteStart'], selectCfmPtEteSEEnd: null,
'cfmWtEteEnd': ['End', 'selectCfmWtEteEnd'], selectCfmPtPStart: null,
'cfmWtEteSEStart': ['Start', 'selectCfmWtEteSEStart', 'selectCfmWtEteSEEnd'], selectCfmPtPEnd: null,
'cfmWtEteSEEnd': ['End', 'selectCfmWtEteSEEnd', 'selectCfmWtEteSEStart'], selectCfmPtPSEStart: null,
'cfmWtPStart': ['From', 'selectCfmWtPStart'], selectCfmPtPSEEnd: null,
'cfmWtPEnd': ['To', 'selectCfmWtPEnd'], selectCfmWtEteStart: null, // Waiting time
'cfmWtPSEStart': ['From', 'selectCfmWtPSEStart', 'selectCfmWtPSEEnd'], selectCfmWtEteEnd: null,
'cfmWtPSEEnd': ['To', 'selectCfmWtPSEEnd', 'selectCfmWtPSEStart'], selectCfmWtEteSEStart: null,
'cfmCtEteStart': ['Start', 'selectCfmCtEteStart'], selectCfmWtEteSEEnd: null,
'cfmCtEteEnd': ['End', 'selectCfmCtEteEnd'], selectCfmWtPStart: null,
'cfmCtEteSEStart': ['Start', 'selectCfmCtEteSEStart', 'selectCfmCtEteSEEnd'], selectCfmWtPEnd: null,
'cfmCtEteSEEnd': ['End', 'selectCfmCtEteSEEnd', 'selectCfmCtEteSEStart'] selectCfmWtPSEStart: null,
}; selectCfmWtPSEEnd: null,
selectCfmCtEteStart: null, // Cycle time
selectCfmCtEteEnd: null,
selectCfmCtEteSEStart: null,
selectCfmCtEteSEEnd: null,
startAndEndIsReset: false,
});
const updateSelection = (key, mainSelector, secondarySelector) => { const selectCfmSeqSE = computed(() => {
if (this[mainSelector]) { const data = [];
if (data.task !== this[mainSelector]) this[secondarySelector] = null; if(state.selectCfmSeqStart) data.push(state.selectCfmSeqStart);
} if(state.selectCfmSeqEnd) data.push(state.selectCfmSeqEnd);
data.category = categoryMapping[key][0]; data.sort((a, b) => {
this[mainSelector] = data; const order = { 'Start': 1, 'End': 2};
}; return order[a.category] - order[b.category];
});
return data;
});
if (categoryMapping[data.category]) { const selectCfmPtEteSE = computed(() => {
const [category, mainSelector, secondarySelector] = categoryMapping[data.category]; const data = [];
if (secondarySelector) { if(state.selectCfmPtEteSEStart) data.push(state.selectCfmPtEteSEStart);
updateSelection(data.category, mainSelector, secondarySelector); if(state.selectCfmPtEteSEEnd) data.push(state.selectCfmPtEteSEEnd);
} else { data.sort((a, b) => {
data.category = category; const order = { 'Start': 1, 'End': 2};
this[mainSelector] = [data]; return order[a.category] - order[b.category];
} });
} else if (this.selectedRuleType === 'Activity duration') { return data;
this.durationData = [data.task]; });
}
}); const selectCfmPtPSE = computed(() => {
this.$emitter.on('getListSequence', (data) => { const data = [];
switch (data.category) { if(state.selectCfmPtPSEStart) data.push(state.selectCfmPtPSEStart);
case 'cfmSeqDirectly': if(state.selectCfmPtPSEEnd) data.push(state.selectCfmPtPSEEnd);
this.selectCfmSeqDirectly = data.task; data.sort((a, b) => {
break; const order = { 'From': 1, 'To': 2};
case 'cfmSeqEventually': return order[a.category] - order[b.category];
this.selectCfmSeqEventually = data.task; });
break; return data;
default: });
break;
} const selectCfmWtEteSE = computed(() => {
}); const data = [];
this.$emitter.on('reset', (data) => { if(state.selectCfmWtEteSEStart) data.push(state.selectCfmWtEteSEStart);
this.reset(); if(state.selectCfmWtEteSEEnd) data.push(state.selectCfmWtEteSEEnd);
}); data.sort((a, b) => {
// Radio 切換時,資料要清空 const order = { 'Start': 1, 'End': 2};
this.$emitter.on('isRadioChange', (data) => { return order[a.category] - order[b.category];
if(data) this.reset(); });
}); return data;
this.$emitter.on('isRadioProcessScopeChange', (data) => { });
if(data) this.reset();
}); const selectCfmWtPSE = computed(() => {
this.$emitter.on('isRadioActSeqMoreChange', (data) => { const data = [];
if(data) this.reset(); if(state.selectCfmWtPSEStart) data.push(state.selectCfmWtPSEStart);
}); if(state.selectCfmWtPSEEnd) data.push(state.selectCfmWtPSEEnd);
this.$emitter.on('isRadioActSeqFromToChange', (data) => { data.sort((a, b) => {
if(data) this.reset(); const order = { 'From': 1, 'To': 2};
}); return order[a.category] - order[b.category];
}, });
return data;
});
const selectCfmCtEteSE = computed(() => {
const data = [];
if(state.selectCfmCtEteSEStart) data.push(state.selectCfmCtEteSEStart);
if(state.selectCfmCtEteSEEnd) data.push(state.selectCfmCtEteSEEnd);
data.sort((a, b) => {
const order = { 'Start': 1, 'End': 2};
return order[a.category] - order[b.category];
});
return data;
});
/**
* All reset
*/
function reset() {
state.containstTasksData = null;
state.startEndData = null;
state.selectCfmSeqStart = null;
state.selectCfmSeqEnd = null;
state.selectCfmSeqDirectly = [];
state.selectCfmSeqEventually = [];
state.durationData = null;
state.selectCfmPtEteStart = null;
state.selectCfmPtEteEnd = null;
state.selectCfmPtEteSEStart = null;
state.selectCfmPtEteSEEnd = null;
state.selectCfmPtPStart = null;
state.selectCfmPtPEnd = null;
state.selectCfmPtPSEStart = null;
state.selectCfmPtPSEEnd = null;
state.selectCfmWtEteStart = null; // Waiting time
state.selectCfmWtEteEnd = null;
state.selectCfmWtEteSEStart = null;
state.selectCfmWtEteSEEnd = null;
state.selectCfmWtPStart = null;
state.selectCfmWtPEnd = null;
state.selectCfmWtPSEStart = null;
state.selectCfmWtPSEEnd = null;
state.selectCfmCtEteStart = null; // Cycle time
state.selectCfmCtEteEnd = null;
state.selectCfmCtEteSEStart = null;
state.selectCfmCtEteSEEnd = null;
state.startAndEndIsReset = true;
} }
// created() logic
emitter.on('actListData', (data) => {
state.containstTasksData = data;
});
emitter.on('actRadioData', (newData) => {
const data = JSON.parse(JSON.stringify(newData)); // 深拷貝原始 cases 的內容
const categoryMapping = {
'cfmSeqStart': ['Start', 'selectCfmSeqStart', 'selectCfmSeqEnd'],
'cfmSeqEnd': ['End', 'selectCfmSeqEnd', 'selectCfmSeqStart'],
'cfmPtEteStart': ['Start', 'selectCfmPtEteStart'],
'cfmPtEteEnd': ['End', 'selectCfmPtEteEnd'],
'cfmPtEteSEStart': ['Start', 'selectCfmPtEteSEStart', 'selectCfmPtEteSEEnd'],
'cfmPtEteSEEnd': ['End', 'selectCfmPtEteSEEnd', 'selectCfmPtEteSEStart'],
'cfmPtPStart': ['From', 'selectCfmPtPStart'],
'cfmPtPEnd': ['To', 'selectCfmPtPEnd'],
'cfmPtPSEStart': ['From', 'selectCfmPtPSEStart', 'selectCfmPtPSEEnd'],
'cfmPtPSEEnd': ['To', 'selectCfmPtPSEEnd', 'selectCfmPtPSEStart'],
'cfmWtEteStart': ['Start', 'selectCfmWtEteStart'],
'cfmWtEteEnd': ['End', 'selectCfmWtEteEnd'],
'cfmWtEteSEStart': ['Start', 'selectCfmWtEteSEStart', 'selectCfmWtEteSEEnd'],
'cfmWtEteSEEnd': ['End', 'selectCfmWtEteSEEnd', 'selectCfmWtEteSEStart'],
'cfmWtPStart': ['From', 'selectCfmWtPStart'],
'cfmWtPEnd': ['To', 'selectCfmWtPEnd'],
'cfmWtPSEStart': ['From', 'selectCfmWtPSEStart', 'selectCfmWtPSEEnd'],
'cfmWtPSEEnd': ['To', 'selectCfmWtPSEEnd', 'selectCfmWtPSEStart'],
'cfmCtEteStart': ['Start', 'selectCfmCtEteStart'],
'cfmCtEteEnd': ['End', 'selectCfmCtEteEnd'],
'cfmCtEteSEStart': ['Start', 'selectCfmCtEteSEStart', 'selectCfmCtEteSEEnd'],
'cfmCtEteSEEnd': ['End', 'selectCfmCtEteSEEnd', 'selectCfmCtEteSEStart']
};
const updateSelection = (key, mainSelector, secondarySelector) => {
if (state[mainSelector]) {
if (data.task !== state[mainSelector]) state[secondarySelector] = null;
}
data.category = categoryMapping[key][0];
state[mainSelector] = data;
};
if (categoryMapping[data.category]) {
const [category, mainSelector, secondarySelector] = categoryMapping[data.category];
if (secondarySelector) {
updateSelection(data.category, mainSelector, secondarySelector);
} else {
data.category = category;
state[mainSelector] = [data];
}
} else if (selectedRuleType.value === 'Activity duration') {
state.durationData = [data.task];
}
});
emitter.on('getListSequence', (data) => {
switch (data.category) {
case 'cfmSeqDirectly':
state.selectCfmSeqDirectly = data.task;
break;
case 'cfmSeqEventually':
state.selectCfmSeqEventually = data.task;
break;
default:
break;
}
});
emitter.on('reset', (data) => {
reset();
});
// Radio 切換時,資料要清空
emitter.on('isRadioChange', (data) => {
if(data) reset();
});
emitter.on('isRadioProcessScopeChange', (data) => {
if(data) reset();
});
emitter.on('isRadioActSeqMoreChange', (data) => {
if(data) reset();
});
emitter.on('isRadioActSeqFromToChange', (data) => {
if(data) reset();
});
</script> </script>
<style scoped> <style scoped>
:deep(.disc) { :deep(.disc) {

View File

@@ -97,346 +97,316 @@
</div> </div>
</section> </section>
</template> </template>
<script> <script setup>
import { ref, computed, watch } from 'vue';
import { storeToRefs } from 'pinia'; import { storeToRefs } from 'pinia';
import { useLoadingStore } from '@/stores/loading'; import { useLoadingStore } from '@/stores/loading';
import { useConformanceStore } from '@/stores/conformance'; import { useConformanceStore } from '@/stores/conformance';
import emitter from '@/utils/emitter';
import ActList from './ActList.vue'; import ActList from './ActList.vue';
import ActRadio from './ActRadio.vue'; import ActRadio from './ActRadio.vue';
import ActSeqDrag from './ActSeqDrag.vue'; import ActSeqDrag from './ActSeqDrag.vue';
export default { const loadingStore = useLoadingStore();
setup() { const conformanceStore = useConformanceStore();
const loadingStore = useLoadingStore(); const { isLoading } = storeToRefs(loadingStore);
const conformanceStore = useConformanceStore(); const { selectedRuleType, selectedActivitySequence, selectedMode, selectedProcessScope, selectedActSeqMore,
const { isLoading } = storeToRefs(loadingStore); selectedActSeqFromTo, conformanceTask, cfmSeqStart, cfmSeqEnd, cfmPtEteStart, cfmPtEteEnd, cfmPtEteSE,
const { selectedRuleType, selectedActivitySequence, selectedMode, selectedProcessScope, selectedActSeqMore, cfmPtPStart, cfmPtPEnd, cfmPtPSE, cfmWtEteStart, cfmWtEteEnd, cfmWtEteSE, cfmWtPStart, cfmWtPEnd,
selectedActSeqFromTo, conformanceTask, cfmSeqStart, cfmSeqEnd, cfmPtEteStart, cfmPtEteEnd, cfmPtEteSE, cfmWtPSE, cfmCtEteStart, cfmCtEteEnd, cfmCtEteSE, isStartSelected, isEndSelected
cfmPtPStart, cfmPtPEnd, cfmPtPSE, cfmWtEteStart, cfmWtEteEnd, cfmWtEteSE, cfmWtPStart, cfmWtPEnd, } = storeToRefs(conformanceStore);
cfmWtPSE, cfmCtEteStart, cfmCtEteEnd, cfmCtEteSE, isStartSelected, isEndSelected
} = storeToRefs(conformanceStore);
return { isLoading, selectedRuleType, selectedActivitySequence, selectedMode, selectedProcessScope, const props = defineProps(['isSubmit', 'isSubmitTask', 'isSubmitStartAndEnd', 'isSubmitCfmSeqDirectly', 'isSubmitCfmSeqEventually',
selectedActSeqMore, selectedActSeqFromTo, conformanceTask, cfmSeqStart, cfmSeqEnd, cfmPtEteStart, 'isSubmitDurationData', 'isSubmitCfmPtEteStart', 'isSubmitCfmPtEteEnd', 'isSubmitCfmPtEteSE',
cfmPtEteEnd, cfmPtEteSE, cfmPtPStart, cfmPtPEnd, cfmPtPSE, cfmWtEteStart, cfmWtEteEnd, cfmWtEteSE, 'isSubmitCfmPtPStart', 'isSubmitCfmPtPEnd', 'isSubmitCfmPtPSE', 'isSubmitCfmWtEteStart',
cfmWtPStart, cfmWtPEnd, cfmWtPSE, cfmCtEteStart, cfmCtEteEnd, cfmCtEteSE, isStartSelected, 'isSubmitCfmWtEteEnd', 'isSubmitCfmWtEteSE', 'isSubmitCfmWtPStart', 'isSubmitCfmWtPEnd',
isEndSelected 'isSubmitCfmWtPSE', 'isSubmitCfmCtEteStart', 'isSubmitCfmCtEteEnd', 'isSubmitCfmCtEteSE',
}; 'isSubmitShowDataSeq', 'isSubmitShowDataPtEte', 'isSubmitShowDataPtP', 'isSubmitShowDataWtEte',
}, 'isSubmitShowDataWtP', 'isSubmitShowDataCt'
props: ['isSubmit', 'isSubmitTask', 'isSubmitStartAndEnd', 'isSubmitCfmSeqDirectly', 'isSubmitCfmSeqEventually', ]);
'isSubmitDurationData', 'isSubmitCfmPtEteStart', 'isSubmitCfmPtEteEnd', 'isSubmitCfmPtEteSE',
'isSubmitCfmPtPStart', 'isSubmitCfmPtPEnd', 'isSubmitCfmPtPSE', 'isSubmitCfmWtEteStart', const task = ref(null);
'isSubmitCfmWtEteEnd', 'isSubmitCfmWtEteSE', 'isSubmitCfmWtPStart', 'isSubmitCfmWtPEnd', const taskStart = ref(null);
'isSubmitCfmWtPSE', 'isSubmitCfmCtEteStart', 'isSubmitCfmCtEteEnd', 'isSubmitCfmCtEteSE', const taskEnd = ref(null);
'isSubmitShowDataSeq', 'isSubmitShowDataPtEte', 'isSubmitShowDataPtP', 'isSubmitShowDataWtEte',
'isSubmitShowDataWtP', 'isSubmitShowDataCt' // Activity sequence
], const cfmSeqStartData = computed(() => {
components: { if(props.isSubmit && task.value === null) task.value = props.isSubmitShowDataSeq.task;
ActList, return isEndSelected.value ? setSeqStartAndEndData(cfmSeqEnd.value, 'sources', task.value) : cfmSeqStart.value.map(i => i.label);
ActRadio, });
ActSeqDrag const cfmSeqEndData = computed(() => {
}, if(props.isSubmit && task.value === null) task.value = props.isSubmitShowDataSeq.task;
data() { return isStartSelected.value ? setSeqStartAndEndData(cfmSeqStart.value, 'sinks', task.value) : cfmSeqEnd.value.map(i => i.label);
return { });
task: null, // Processing time
taskStart: null, const cfmPtEteStartData = computed(() => {
taskEnd: null, return cfmPtEteStart.value.map(i => i.task);
} });
}, const cfmPtEteEndData = computed(() => {
computed: { return cfmPtEteEnd.value.map(i => i.task);
// Activity sequence });
cfmSeqStartData: function() { const cfmPtEteSEStartData = computed(() => {
if(this.isSubmit && this.task === null)this.task = this.isSubmitShowDataSeq.task; if(props.isSubmit && task.value === null) task.value = props.isSubmitShowDataPtEte.task;
return this.isEndSelected ? this.setSeqStartAndEndData(this.cfmSeqEnd, 'sources', this.task) : this.cfmSeqStart.map(i => i.label); return isEndSelected.value ? setStartAndEndData(cfmPtEteSE.value, 'end', task.value) : setTaskData(cfmPtEteSE.value, 'start');
}, });
cfmSeqEndData: function() { const cfmPtEteSEEndData = computed(() => {
if(this.isSubmit && this.task === null)this.task = this.isSubmitShowDataSeq.task; if(props.isSubmit && task.value === null) task.value = props.isSubmitShowDataPtEte.task;
return this.isStartSelected ? this.setSeqStartAndEndData(this.cfmSeqStart, 'sinks', this.task) : this.cfmSeqEnd.map(i => i.label); return isStartSelected.value ? setStartAndEndData(cfmPtEteSE.value, 'start', task.value) : setTaskData(cfmPtEteSE.value, 'end');
}, });
// Processing time const cfmPtPStartData = computed(() => {
cfmPtEteStartData: function() { return cfmPtPStart.value.map(i => i.task);
return this.cfmPtEteStart.map(i => i.task); });
}, const cfmPtPEndData = computed(() => {
cfmPtEteEndData: function() { return cfmPtPEnd.value.map(i => i.task);
return this.cfmPtEteEnd.map(i => i.task); });
}, const cfmPtPSEStartData = computed(() => {
cfmPtEteSEStartData: function() { if(props.isSubmit && task.value === null) task.value = props.isSubmitShowDataPtP.task;
if(this.isSubmit && this.task === null)this.task = this.isSubmitShowDataPtEte.task; return isEndSelected.value ? setStartAndEndData(cfmPtPSE.value, 'end', task.value) : setTaskData(cfmPtPSE.value, 'start');
return this.isEndSelected ? this.setStartAndEndData(this.cfmPtEteSE, 'end', this.task) : this.setTaskData(this.cfmPtEteSE, 'start'); });
}, const cfmPtPSEEndData = computed(() => {
cfmPtEteSEEndData: function() { if(props.isSubmit && task.value === null) task.value = props.isSubmitShowDataPtP.task;
if(this.isSubmit && this.task === null)this.task = this.isSubmitShowDataPtEte.task; return isStartSelected.value ? setStartAndEndData(cfmPtPSE.value, 'start', task.value) : setTaskData(cfmPtPSE.value, 'end');
return this.isStartSelected ? this.setStartAndEndData(this.cfmPtEteSE, 'start', this.task) : this.setTaskData(this.cfmPtEteSE, 'end'); });
}, // Waiting time
cfmPtPStartData: function() { const cfmWtEteStartData = computed(() => {
return this.cfmPtPStart.map(i => i.task); return cfmWtEteStart.value.map(i => i.task);
}, });
cfmPtPEndData: function() { const cfmWtEteEndData = computed(() => {
return this.cfmPtPEnd.map(i => i.task); return cfmWtEteEnd.value.map(i => i.task);
}, });
cfmPtPSEStartData: function() { const cfmWtEteSEStartData = computed(() => {
if(this.isSubmit && this.task === null) this.task = this.isSubmitShowDataPtP.task; if(props.isSubmit && task.value === null) task.value = props.isSubmitShowDataWtEte.task;
return this.isEndSelected ? this.setStartAndEndData(this.cfmPtPSE, 'end', this.task) : this.setTaskData(this.cfmPtPSE, 'start'); return isEndSelected.value ? setStartAndEndData(cfmWtEteSE.value, 'end', task.value) : setTaskData(cfmWtEteSE.value, 'start');
}, });
cfmPtPSEEndData: function() { const cfmWtEteSEEndData = computed(() => {
if(this.isSubmit && this.task === null) this.task = this.isSubmitShowDataPtP.task; if(props.isSubmit && task.value === null) task.value = props.isSubmitShowDataWtEte.task;
return this.isStartSelected ? this.setStartAndEndData(this.cfmPtPSE, 'start', this.task) : this.setTaskData(this.cfmPtPSE, 'end'); return isStartSelected.value ? setStartAndEndData(cfmWtEteSE.value, 'start', task.value) : setTaskData(cfmWtEteSE.value, 'end');
}, });
// Waiting time const cfmWtPStartData = computed(() => {
cfmWtEteStartData: function() { return cfmWtPStart.value.map(i => i.task);
return this.cfmWtEteStart.map(i => i.task); });
}, const cfmWtPEndData = computed(() => {
cfmWtEteEndData: function() { return cfmWtPEnd.value.map(i => i.task);
return this.cfmWtEteEnd.map(i => i.task); });
}, const cfmWtPSEStartData = computed(() => {
cfmWtEteSEStartData: function() { if(props.isSubmit && task.value === null) task.value = props.isSubmitShowDataWtP.task;
if(this.isSubmit && this.task === null)this.task = this.isSubmitShowDataWtEte.task; return isEndSelected.value ? setStartAndEndData(cfmWtPSE.value, 'end', task.value) : setTaskData(cfmWtPSE.value, 'start');
return this.isEndSelected ? this.setStartAndEndData(this.cfmWtEteSE, 'end', this.task) : this.setTaskData(this.cfmWtEteSE, 'start'); });
}, const cfmWtPSEEndData = computed(() => {
cfmWtEteSEEndData: function() { if(props.isSubmit && task.value === null) task.value = props.isSubmitShowDataWtP.task;
if(this.isSubmit && this.task === null)this.task = this.isSubmitShowDataWtEte.task; return isStartSelected.value ? setStartAndEndData(cfmWtPSE.value, 'start', task.value) : setTaskData(cfmWtPSE.value, 'end');
return this.isStartSelected ? this.setStartAndEndData(this.cfmWtEteSE, 'start', this.task) : this.setTaskData(this.cfmWtEteSE, 'end'); });
}, // Cycle time
cfmWtPStartData: function() { const cfmCtEteStartData = computed(() => {
return this.cfmWtPStart.map(i => i.task); return cfmCtEteStart.value.map(i => i.task);
}, });
cfmWtPEndData: function() { const cfmCtEteEndData = computed(() => {
return this.cfmWtPEnd.map(i => i.task); return cfmCtEteEnd.value.map(i => i.task);
}, });
cfmWtPSEStartData: function() { const cfmCtEteSEStartData = computed(() => {
if(this.isSubmit && this.task === null)this.task = this.isSubmitShowDataWtP.task; if(props.isSubmit && task.value === null) task.value = props.isSubmitShowDataCt.task;
return this.isEndSelected ? this.setStartAndEndData(this.cfmWtPSE, 'end', this.task) : this.setTaskData(this.cfmWtPSE, 'start'); return isEndSelected.value ? setStartAndEndData(cfmCtEteSE.value, 'end', task.value) : setTaskData(cfmCtEteSE.value, 'start');
}, });
cfmWtPSEEndData: function() { const cfmCtEteSEEndData = computed(() => {
if(this.isSubmit && this.task === null)this.task = this.isSubmitShowDataWtP.task; if(props.isSubmit && task.value === null) task.value = props.isSubmitShowDataCt.task;
return this.isStartSelected ? this.setStartAndEndData(this.cfmWtPSE, 'start', this.task) : this.setTaskData(this.cfmWtPSE, 'end'); return isStartSelected.value ? setStartAndEndData(cfmCtEteSE.value, 'start', task.value) : setTaskData(cfmCtEteSE.value, 'end');
}, });
// Cycle time
cfmCtEteStartData: function() { // Watchers - 解決儲存後的 Rule 檔,無法重新更改規則之問題
return this.cfmCtEteStart.map(i => i.task); watch(() => props.isSubmitShowDataSeq, (newValue) => {
}, taskStart.value = newValue.taskStart;
cfmCtEteEndData: function() { taskEnd.value = newValue.taskEnd;
return this.cfmCtEteEnd.map(i => i.task); });
}, watch(() => props.isSubmitShowDataPtEte, (newValue) => {
cfmCtEteSEStartData: function() { taskStart.value = newValue.taskStart;
if(this.isSubmit && this.task === null)this.task = this.isSubmitShowDataCt.task; taskEnd.value = newValue.taskEnd;
return this.isEndSelected ? this.setStartAndEndData(this.cfmCtEteSE, 'end', this.task) : this.setTaskData(this.cfmCtEteSE, 'start'); });
}, watch(() => props.isSubmitShowDataPtP, (newValue) => {
cfmCtEteSEEndData: function() { taskStart.value = newValue.taskStart;
if(this.isSubmit && this.task === null)this.task = this.isSubmitShowDataCt.task; taskEnd.value = newValue.taskEnd;
return this.isStartSelected ? this.setStartAndEndData(this.cfmCtEteSE, 'start', this.task) : this.setTaskData(this.cfmCtEteSE, 'end'); });
}, watch(() => props.isSubmitShowDataWtEte, (newValue) => {
}, taskStart.value = newValue.taskStart;
watch: { // 解決儲存後的 Rule 檔,無法重新更改規則之問題 taskEnd.value = newValue.taskEnd;
isSubmitShowDataSeq: { });
handler: function(newValue) { watch(() => props.isSubmitShowDataWtP, (newValue) => {
this.taskStart = newValue.taskStart; taskStart.value = newValue.taskStart;
this.taskEnd = newValue.taskEnd; taskEnd.value = newValue.taskEnd;
} });
}, watch(() => props.isSubmitShowDataCt, (newValue) => {
isSubmitShowDataPtEte: { taskStart.value = newValue.taskStart;
handler: function(newValue) { taskEnd.value = newValue.taskEnd;
this.taskStart = newValue.taskStart; });
this.taskEnd = newValue.taskEnd;
} /**
}, * 設定 start and end 的 Radio Data
isSubmitShowDataPtP: { * @param {object} data cfmSeqStart | cfmSeqEnd | cfmPtEteSE | cfmPtPSE | cfmWtEteSE | cfmWtPSE | cfmCtEteSE
handler: function(newValue) { * 傳入以上任一後端接到的 Activities 列表 Data。
this.taskStart = newValue.taskStart; * @param {string} category 'start' | 'end',傳入 'start' 或 'end'。
this.taskEnd = newValue.taskEnd; * @returns {array}
} */
}, function setTaskData(data, category) {
isSubmitShowDataWtEte: { let newData = data.map(i => i[category]);
handler: function(newValue) { newData = [...new Set(newData)]; // Set 是一種集合型別,只會儲存獨特的值。
this.taskStart = newValue.taskStart; return newData;
this.taskEnd = newValue.taskEnd; }
} /**
}, * 重新設定連動的 start and end 的 Radio Data
isSubmitShowDataWtP: { * @param {object} data cfmPtEteSE | cfmPtPSE | cfmWtEteSE | cfmWtPSE | cfmCtEteSE
handler: function(newValue) { * 傳入以上任一後端接到的 Activities 列表 Data。
this.taskStart = newValue.taskStart; * @param {string} category 'start' | 'end',傳入 'start' 或 'end'。
this.taskEnd = newValue.taskEnd; * @param {string} task 已選擇的 Activity task
} * @returns {array}
}, */
isSubmitShowDataCt: { function setStartAndEndData(data, category, taskVal) {
handler: function(newValue) { let oppositeCategory = '';
this.taskStart = newValue.taskStart; if (category === 'start') {
this.taskEnd = newValue.taskEnd; oppositeCategory = 'end';
} } else {
}, oppositeCategory = 'start';
}, };
methods: { let newData = data.filter(i => i[category] === taskVal).map(i => i[oppositeCategory]);
/** newData = [...new Set(newData)];
* 設定 start and end 的 Radio Data return newData;
* @param {object} data cfmSeqStart | cfmSeqEnd | cfmPtEteSE | cfmPtPSE | cfmWtEteSE | cfmWtPSE | cfmCtEteSE }
* 傳入以上任一後端接到的 Activities 列表 Data。 /**
* @param {string} category 'start' | 'end',傳入 'start' 或 'end'。 * 重新設定 Activity sequence 連動的 start and end 的 Radio Data
* @returns {array} * @param {object} data cfmSeqStart | cfmSeqEnd傳入以上任一後端接到的 Activities 列表 Data。
*/ * @param {string} category 'sources' | 'sinks',傳入 'sources' 或 'sinks'。
setTaskData(data, category) { * @param {string} task 已選擇的 Activity task
let newData = data.map(i => i[category]); * @returns {array}
newData = [...new Set(newData)]; // Set 是一種集合型別,只會儲存獨特的值。 */
return newData; function setSeqStartAndEndData(data, category, taskVal) {
}, let newData = data.filter(i => i.label === taskVal).map(i => i[category]);
/** newData = [...new Set(...newData)];
* 重新設定連動的 start and end 的 Radio Data return newData;
* @param {object} data cfmPtEteSE | cfmPtPSE | cfmWtEteSE | cfmWtPSE | cfmCtEteSE }
* 傳入以上任一後端接到的 Activities 列表 Data。 /**
* @param {string} category 'start' | 'end',傳入 'start' 或 'end'。 * select start list's task
* @param {string} task 已選擇的 Activity task * @param {event} e 觸發 input 的詳細事件
* @returns {array} */
*/ function selectStart(e) {
setStartAndEndData(data, category, task) { taskStart.value = e;
let oppositeCategory = ''; if(isStartSelected.value === null || isStartSelected.value === true){
if (category === 'start') { isStartSelected.value = true;
oppositeCategory = 'end'; isEndSelected.value = false;
} else { task.value = e;
oppositeCategory = 'start'; taskEnd.value = null;
}; emitter.emit('sratrAndEndToStart', {
let newData = data.filter(i => i[category] === task).map(i => i[oppositeCategory]); start: true,
newData = [...new Set(newData)]; end: false,
return newData; });
}, };
/** }
* 重新設定 Activity sequence 連動的 start and end 的 Radio Data /**
* @param {object} data cfmSeqStart | cfmSeqEnd傳入以上任一後端接到的 Activities 列表 Data。 * select End list's task
* @param {string} category 'sources' | 'sinks',傳入 'sources' 或 'sinks'。 * @param {event} e 觸發 input 的詳細事件
* @param {string} task 已選擇的 Activity task */
* @returns {array} function selectEnd(e) {
*/ taskEnd.value = e;
setSeqStartAndEndData(data, category, task) { if(isEndSelected.value === null || isEndSelected.value === true){
let newData = data.filter(i => i.label === task).map(i => i[category]); isEndSelected.value = true;
newData = [...new Set(...newData)]; isStartSelected.value = false;
return newData; task.value = e;
}, taskStart.value = null;
/** emitter.emit('sratrAndEndToStart', {
* select start list's task start: false,
* @param {event} e 觸發 input 的詳細事件 end: true,
*/ });
selectStart(e) { }
this.taskStart = e; }
if(this.isStartSelected === null || this.isStartSelected === true){ /**
this.isStartSelected = true; * reset all data.
this.isEndSelected = false; */
this.task = e; function reset() {
this.taskEnd = null; task.value = null;
this.$emitter.emit('sratrAndEndToStart', { isStartSelected.value = null;
start: true, isEndSelected.value = null;
end: false, taskStart.value = null;
}); taskEnd.value = null;
}; }
}, /**
/** * Radio 切換時Start & End Data 連動改變
* select End list's task * @param {boolean} data true | false傳入 true 或 false
* @param {event} e 觸發 input 的詳細事件 */
*/ function setResetData(data) {
selectEnd(e) { if(data) {
this.taskEnd = e; if(props.isSubmit) {
if(this.isEndSelected === null || this.isEndSelected === true){ switch (selectedRuleType.value) {
this.isEndSelected = true; case 'Activity sequence':
this.isStartSelected = false; task.value = props.isSubmitShowDataSeq.task;
this.task = e; isStartSelected.value = props.isSubmitShowDataSeq.isStartSelected;
this.taskStart = null; isEndSelected.value = props.isSubmitShowDataSeq.isEndSelected;
this.$emitter.emit('sratrAndEndToStart', { break;
start: false, case 'Processing time':
end: true, switch (selectedProcessScope.value) {
}); case 'End to end':
} task.value = props.isSubmitShowDataPtEte.task;
}, isStartSelected.value = props.isSubmitShowDataPtEte.isStartSelected;
/** isEndSelected.value = props.isSubmitShowDataPtEte.isEndSelected;
* reset all data.
*/
reset() {
this.task = null;
this.isStartSelected = null;
this.isEndSelected = null;
this.taskStart = null;
this.taskEnd = null;
},
/**
* Radio 切換時Start & End Data 連動改變
* @param {boolean} data true | false傳入 true 或 false
*/
setResetData(data) {
if(data) {
if(this.isSubmit) {
switch (this.selectedRuleType) {
case 'Activity sequence':
this.task = this.isSubmitShowDataSeq.task;
this.isStartSelected = this.isSubmitShowDataSeq.isStartSelected;
this.isEndSelected = this.isSubmitShowDataSeq.isEndSelected;
break; break;
case 'Processing time': case 'Partial':
switch (this.selectedProcessScope) { task.value = props.isSubmitShowDataPtP.task;
case 'End to end': isStartSelected.value = props.isSubmitShowDataPtP.isStartSelected;
this.task = this.isSubmitShowDataPtEte.task; isEndSelected.value = props.isSubmitShowDataPtP.isEndSelected;
this.isStartSelected = this.isSubmitShowDataPtEte.isStartSelected;
this.isEndSelected = this.isSubmitShowDataPtEte.isEndSelected;
break;
case 'Partial':
this.task = this.isSubmitShowDataPtP.task;
this.isStartSelected = this.isSubmitShowDataPtP.isStartSelected;
this.isEndSelected = this.isSubmitShowDataPtP.isEndSelected;
break;
default:
break;
}
break;
case 'Waiting time':
switch (this.selectedProcessScope) {
case 'End to end':
this.task = this.isSubmitShowDataWtEte.task;
this.isStartSelected = this.isSubmitShowDataWtEte.isStartSelected;
this.isEndSelected = this.isSubmitShowDataWtEte.isEndSelected;
break;
case 'Partial':
this.task = this.isSubmitShowDataWtP.task;
this.isStartSelected = this.isSubmitShowDataWtP.isStartSelected;
this.isEndSelected = this.isSubmitShowDataWtP.isEndSelected;
break;
default:
break;
}
break;
case 'Cycle time':
this.task = this.isSubmitShowDataCt.task;
this.isStartSelected = this.isSubmitShowDataCt.isStartSelected;
this.isEndSelected = this.isSubmitShowDataCt.isEndSelected;
break; break;
default: default:
break; break;
} }
} else { break;
this.reset(); case 'Waiting time':
} switch (selectedProcessScope.value) {
case 'End to end':
task.value = props.isSubmitShowDataWtEte.task;
isStartSelected.value = props.isSubmitShowDataWtEte.isStartSelected;
isEndSelected.value = props.isSubmitShowDataWtEte.isEndSelected;
break;
case 'Partial':
task.value = props.isSubmitShowDataWtP.task;
isStartSelected.value = props.isSubmitShowDataWtP.isStartSelected;
isEndSelected.value = props.isSubmitShowDataWtP.isEndSelected;
break;
default:
break;
}
break;
case 'Cycle time':
task.value = props.isSubmitShowDataCt.task;
isStartSelected.value = props.isSubmitShowDataCt.isStartSelected;
isEndSelected.value = props.isSubmitShowDataCt.isEndSelected;
break;
default:
break;
} }
} else {
reset();
} }
},
created() {
this.$emitter.on('isRadioChange', (data) => {
this.setResetData(data);
});
this.$emitter.on('isRadioSeqChange', (data) => {
this.setResetData(data);
});
this.$emitter.on('isRadioProcessScopeChange', (data) => {
if(data) {
this.setResetData(data);
};
});
this.$emitter.on('isRadioActSeqMoreChange', (data) => {
if(data) {
this.setResetData(data);
};
});
this.$emitter.on('isRadioActSeqFromToChange', (data) => {
if(data) {
this.setResetData(data);
};
});
this.$emitter.on('reset', data => {
this.reset();
});
} }
} }
// created() logic
emitter.on('isRadioChange', (data) => {
setResetData(data);
});
emitter.on('isRadioSeqChange', (data) => {
setResetData(data);
});
emitter.on('isRadioProcessScopeChange', (data) => {
if(data) {
setResetData(data);
};
});
emitter.on('isRadioActSeqMoreChange', (data) => {
if(data) {
setResetData(data);
};
});
emitter.on('isRadioActSeqFromToChange', (data) => {
if(data) {
setResetData(data);
};
});
emitter.on('reset', data => {
reset();
});
</script> </script>

View File

@@ -5,373 +5,380 @@
<div class=" text-sm leading-normal"> <div class=" text-sm leading-normal">
<!-- Activity duration --> <!-- Activity duration -->
<TimeRangeDuration <TimeRangeDuration
v-if="selectedRuleType === 'Activity duration'" :time="timeDuration" :select="isSubmitDurationTime" @min-total-seconds="minTotalSeconds" v-if="selectedRuleType === 'Activity duration'" :time="state.timeDuration" :select="isSubmitDurationTime" @min-total-seconds="minTotalSeconds"
@max-total-seconds="maxTotalSeconds" /> @max-total-seconds="maxTotalSeconds" />
<!-- Processing time --> <!-- Processing time -->
<TimeRangeDuration v-if="selectedRuleType === 'Processing time' && selectedProcessScope === 'End to end' <TimeRangeDuration v-if="selectedRuleType === 'Processing time' && selectedProcessScope === 'End to end'
&& selectedActSeqMore === 'All'" :time="timeCfmPtEteAll" :select="isSubmitTimeCfmPtEteAll" @min-total-seconds="minTotalSeconds" && selectedActSeqMore === 'All'" :time="state.timeCfmPtEteAll" :select="isSubmitTimeCfmPtEteAll" @min-total-seconds="minTotalSeconds"
@max-total-seconds="maxTotalSeconds" /> @max-total-seconds="maxTotalSeconds" />
<TimeRangeDuration v-if="selectedRuleType === 'Processing time' && selectedProcessScope === 'End to end' <TimeRangeDuration v-if="selectedRuleType === 'Processing time' && selectedProcessScope === 'End to end'
&& selectedActSeqMore === 'Start'" :time="timeCfmPtEteStart" :select="isSubmitTimeCfmPtEteStart" @min-total-seconds="minTotalSeconds" && selectedActSeqMore === 'Start'" :time="state.timeCfmPtEteStart" :select="isSubmitTimeCfmPtEteStart" @min-total-seconds="minTotalSeconds"
@max-total-seconds="maxTotalSeconds" /> @max-total-seconds="maxTotalSeconds" />
<TimeRangeDuration v-if="selectedRuleType === 'Processing time' && selectedProcessScope === 'End to end' <TimeRangeDuration v-if="selectedRuleType === 'Processing time' && selectedProcessScope === 'End to end'
&& selectedActSeqMore === 'End'" :time="timeCfmPtEteEnd" :select="isSubmitTimeCfmPtEteEnd" @min-total-seconds="minTotalSeconds" && selectedActSeqMore === 'End'" :time="state.timeCfmPtEteEnd" :select="isSubmitTimeCfmPtEteEnd" @min-total-seconds="minTotalSeconds"
@max-total-seconds="maxTotalSeconds" /> @max-total-seconds="maxTotalSeconds" />
<TimeRangeDuration v-if="selectedRuleType === 'Processing time' && selectedProcessScope === 'End to end' <TimeRangeDuration v-if="selectedRuleType === 'Processing time' && selectedProcessScope === 'End to end'
&& selectedActSeqMore === 'Start & End'" :time="timeCfmPtEteSE" :select="isSubmitTimeCfmPtEteSE" @min-total-seconds="minTotalSeconds" && selectedActSeqMore === 'Start & End'" :time="state.timeCfmPtEteSE" :select="isSubmitTimeCfmPtEteSE" @min-total-seconds="minTotalSeconds"
@max-total-seconds="maxTotalSeconds" /> @max-total-seconds="maxTotalSeconds" />
<TimeRangeDuration v-if="selectedRuleType === 'Processing time' && selectedProcessScope === 'Partial' <TimeRangeDuration v-if="selectedRuleType === 'Processing time' && selectedProcessScope === 'Partial'
&& selectedActSeqFromTo === 'From'" :time="timeCfmPtPStart" :select="isSubmitTimeCfmPtPStart" @min-total-seconds="minTotalSeconds" && selectedActSeqFromTo === 'From'" :time="state.timeCfmPtPStart" :select="isSubmitTimeCfmPtPStart" @min-total-seconds="minTotalSeconds"
@max-total-seconds="maxTotalSeconds" /> @max-total-seconds="maxTotalSeconds" />
<TimeRangeDuration v-if="selectedRuleType === 'Processing time' && selectedProcessScope === 'Partial' <TimeRangeDuration v-if="selectedRuleType === 'Processing time' && selectedProcessScope === 'Partial'
&& selectedActSeqFromTo === 'To'" :time="timeCfmPtPEnd" :select="isSubmitTimeCfmPtPEnd" @min-total-seconds="minTotalSeconds" && selectedActSeqFromTo === 'To'" :time="state.timeCfmPtPEnd" :select="isSubmitTimeCfmPtPEnd" @min-total-seconds="minTotalSeconds"
@max-total-seconds="maxTotalSeconds" /> @max-total-seconds="maxTotalSeconds" />
<TimeRangeDuration v-if="selectedRuleType === 'Processing time' && selectedProcessScope === 'Partial' <TimeRangeDuration v-if="selectedRuleType === 'Processing time' && selectedProcessScope === 'Partial'
&& selectedActSeqFromTo === 'From & To'" :time="timeCfmPtPSE" :select="isSubmitTimeCfmPtPSE" @min-total-seconds="minTotalSeconds" && selectedActSeqFromTo === 'From & To'" :time="state.timeCfmPtPSE" :select="isSubmitTimeCfmPtPSE" @min-total-seconds="minTotalSeconds"
@max-total-seconds="maxTotalSeconds" /> @max-total-seconds="maxTotalSeconds" />
<!-- Waiting time --> <!-- Waiting time -->
<TimeRangeDuration v-if="selectedRuleType === 'Waiting time' && selectedProcessScope === 'End to end' <TimeRangeDuration v-if="selectedRuleType === 'Waiting time' && selectedProcessScope === 'End to end'
&& selectedActSeqMore === 'All'" :time="timeCfmWtEteAll" :select="isSubmitTimeCfmWtEteAll" @min-total-seconds="minTotalSeconds" && selectedActSeqMore === 'All'" :time="state.timeCfmWtEteAll" :select="isSubmitTimeCfmWtEteAll" @min-total-seconds="minTotalSeconds"
@max-total-seconds="maxTotalSeconds" /> @max-total-seconds="maxTotalSeconds" />
<TimeRangeDuration v-if="selectedRuleType === 'Waiting time' && selectedProcessScope === 'End to end' <TimeRangeDuration v-if="selectedRuleType === 'Waiting time' && selectedProcessScope === 'End to end'
&& selectedActSeqMore === 'Start'" :time="timeCfmWtEteStart" :select="isSubmitTimeCfmWtEteStart" @min-total-seconds="minTotalSeconds" && selectedActSeqMore === 'Start'" :time="state.timeCfmWtEteStart" :select="isSubmitTimeCfmWtEteStart" @min-total-seconds="minTotalSeconds"
@max-total-seconds="maxTotalSeconds" /> @max-total-seconds="maxTotalSeconds" />
<TimeRangeDuration v-if="selectedRuleType === 'Waiting time' && selectedProcessScope === 'End to end' <TimeRangeDuration v-if="selectedRuleType === 'Waiting time' && selectedProcessScope === 'End to end'
&& selectedActSeqMore === 'End'" :time="timeCfmWtEteEnd" :select="isSubmitTimeCfmWtEteEnd" @min-total-seconds="minTotalSeconds" && selectedActSeqMore === 'End'" :time="state.timeCfmWtEteEnd" :select="isSubmitTimeCfmWtEteEnd" @min-total-seconds="minTotalSeconds"
@max-total-seconds="maxTotalSeconds" /> @max-total-seconds="maxTotalSeconds" />
<TimeRangeDuration v-if="selectedRuleType === 'Waiting time' && selectedProcessScope === 'End to end' <TimeRangeDuration v-if="selectedRuleType === 'Waiting time' && selectedProcessScope === 'End to end'
&& selectedActSeqMore === 'Start & End'" :time="timeCfmWtEteSE" :select="isSubmitTimeCfmWtEteSE" @min-total-seconds="minTotalSeconds" && selectedActSeqMore === 'Start & End'" :time="state.timeCfmWtEteSE" :select="isSubmitTimeCfmWtEteSE" @min-total-seconds="minTotalSeconds"
@max-total-seconds="maxTotalSeconds" /> @max-total-seconds="maxTotalSeconds" />
<TimeRangeDuration v-if="selectedRuleType === 'Waiting time' && selectedProcessScope === 'Partial' <TimeRangeDuration v-if="selectedRuleType === 'Waiting time' && selectedProcessScope === 'Partial'
&& selectedActSeqFromTo === 'From'" :time="timeCfmWtPStart" :select="isSubmitTimeCfmWtPStart" @min-total-seconds="minTotalSeconds" && selectedActSeqFromTo === 'From'" :time="state.timeCfmWtPStart" :select="isSubmitTimeCfmWtPStart" @min-total-seconds="minTotalSeconds"
@max-total-seconds="maxTotalSeconds" /> @max-total-seconds="maxTotalSeconds" />
<TimeRangeDuration v-if="selectedRuleType === 'Waiting time' && selectedProcessScope === 'Partial' <TimeRangeDuration v-if="selectedRuleType === 'Waiting time' && selectedProcessScope === 'Partial'
&& selectedActSeqFromTo === 'To'" :time="timeCfmWtPEnd" :select="isSubmitTimeCfmWtPEnd" @min-total-seconds="minTotalSeconds" && selectedActSeqFromTo === 'To'" :time="state.timeCfmWtPEnd" :select="isSubmitTimeCfmWtPEnd" @min-total-seconds="minTotalSeconds"
@max-total-seconds="maxTotalSeconds" /> @max-total-seconds="maxTotalSeconds" />
<TimeRangeDuration v-if="selectedRuleType === 'Waiting time' && selectedProcessScope === 'Partial' <TimeRangeDuration v-if="selectedRuleType === 'Waiting time' && selectedProcessScope === 'Partial'
&& selectedActSeqFromTo === 'From & To'" :time="timeCfmWtPSE" :select="isSubmitTimeCfmWtPSE" @min-total-seconds="minTotalSeconds" && selectedActSeqFromTo === 'From & To'" :time="state.timeCfmWtPSE" :select="isSubmitTimeCfmWtPSE" @min-total-seconds="minTotalSeconds"
@max-total-seconds="maxTotalSeconds" /> @max-total-seconds="maxTotalSeconds" />
<!-- Cycle time --> <!-- Cycle time -->
<TimeRangeDuration v-if="selectedRuleType === 'Cycle time' && selectedProcessScope === 'End to end' <TimeRangeDuration v-if="selectedRuleType === 'Cycle time' && selectedProcessScope === 'End to end'
&& selectedActSeqMore === 'All'" :time="timeCfmCtEteAll" :select="isSubmitTimeCfmCtEteAll" @min-total-seconds="minTotalSeconds" && selectedActSeqMore === 'All'" :time="state.timeCfmCtEteAll" :select="isSubmitTimeCfmCtEteAll" @min-total-seconds="minTotalSeconds"
@max-total-seconds="maxTotalSeconds" /> @max-total-seconds="maxTotalSeconds" />
<TimeRangeDuration v-if="selectedRuleType === 'Cycle time' && selectedProcessScope === 'End to end' <TimeRangeDuration v-if="selectedRuleType === 'Cycle time' && selectedProcessScope === 'End to end'
&& selectedActSeqMore === 'Start'" :time="timeCfmCtEteStart" :select="isSubmitTimeCfmCtEteStart" @min-total-seconds="minTotalSeconds" && selectedActSeqMore === 'Start'" :time="state.timeCfmCtEteStart" :select="isSubmitTimeCfmCtEteStart" @min-total-seconds="minTotalSeconds"
@max-total-seconds="maxTotalSeconds" /> @max-total-seconds="maxTotalSeconds" />
<TimeRangeDuration v-if="selectedRuleType === 'Cycle time' && selectedProcessScope === 'End to end' <TimeRangeDuration v-if="selectedRuleType === 'Cycle time' && selectedProcessScope === 'End to end'
&& selectedActSeqMore === 'End'" :time="timeCfmCtEteEnd" :select="isSubmitTimeCfmCtEteEnd" @min-total-seconds="minTotalSeconds" && selectedActSeqMore === 'End'" :time="state.timeCfmCtEteEnd" :select="isSubmitTimeCfmCtEteEnd" @min-total-seconds="minTotalSeconds"
@max-total-seconds="maxTotalSeconds" /> @max-total-seconds="maxTotalSeconds" />
<TimeRangeDuration v-if="selectedRuleType === 'Cycle time' && selectedProcessScope === 'End to end' <TimeRangeDuration v-if="selectedRuleType === 'Cycle time' && selectedProcessScope === 'End to end'
&& selectedActSeqMore === 'Start & End'" :time="timeCfmCtEteSE" :select="isSubmitTimeCfmCtEteSE" @min-total-seconds="minTotalSeconds" && selectedActSeqMore === 'Start & End'" :time="state.timeCfmCtEteSE" :select="isSubmitTimeCfmCtEteSE" @min-total-seconds="minTotalSeconds"
@max-total-seconds="maxTotalSeconds" /> @max-total-seconds="maxTotalSeconds" />
</div> </div>
</div> </div>
</template> </template>
<script> <script setup>
import TimeRangeDuration from '@/components/Discover/Conformance/ConformanceSidebar/TimeRangeDuration.vue'; import { reactive } from 'vue';
import { storeToRefs } from 'pinia'; import { storeToRefs } from 'pinia';
import { useConformanceStore } from '@/stores/conformance'; import { useConformanceStore } from '@/stores/conformance';
import emitter from '@/utils/emitter';
import TimeRangeDuration from '@/components/Discover/Conformance/ConformanceSidebar/TimeRangeDuration.vue';
export default { const conformanceStore = useConformanceStore();
setup() { const { selectedRuleType, selectedActivitySequence, selectedMode, selectedProcessScope,
const conformanceStore = useConformanceStore(); selectedActSeqMore, selectedActSeqFromTo, conformanceAllTasks, conformanceTask,
const { selectedRuleType, selectedActivitySequence, selectedMode, selectedProcessScope, cfmSeqStart, cfmSeqEnd, cfmPtEteStart, cfmPtEteEnd, cfmPtEteSE, cfmPtPStart,
selectedActSeqMore, selectedActSeqFromTo, conformanceAllTasks, conformanceTask, cfmPtPEnd, cfmPtPSE, cfmWtEteStart, cfmWtEteEnd, cfmWtEteSE, cfmWtPStart,
cfmSeqStart, cfmSeqEnd, cfmPtEteStart, cfmPtEteEnd, cfmPtEteSE, cfmPtPStart, cfmWtPEnd, cfmWtPSE, cfmCtEteStart, cfmCtEteEnd, cfmCtEteSE, cfmPtEteWhole,
cfmPtPEnd, cfmPtPSE, cfmWtEteStart, cfmWtEteEnd, cfmWtEteSE, cfmWtPStart, cfmWtEteWhole, cfmCtEteWhole
cfmWtPEnd, cfmWtPSE, cfmCtEteStart, cfmCtEteEnd, cfmCtEteSE, cfmPtEteWhole, } = storeToRefs(conformanceStore);
cfmWtEteWhole, cfmCtEteWhole
} = storeToRefs(conformanceStore);
return { selectedRuleType, selectedActivitySequence, selectedMode, selectedProcessScope, const props = defineProps(['isSubmitDurationTime', 'isSubmitTimeCfmPtEteAll', 'isSubmitTimeCfmPtEteStart',
selectedActSeqMore, selectedActSeqFromTo, conformanceAllTasks, conformanceTask,
cfmSeqStart, cfmSeqEnd, cfmPtEteStart, cfmPtEteEnd, cfmPtEteSE, cfmPtPStart,
cfmPtPEnd, cfmPtPSE, cfmWtEteStart, cfmWtEteEnd, cfmWtEteSE, cfmWtPStart,
cfmWtPEnd, cfmWtPSE, cfmCtEteStart, cfmCtEteEnd, cfmCtEteSE, cfmPtEteWhole,
cfmWtEteWhole, cfmCtEteWhole
};
},
props: ['isSubmitDurationTime', 'isSubmitTimeCfmPtEteAll', 'isSubmitTimeCfmPtEteStart',
'isSubmitTimeCfmPtEteEnd', 'isSubmitTimeCfmPtEteSE', 'isSubmitTimeCfmPtPStart', 'isSubmitTimeCfmPtEteEnd', 'isSubmitTimeCfmPtEteSE', 'isSubmitTimeCfmPtPStart',
'isSubmitTimeCfmPtPEnd', 'isSubmitTimeCfmPtPSE', 'isSubmitTimeCfmWtEteAll', 'isSubmitTimeCfmPtPEnd', 'isSubmitTimeCfmPtPSE', 'isSubmitTimeCfmWtEteAll',
'isSubmitTimeCfmWtEteStart', 'isSubmitTimeCfmWtEteEnd', 'isSubmitTimeCfmWtEteSE', 'isSubmitTimeCfmWtEteStart', 'isSubmitTimeCfmWtEteEnd', 'isSubmitTimeCfmWtEteSE',
'isSubmitTimeCfmWtPStart', 'isSubmitTimeCfmWtPEnd', 'isSubmitTimeCfmWtPSE', 'isSubmitTimeCfmCtEteAll', 'isSubmitTimeCfmWtPStart', 'isSubmitTimeCfmWtPEnd', 'isSubmitTimeCfmWtPSE', 'isSubmitTimeCfmCtEteAll',
'isSubmitTimeCfmCtEteStart', 'isSubmitTimeCfmCtEteEnd', 'isSubmitTimeCfmCtEteSE' 'isSubmitTimeCfmCtEteStart', 'isSubmitTimeCfmCtEteEnd', 'isSubmitTimeCfmCtEteSE'
], ]);
data() {
return {
timeDuration: null, // Activity duration
timeCfmPtEteAll: null, // Processing time
timeCfmPtEteAllDefault: null,
timeCfmPtEteStart: null,
timeCfmPtEteEnd: null,
timeCfmPtEteSE: null,
timeCfmPtPStart: null,
timeCfmPtPEnd: null,
timeCfmPtPSE: null,
timeCfmWtEteAll: null, // Waiting time
timeCfmWtEteAllDefault: null,
timeCfmWtEteStart: null,
timeCfmWtEteEnd: null,
timeCfmWtEteSE: null,
timeCfmWtPStart: null,
timeCfmWtPEnd: null,
timeCfmWtPSE: null,
timeCfmCtEteAll: null, // Cycle time
timeCfmCtEteAllDefault: null,
timeCfmCtEteStart: null,
timeCfmCtEteEnd: null,
timeCfmCtEteSE: null,
selectCfmPtEteSEStart: null,
selectCfmPtEteSEEnd: null,
selectCfmPtPSEStart: null,
selectCfmPtPSEEnd: null,
selectCfmWtEteSEStart: null,
selectCfmWtEteSEEnd: null,
selectCfmWtPSEStart: null,
selectCfmWtPSEEnd: null,
selectCfmCtEteSEStart: null,
selectCfmCtEteSEEnd: null,
}
},
components: {
TimeRangeDuration,
},
methods: {
/**
* get min total seconds
* @param {Number} e 最小值總秒數
*/
minTotalSeconds(e) {
this.$emit('min-total-seconds', e);
},
/**
* get min total seconds
* @param {Number} e 最大值總秒數
*/
maxTotalSeconds(e) {
this.$emit('max-total-seconds', e);
},
/**
* get Time Range(duration)
* @param {array} data API dataActivity 列表
* @param {string} category 'act' | 'single' | 'double',傳入以上任一值。
* @param {string} task select Radio task or start
* @param {string} taskTwo end
* @returns {object} {min:12, max:345}
*/
getDurationTime(data, category, task, taskTwo) {
let result = {min:0, max:0};
switch (category) {
case 'act':
data.forEach(i => {
if(i.label === task) {
result = i.duration;
}
});
break;
case 'single':
data.forEach(i => {
if(i.task === task) {
result = i.time;
}
});
break;
case 'double':
data.forEach(i => {
if(i.start === task && i.end === taskTwo) {
result = i.time;
}
});
break;
case 'all':
result = data;
break
default:
break;
};
return result;
},
/**
* All reset
*/
reset() {
this.timeDuration = null; // Activity duration
this.timeCfmPtEteAll = this.timeCfmPtEteAllDefault; // Processing time
this.timeCfmPtEteStart = null;
this.timeCfmPtEteEnd = null;
this.timeCfmPtEteSE = null;
this.timeCfmPtPStart = null;
this.timeCfmPtPEnd = null;
this.timeCfmPtPSE = null;
this.timeCfmWtEteAll = this.timeCfmWtEteAllDefault; // Waiting time
this.timeCfmWtEteStart = null;
this.timeCfmWtEteEnd = null;
this.timeCfmWtEteSE = null;
this.timeCfmWtPStart = null;
this.timeCfmWtPEnd = null;
this.timeCfmWtPSE = null;
this.timeCfmCtEteAll = this.timeCfmCtEteAllDefault; // Cycle time
this.timeCfmCtEteStart = null;
this.timeCfmCtEteEnd = null;
this.timeCfmCtEteSE = null;
this.selectCfmPtEteSEStart = null;
this.selectCfmPtEteSEEnd = null;
this.selectCfmPtPSEStart = null;
this.selectCfmPtPSEEnd = null;
this.selectCfmWtEteSEStart = null;
this.selectCfmWtEteSEEnd = null;
this.selectCfmWtPSEStart = null;
this.selectCfmWtPSEEnd = null;
this.selectCfmCtEteSEStart = null;
this.selectCfmCtEteSEEnd = null;
},
},
created() {
this.$emitter.on('actRadioData', (data) => {
const category = data.category;
const task = data.task;
const handleDoubleSelection = (startKey, endKey, timeKey, durationType) => { const emit = defineEmits(['min-total-seconds', 'max-total-seconds']);
this[startKey] = task;
this[timeKey] = { min: 0, max: 0 };
if (this[endKey]) {
this[timeKey] = this.getDurationTime(this[durationType], 'double', task, this[endKey]);
}
};
const handleSingleSelection = (key, timeKey, durationType) => { const state = reactive({
this[timeKey] = this.getDurationTime(this[durationType], 'single', task); timeDuration: null, // Activity duration
}; timeCfmPtEteAll: null, // Processing time
timeCfmPtEteAllDefault: null,
timeCfmPtEteStart: null,
timeCfmPtEteEnd: null,
timeCfmPtEteSE: null,
timeCfmPtPStart: null,
timeCfmPtPEnd: null,
timeCfmPtPSE: null,
timeCfmWtEteAll: null, // Waiting time
timeCfmWtEteAllDefault: null,
timeCfmWtEteStart: null,
timeCfmWtEteEnd: null,
timeCfmWtEteSE: null,
timeCfmWtPStart: null,
timeCfmWtPEnd: null,
timeCfmWtPSE: null,
timeCfmCtEteAll: null, // Cycle time
timeCfmCtEteAllDefault: null,
timeCfmCtEteStart: null,
timeCfmCtEteEnd: null,
timeCfmCtEteSE: null,
selectCfmPtEteSEStart: null,
selectCfmPtEteSEEnd: null,
selectCfmPtPSEStart: null,
selectCfmPtPSEEnd: null,
selectCfmWtEteSEStart: null,
selectCfmWtEteSEEnd: null,
selectCfmWtPSEStart: null,
selectCfmWtPSEEnd: null,
selectCfmCtEteSEStart: null,
selectCfmCtEteSEEnd: null,
});
switch (category) { // Store refs lookup for dynamic access in handleSingleSelection/handleDoubleSelection
// Activity duration const storeRefs = {
case 'cfmDur': cfmPtEteStart,
this.timeDuration = this.getDurationTime(this.conformanceAllTasks, 'act', task); cfmPtEteEnd,
break; cfmPtEteSE,
// Processing time cfmPtPStart,
case 'cfmPtEteStart': cfmPtPEnd,
handleSingleSelection('cfmPtEteStart', 'timeCfmPtEteStart', 'cfmPtEteStart'); cfmPtPSE,
break; cfmWtEteStart,
case 'cfmPtEteEnd': cfmWtEteEnd,
handleSingleSelection('cfmPtEteEnd', 'timeCfmPtEteEnd', 'cfmPtEteEnd'); cfmWtEteSE,
break; cfmWtPStart,
case 'cfmPtEteSEStart': cfmWtPEnd,
handleDoubleSelection('selectCfmPtEteSEStart', 'selectCfmPtEteSEEnd', 'timeCfmPtEteSE', 'cfmPtEteSE'); cfmWtPSE,
break; cfmCtEteStart,
case 'cfmPtEteSEEnd': cfmCtEteEnd,
handleDoubleSelection('selectCfmPtEteSEEnd', 'selectCfmPtEteSEStart', 'timeCfmPtEteSE', 'cfmPtEteSE'); cfmCtEteSE,
break; };
case 'cfmPtPStart':
handleSingleSelection('cfmPtPStart', 'timeCfmPtPStart', 'cfmPtPStart'); /**
break; * get min total seconds
case 'cfmPtPEnd': * @param {Number} e 最小值總秒數
handleSingleSelection('cfmPtPEnd', 'timeCfmPtPEnd', 'cfmPtPEnd'); */
break; function minTotalSeconds(e) {
case 'cfmPtPSEStart': emit('min-total-seconds', e);
handleDoubleSelection('selectCfmPtPSEStart', 'selectCfmPtPSEEnd', 'timeCfmPtPSE', 'cfmPtPSE');
break;
case 'cfmPtPSEEnd':
handleDoubleSelection('selectCfmPtPSEEnd', 'selectCfmPtPSEStart', 'timeCfmPtPSE', 'cfmPtPSE');
break;
// Waiting time
case 'cfmWtEteStart':
handleSingleSelection('cfmWtEteStart', 'timeCfmWtEteStart', 'cfmWtEteStart');
break;
case 'cfmWtEteEnd':
handleSingleSelection('cfmWtEteEnd', 'timeCfmWtEteEnd', 'cfmWtEteEnd');
break;
case 'cfmWtEteSEStart':
handleDoubleSelection('selectCfmWtEteSEStart', 'selectCfmWtEteSEEnd', 'timeCfmWtEteSE', 'cfmWtEteSE');
break;
case 'cfmWtEteSEEnd':
handleDoubleSelection('selectCfmWtEteSEEnd', 'selectCfmWtEteSEStart', 'timeCfmWtEteSE', 'cfmWtEteSE');
break;
case 'cfmWtPStart':
handleSingleSelection('cfmWtPStart', 'timeCfmWtPStart', 'cfmWtPStart');
break;
case 'cfmWtPEnd':
handleSingleSelection('cfmWtPEnd', 'timeCfmWtPEnd', 'cfmWtPEnd');
break;
case 'cfmWtPSEStart':
handleDoubleSelection('selectCfmWtPSEStart', 'selectCfmWtPSEEnd', 'timeCfmWtPSE', 'cfmWtPSE');
break;
case 'cfmWtPSEEnd':
handleDoubleSelection('selectCfmWtPSEEnd', 'selectCfmWtPSEStart', 'timeCfmWtPSE', 'cfmWtPSE');
break;
// Cycle time
case 'cfmCtEteStart':
handleSingleSelection('cfmCtEteStart', 'timeCfmCtEteStart', 'cfmCtEteStart');
break;
case 'cfmCtEteEnd':
handleSingleSelection('cfmCtEteEnd', 'timeCfmCtEteEnd', 'cfmCtEteEnd');
break;
case 'cfmCtEteSEStart':
handleDoubleSelection('selectCfmCtEteSEStart', 'selectCfmCtEteSEEnd', 'timeCfmCtEteSE', 'cfmCtEteSE');
break;
case 'cfmCtEteSEEnd':
handleDoubleSelection('selectCfmCtEteSEEnd', 'selectCfmCtEteSEStart', 'timeCfmCtEteSE', 'cfmCtEteSE');
break;
default:
break;
};
});
this.$emitter.on('reset', (data) => {
this.reset();
});
this.$emitter.on('isRadioChange', (data) => {
if(data) {
this.reset();
switch (this.selectedRuleType) {
case 'Processing time':
this.timeCfmPtEteAll = this.getDurationTime(this.cfmPtEteWhole, 'all');
this.timeCfmPtEteAllDefault = JSON.parse(JSON.stringify(this.timeCfmPtEteAll));
break;
case 'Waiting time':
this.timeCfmWtEteAll = this.getDurationTime(this.cfmWtEteWhole, 'all');
this.timeCfmWtEteAllDefault = JSON.parse(JSON.stringify(this.timeCfmWtEteAll));
break;
case 'Cycle time':
this.timeCfmCtEteAll = this.getDurationTime(this.cfmCtEteWhole, 'all');
this.timeCfmCtEteAllDefault = JSON.parse(JSON.stringify(this.timeCfmCtEteAll));
break;
default:
break;
};
}
});
this.$emitter.on('isRadioProcessScopeChange', (data) => {
if(data) {
this.reset();
};
});
this.$emitter.on('isRadioActSeqMoreChange', (data) => {
if(data) {
if(this.selectedActSeqMore === 'All') {
switch (this.selectedRuleType) {
case 'Processing time':
this.timeCfmPtEteAll = this.getDurationTime(this.cfmPtEteWhole, 'all');
this.timeCfmPtEteAllDefault = JSON.parse(JSON.stringify(this.timeCfmPtEteAll));
break;
case 'Waiting time':
this.timeCfmWtEteAll = this.getDurationTime(this.cfmWtEteWhole, 'all');
this.timeCfmWtEteAllDefault = JSON.parse(JSON.stringify(this.timeCfmWtEteAll));
break;
case 'Cycle time':
this.timeCfmCtEteAll = this.getDurationTime(this.cfmCtEteWhole, 'all');
this.timeCfmCtEteAllDefault = JSON.parse(JSON.stringify(this.timeCfmCtEteAll));
break;
default:
break;
};
}else this.reset();
};
});
this.$emitter.on('isRadioActSeqFromToChange', (data) => {
if(data) {
this.reset();
};
});
},
} }
/**
* get min total seconds
* @param {Number} e 最大值總秒數
*/
function maxTotalSeconds(e) {
emit('max-total-seconds', e);
}
/**
* get Time Range(duration)
* @param {array} data API dataActivity 列表
* @param {string} category 'act' | 'single' | 'double',傳入以上任一值。
* @param {string} task select Radio task or start
* @param {string} taskTwo end
* @returns {object} {min:12, max:345}
*/
function getDurationTime(data, category, task, taskTwo) {
let result = {min:0, max:0};
switch (category) {
case 'act':
data.forEach(i => {
if(i.label === task) {
result = i.duration;
}
});
break;
case 'single':
data.forEach(i => {
if(i.task === task) {
result = i.time;
}
});
break;
case 'double':
data.forEach(i => {
if(i.start === task && i.end === taskTwo) {
result = i.time;
}
});
break;
case 'all':
result = data;
break
default:
break;
};
return result;
}
/**
* All reset
*/
function reset() {
state.timeDuration = null; // Activity duration
state.timeCfmPtEteAll = state.timeCfmPtEteAllDefault; // Processing time
state.timeCfmPtEteStart = null;
state.timeCfmPtEteEnd = null;
state.timeCfmPtEteSE = null;
state.timeCfmPtPStart = null;
state.timeCfmPtPEnd = null;
state.timeCfmPtPSE = null;
state.timeCfmWtEteAll = state.timeCfmWtEteAllDefault; // Waiting time
state.timeCfmWtEteStart = null;
state.timeCfmWtEteEnd = null;
state.timeCfmWtEteSE = null;
state.timeCfmWtPStart = null;
state.timeCfmWtPEnd = null;
state.timeCfmWtPSE = null;
state.timeCfmCtEteAll = state.timeCfmCtEteAllDefault; // Cycle time
state.timeCfmCtEteStart = null;
state.timeCfmCtEteEnd = null;
state.timeCfmCtEteSE = null;
state.selectCfmPtEteSEStart = null;
state.selectCfmPtEteSEEnd = null;
state.selectCfmPtPSEStart = null;
state.selectCfmPtPSEEnd = null;
state.selectCfmWtEteSEStart = null;
state.selectCfmWtEteSEEnd = null;
state.selectCfmWtPSEStart = null;
state.selectCfmWtPSEEnd = null;
state.selectCfmCtEteSEStart = null;
state.selectCfmCtEteSEEnd = null;
}
// created() logic
emitter.on('actRadioData', (data) => {
const category = data.category;
const task = data.task;
const handleDoubleSelection = (startKey, endKey, timeKey, durationType) => {
state[startKey] = task;
state[timeKey] = { min: 0, max: 0 };
if (state[endKey]) {
state[timeKey] = getDurationTime(storeRefs[durationType].value, 'double', task, state[endKey]);
}
};
const handleSingleSelection = (key, timeKey, durationType) => {
state[timeKey] = getDurationTime(storeRefs[durationType].value, 'single', task);
};
switch (category) {
// Activity duration
case 'cfmDur':
state.timeDuration = getDurationTime(conformanceAllTasks.value, 'act', task);
break;
// Processing time
case 'cfmPtEteStart':
handleSingleSelection('cfmPtEteStart', 'timeCfmPtEteStart', 'cfmPtEteStart');
break;
case 'cfmPtEteEnd':
handleSingleSelection('cfmPtEteEnd', 'timeCfmPtEteEnd', 'cfmPtEteEnd');
break;
case 'cfmPtEteSEStart':
handleDoubleSelection('selectCfmPtEteSEStart', 'selectCfmPtEteSEEnd', 'timeCfmPtEteSE', 'cfmPtEteSE');
break;
case 'cfmPtEteSEEnd':
handleDoubleSelection('selectCfmPtEteSEEnd', 'selectCfmPtEteSEStart', 'timeCfmPtEteSE', 'cfmPtEteSE');
break;
case 'cfmPtPStart':
handleSingleSelection('cfmPtPStart', 'timeCfmPtPStart', 'cfmPtPStart');
break;
case 'cfmPtPEnd':
handleSingleSelection('cfmPtPEnd', 'timeCfmPtPEnd', 'cfmPtPEnd');
break;
case 'cfmPtPSEStart':
handleDoubleSelection('selectCfmPtPSEStart', 'selectCfmPtPSEEnd', 'timeCfmPtPSE', 'cfmPtPSE');
break;
case 'cfmPtPSEEnd':
handleDoubleSelection('selectCfmPtPSEEnd', 'selectCfmPtPSEStart', 'timeCfmPtPSE', 'cfmPtPSE');
break;
// Waiting time
case 'cfmWtEteStart':
handleSingleSelection('cfmWtEteStart', 'timeCfmWtEteStart', 'cfmWtEteStart');
break;
case 'cfmWtEteEnd':
handleSingleSelection('cfmWtEteEnd', 'timeCfmWtEteEnd', 'cfmWtEteEnd');
break;
case 'cfmWtEteSEStart':
handleDoubleSelection('selectCfmWtEteSEStart', 'selectCfmWtEteSEEnd', 'timeCfmWtEteSE', 'cfmWtEteSE');
break;
case 'cfmWtEteSEEnd':
handleDoubleSelection('selectCfmWtEteSEEnd', 'selectCfmWtEteSEStart', 'timeCfmWtEteSE', 'cfmWtEteSE');
break;
case 'cfmWtPStart':
handleSingleSelection('cfmWtPStart', 'timeCfmWtPStart', 'cfmWtPStart');
break;
case 'cfmWtPEnd':
handleSingleSelection('cfmWtPEnd', 'timeCfmWtPEnd', 'cfmWtPEnd');
break;
case 'cfmWtPSEStart':
handleDoubleSelection('selectCfmWtPSEStart', 'selectCfmWtPSEEnd', 'timeCfmWtPSE', 'cfmWtPSE');
break;
case 'cfmWtPSEEnd':
handleDoubleSelection('selectCfmWtPSEEnd', 'selectCfmWtPSEStart', 'timeCfmWtPSE', 'cfmWtPSE');
break;
// Cycle time
case 'cfmCtEteStart':
handleSingleSelection('cfmCtEteStart', 'timeCfmCtEteStart', 'cfmCtEteStart');
break;
case 'cfmCtEteEnd':
handleSingleSelection('cfmCtEteEnd', 'timeCfmCtEteEnd', 'cfmCtEteEnd');
break;
case 'cfmCtEteSEStart':
handleDoubleSelection('selectCfmCtEteSEStart', 'selectCfmCtEteSEEnd', 'timeCfmCtEteSE', 'cfmCtEteSE');
break;
case 'cfmCtEteSEEnd':
handleDoubleSelection('selectCfmCtEteSEEnd', 'selectCfmCtEteSEStart', 'timeCfmCtEteSE', 'cfmCtEteSE');
break;
default:
break;
};
});
emitter.on('reset', (data) => {
reset();
});
emitter.on('isRadioChange', (data) => {
if(data) {
reset();
switch (selectedRuleType.value) {
case 'Processing time':
state.timeCfmPtEteAll = getDurationTime(cfmPtEteWhole.value, 'all');
state.timeCfmPtEteAllDefault = JSON.parse(JSON.stringify(state.timeCfmPtEteAll));
break;
case 'Waiting time':
state.timeCfmWtEteAll = getDurationTime(cfmWtEteWhole.value, 'all');
state.timeCfmWtEteAllDefault = JSON.parse(JSON.stringify(state.timeCfmWtEteAll));
break;
case 'Cycle time':
state.timeCfmCtEteAll = getDurationTime(cfmCtEteWhole.value, 'all');
state.timeCfmCtEteAllDefault = JSON.parse(JSON.stringify(state.timeCfmCtEteAll));
break;
default:
break;
};
}
});
emitter.on('isRadioProcessScopeChange', (data) => {
if(data) {
reset();
};
});
emitter.on('isRadioActSeqMoreChange', (data) => {
if(data) {
if(selectedActSeqMore.value === 'All') {
switch (selectedRuleType.value) {
case 'Processing time':
state.timeCfmPtEteAll = getDurationTime(cfmPtEteWhole.value, 'all');
state.timeCfmPtEteAllDefault = JSON.parse(JSON.stringify(state.timeCfmPtEteAll));
break;
case 'Waiting time':
state.timeCfmWtEteAll = getDurationTime(cfmWtEteWhole.value, 'all');
state.timeCfmWtEteAllDefault = JSON.parse(JSON.stringify(state.timeCfmWtEteAll));
break;
case 'Cycle time':
state.timeCfmCtEteAll = getDurationTime(cfmCtEteWhole.value, 'all');
state.timeCfmCtEteAllDefault = JSON.parse(JSON.stringify(state.timeCfmCtEteAll));
break;
default:
break;
};
}else reset();
};
});
emitter.on('isRadioActSeqFromToChange', (data) => {
if(data) {
reset();
};
});
</script> </script>

View File

@@ -8,9 +8,6 @@
</li> </li>
</ul> </ul>
</template> </template>
<script> <script setup>
export default { defineProps(['data', 'select']);
name: 'ResultArrow',
props:['data', 'select'],
}
</script> </script>

View File

@@ -8,26 +8,21 @@
</li> </li>
</ul> </ul>
</template> </template>
<script> <script setup>
export default { import { ref, watch } from 'vue';
name: 'ResultCheck', import emitter from '@/utils/emitter';
props:['data', 'select'],
data() { const props = defineProps(['data', 'select']);
return {
datadata: null, const datadata = ref(props.select);
}
}, watch(() => props.data, (newValue) => {
watch: { datadata.value = newValue;
data: function(newValue) { });
this.datadata = newValue;
}, watch(() => props.select, (newValue) => {
select: function(newValue) { datadata.value = newValue;
this.datadata = newValue; });
}
}, emitter.on('reset', (val) => datadata.value = val);
created() {
this.datadata = this.select;
this.$emitter.on('reset', data => this.datadata = data);
},
}
</script> </script>

View File

@@ -7,27 +7,17 @@
</li> </li>
</ul> </ul>
</template> </template>
<script> <script setup>
export default { import { ref, watch } from 'vue';
name: 'ResultDot', import emitter from '@/utils/emitter';
props:['timeResultData', 'select'],
data() { const props = defineProps(['timeResultData', 'select']);
return {
data: null, const data = ref(props.select);
}
}, watch(() => props.timeResultData, (newValue) => {
watch: { data.value = newValue;
timeResultData: { }, { deep: true });
handler(newValue) {
this.data = newValue; emitter.on('reset', (val) => data.value = val);
},
immediate: true,
deep: true,
},
},
created() {
this.data = this.select;
this.$emitter.on('reset', data => this.data = data);
},
}
</script> </script>

View File

@@ -9,97 +9,78 @@
</Durationjs> </Durationjs>
</div> </div>
</template> </template>
<script> <script setup>
import { ref, watch } from 'vue';
import Durationjs from '@/components/durationjs.vue'; import Durationjs from '@/components/durationjs.vue';
export default { const props = defineProps(['time', 'select']);
props: ['time', 'select'], const emit = defineEmits(['min-total-seconds', 'max-total-seconds']);
data() {
return { const timeData = ref({ min: 0, max: 0 });
timeData: { const timeRangeMin = ref(0);
min: 0, const timeRangeMax = ref(0);
max: 0, const minVuemin = ref(0);
}, const minVuemax = ref(0);
timeRangeMin: 0, const maxVuemin = ref(0);
timeRangeMax: 0, const maxVuemax = ref(0);
minVuemin: 0, const updateMax = ref(null);
minVuemax: 0, const updateMin = ref(null);
maxVuemin: 0, const durationMin = ref(null);
maxVuemax: 0, const durationMax = ref(null);
updateMax: null,
updateMin: null, /**
durationMin: null, * set props values
durationMax: null, */
} function setTimeValue() {
}, // 深拷貝原始 timeData 的內容
components: { minVuemin.value = JSON.parse(JSON.stringify(timeData.value.min));
Durationjs, minVuemax.value = JSON.parse(JSON.stringify(timeData.value.max));
}, maxVuemin.value = JSON.parse(JSON.stringify(timeData.value.min));
watch: { maxVuemax.value = JSON.parse(JSON.stringify(timeData.value.max));
time: { }
handler: function(newValue, oldValue) {
this.durationMax = null /**
this.durationMin = null * get min total seconds
if(newValue === null) { * @param {Number} e 元件傳來的最小值總秒數
this.timeData = { */
min: 0, function minTotalSeconds(e) {
max: 0 timeRangeMin.value = e;
}; updateMin.value = e;
}else if(newValue !== null) { emit('min-total-seconds', e);
this.timeData = { }
min: newValue.min,
max: newValue.max /**
}; * get min total seconds
this.$emit('min-total-seconds', newValue.min); * @param {Number} e 元件傳來的最大值總秒數
this.$emit('max-total-seconds', newValue.max); */
} function maxTotalSeconds(e) {
this.setTimeValue(); timeRangeMax.value = e;
}, updateMax.value = e;
deep: true, emit('max-total-seconds', e);
immediate: true, }
},
}, watch(() => props.time, (newValue, oldValue) => {
methods: { durationMax.value = null;
/** durationMin.value = null;
* set props values if(newValue === null) {
*/ timeData.value = { min: 0, max: 0 };
setTimeValue() { }else if(newValue !== null) {
// 深拷貝原始 timeData 的內容 timeData.value = { min: newValue.min, max: newValue.max };
this.minVuemin = JSON.parse(JSON.stringify(this.timeData.min)); emit('min-total-seconds', newValue.min);
this.minVuemax = JSON.parse(JSON.stringify(this.timeData.max)); emit('max-total-seconds', newValue.max);
this.maxVuemin = JSON.parse(JSON.stringify(this.timeData.min)); }
this.maxVuemax = JSON.parse(JSON.stringify(this.timeData.max)); setTimeValue();
}, }, { deep: true, immediate: true });
/**
* get min total seconds // created
* @param {Number} e 元件傳來的最小值總秒數 if(props.select){
*/ if(Object.keys(props.select.base).length !== 0) {
minTotalSeconds(e) { timeData.value = props.select.base;
this.timeRangeMin = e; setTimeValue();
this.updateMin = e; }
this.$emit('min-total-seconds', e); if(Object.keys(props.select.rule).length !== 0) {
}, durationMin.value = props.select.rule.min;
/** durationMax.value = props.select.rule.max;
* get min total seconds
* @param {Number} e 元件傳來的最大值總秒數
*/
maxTotalSeconds(e) {
this.timeRangeMax = e;
this.updateMax = e;
this.$emit('max-total-seconds', e);
},
},
created() {
if(this.select){
if(Object.keys(this.select.base).length !== 0) {
this.timeData = this.select.base;
this.setTimeValue();
}
if(Object.keys(this.select.rule).length !== 0) {
this.durationMin = this.select.rule.min;
this.durationMax = this.select.rule.max;
}
}
} }
} }
</script> </script>

View File

@@ -1,5 +1,5 @@
<template> <template>
<Dialog :visible="listModal" @update:visible="$emit('closeModal', $event)" modal :style="{ width: '90vw', height: '90vh' }" :contentClass="contentClass"> <Dialog :visible="listModal" @update:visible="emit('closeModal', $event)" modal :style="{ width: '90vw', height: '90vh' }" :contentClass="contentClass">
<template #header> <template #header>
<div class=" py-5"> <div class=" py-5">
<p class="text-base font-bold">Non-conformance Issue</p> <p class="text-base font-bold">Non-conformance Issue</p>
@@ -61,219 +61,225 @@
</div> </div>
</Dialog> </Dialog>
</template> </template>
<script> <script setup>
import { ref, computed, watch, nextTick, useTemplateRef } from 'vue';
import { storeToRefs } from 'pinia'; import { storeToRefs } from 'pinia';
import { useConformanceStore } from '@/stores/conformance'; import { useConformanceStore } from '@/stores/conformance';
import cytoscapeMapTrace from '@/module/cytoscapeMapTrace.js'; import cytoscapeMapTrace from '@/module/cytoscapeMapTrace.js';
export default { const props = defineProps(['listModal', 'listNo', 'traceId', 'firstCases', 'listTraces', 'taskSeq', 'cases', 'category']);
props: ['listModal', 'listNo', 'traceId', 'firstCases', 'listTraces', 'taskSeq', 'cases', 'category'], const emit = defineEmits(['closeModal']);
setup() {
const conformanceStore = useConformanceStore();
const { infinite404 } = storeToRefs(conformanceStore);
return { infinite404, conformanceStore } const conformanceStore = useConformanceStore();
}, const { infinite404 } = storeToRefs(conformanceStore);
data() {
// template ref
const cfmTrace = useTemplateRef('cfmTrace');
// data
const contentClass = ref('!bg-neutral-100 border-t border-neutral-300 h-full');
const showTraceId = ref(null);
const infiniteData = ref(null);
const maxItems = ref(false);
const infiniteFinish = ref(true); // 無限滾動是否載入完成
const startNum = ref(0);
const processMap = ref({
nodes:[],
edges:[],
});
// computed
const traceTotal = computed(() => {
return traceList.value.length;
});
const traceList = computed(() => {
const sum = props.listTraces.map(trace => trace.count).reduce((acc, cur) => acc + cur, 0);
return props.listTraces.map(trace => {
return { return {
contentClass: '!bg-neutral-100 border-t border-neutral-300 h-full', id: trace.id,
showTraceId: null, value: Number((getPercentLabel(trace.count / sum))),
infiniteData: null, count: trace.count.toLocaleString('en-US'),
maxItems: false, count_base: trace.count,
infiniteFinish: true, // 無限滾動是否載入完成 ratio: getPercentLabel(trace.count / sum),
startNum: 0, };
processMap:{ }).sort((x, y) => x.id - y.id);
nodes:[], });
edges:[],
},
}
},
computed: {
traceTotal: function() {
return this.traceList.length;
},
traceList: function() {
const sum = this.listTraces.map(trace => trace.count).reduce((acc, cur) => acc + cur, 0);
return this.listTraces.map(trace => { const caseData = computed(() => {
return { if(infiniteData.value !== null){
id: trace.id, const data = JSON.parse(JSON.stringify(infiniteData.value)); // 深拷貝原始 cases 的內容
value: Number((this.getPercentLabel(trace.count / sum))), data.forEach(item => {
count: trace.count.toLocaleString('en-US'), item.facets.forEach((facet, index) => {
count_base: trace.count, item[`fac_${index}`] = facet.value; // 建立新的 key-value pair
ratio: this.getPercentLabel(trace.count / sum),
};
}).sort((x, y) => x.id - y.id);
},
caseData: function() {
if(this.infiniteData !== null){
const data = JSON.parse(JSON.stringify(this.infiniteData)); // 深拷貝原始 cases 的內容
data.forEach(item => {
item.facets.forEach((facet, index) => {
item[`fac_${index}`] = facet.value; // 建立新的 key-value pair
});
delete item.facets; // 刪除原本的 facets 屬性
item.attributes.forEach((attribute, index) => {
item[`att_${index}`] = attribute.value; // 建立新的 key-value pair
});
delete item.attributes; // 刪除原本的 attributes 屬性
})
return data;
}
},
columnData: function() {
const data = JSON.parse(JSON.stringify(this.cases)); // 深拷貝原始 cases 的內容
const facetName = facName => facName.trim().replace(/^(.)(.*)$/, (match, firstChar, restOfString) => firstChar.toUpperCase() + restOfString.toLowerCase());
const result = [
{ field: 'id', header: 'Case Id' },
{ field: 'started_at', header: 'Start time' },
{ field: 'completed_at', header: 'End time' },
...data[0].facets.map((fac, index) => ({ field: `fac_${index}`, header: facetName(fac.name) })),
...data[0].attributes.map((att, index) => ({ field: `att_${index}`, header: att.key })),
];
return result
},
},
watch: {
listModal: function(newValue) { // 第一次打開 Modal 要繪圖
if(newValue) this.createCy();
},
taskSeq: function(newValue){
if (newValue !== null) this.createCy();
},
traceId: function(newValue) {
// 當 traceId 屬性變化時更新 showTraceId
this.showTraceId = newValue;
},
showTraceId: function(newValue, oldValue) {
const isScrollTop = document.querySelector('.infiniteTable');
if(isScrollTop && typeof isScrollTop.scrollTop !== 'undefined') if(newValue !== oldValue) isScrollTop.scrollTop = 0;
},
firstCases: function(newValue, oldValue){
this.infiniteData = newValue;
},
infinite404: function(newValue, oldValue){
if (newValue === 404) this.maxItems = true;
},
},
methods: {
/**
* Number to percentage
* @param {number} val 原始數字
* @returns {string} 轉換完成的百分比字串
*/
getPercentLabel(val){
if((val * 100).toFixed(1) >= 100) return 100;
else return parseFloat((val * 100).toFixed(1));
},
/**
* set progress bar width
* @param {number} value 百分比數字
* @returns {string} 樣式的寬度設定
*/
progressWidth(value){
return `width:${value}%;`
},
/**
* switch case data
* @param {number} id case id
*/
async switchCaseData(id) {
if(id == this.showTraceId) return;
this.infinite404 = null;
this.maxItems = false;
this.startNum = 0;
let result;
if(this.category === 'issue') result = await this.conformanceStore.getConformanceTraceDetail(this.listNo, id, 0);
else if(this.category === 'loop') result = await this.conformanceStore.getConformanceLoopsTraceDetail(this.listNo, id, 0);
this.infiniteData = await result;
this.showTraceId = id; // 放 getDetail 為了 case table 載入完再切換 showTraceId
},
/**
* 將 trace element nodes 資料彙整
*/
setNodesData(){
// 避免每次渲染都重複累加
this.processMap.nodes = [];
// 將 api call 回來的資料帶進 node
if(this.taskSeq !== null) {
this.taskSeq.forEach((node, index) => {
this.processMap.nodes.push({
data: {
id: index,
label: node,
backgroundColor: '#CCE5FF',
bordercolor: '#003366',
shape: 'round-rectangle',
height: 80,
width: 100
}
});
});
};
},
/**
* 將 trace edge line 資料彙整
*/
setEdgesData(){
this.processMap.edges = [];
if(this.taskSeq !== null) {
this.taskSeq.forEach((edge, index) => {
this.processMap.edges.push({
data: {
source: `${index}`,
target: `${index + 1}`,
lineWidth: 1,
style: 'solid'
}
});
});
};
// 關係線數量筆節點少一個
this.processMap.edges.pop();
},
/**
* create trace cytoscape's map
*/
createCy(){
this.$nextTick(() => {
const graphId = this.$refs.cfmTrace;
this.setNodesData();
this.setEdgesData();
if(graphId !== null) cytoscapeMapTrace(this.processMap.nodes, this.processMap.edges, graphId);
}); });
}, delete item.facets; // 刪除原本的 facets 屬性
/**
* 無限滾動: 載入數據
*/
async fetchData() {
try {
this.infiniteFinish = false;
this.startNum += 20
const result = await this.conformanceStore.getConformanceTraceDetail(this.listNo, this.showTraceId, this.startNum);
this.infiniteData = await [...this.infiniteData, ...result];
this.infiniteFinish = await true;
} catch(error) {
console.error('Failed to load data:', error);
}
},
/**
* 無限滾動: 監聽 scroll 有沒有滾到底部
* @param {element} event 監聽時回傳的事件
*/
handleScroll(event) {
if(this.maxItems || this.infiniteData.length < 20 || this.infiniteFinish === false) return;
const container = event.target; item.attributes.forEach((attribute, index) => {
const overScrollHeight = container.scrollTop + container.clientHeight + 20 >= container.scrollHeight; item[`att_${index}`] = attribute.value; // 建立新的 key-value pair
});
delete item.attributes; // 刪除原本的 attributes 屬性
})
return data;
}
});
if (overScrollHeight) this.fetchData(); const columnData = computed(() => {
}, const data = JSON.parse(JSON.stringify(props.cases)); // 深拷貝原始 cases 的內容
}, const facetName = facName => facName.trim().replace(/^(.)(.*)$/, (match, firstChar, restOfString) => firstChar.toUpperCase() + restOfString.toLowerCase());
const result = [
{ field: 'id', header: 'Case Id' },
{ field: 'started_at', header: 'Start time' },
{ field: 'completed_at', header: 'End time' },
...data[0].facets.map((fac, index) => ({ field: `fac_${index}`, header: facetName(fac.name) })),
...data[0].attributes.map((att, index) => ({ field: `att_${index}`, header: att.key })),
];
return result
});
// watch
watch(() => props.listModal, (newValue) => { // 第一次打開 Modal 要繪圖
if(newValue) createCy();
});
watch(() => props.taskSeq, (newValue) => {
if (newValue !== null) createCy();
});
watch(() => props.traceId, (newValue) => {
// 當 traceId 屬性變化時更新 showTraceId
showTraceId.value = newValue;
});
watch(showTraceId, (newValue, oldValue) => {
const isScrollTop = document.querySelector('.infiniteTable');
if(isScrollTop && typeof isScrollTop.scrollTop !== 'undefined') if(newValue !== oldValue) isScrollTop.scrollTop = 0;
});
watch(() => props.firstCases, (newValue) => {
infiniteData.value = newValue;
});
watch(infinite404, (newValue) => {
if (newValue === 404) maxItems.value = true;
});
// methods
/**
* Number to percentage
* @param {number} val 原始數字
* @returns {string} 轉換完成的百分比字串
*/
function getPercentLabel(val){
if((val * 100).toFixed(1) >= 100) return 100;
else return parseFloat((val * 100).toFixed(1));
}
/**
* set progress bar width
* @param {number} value 百分比數字
* @returns {string} 樣式的寬度設定
*/
function progressWidth(value){
return `width:${value}%;`
}
/**
* switch case data
* @param {number} id case id
*/
async function switchCaseData(id) {
if(id == showTraceId.value) return;
infinite404.value = null;
maxItems.value = false;
startNum.value = 0;
let result;
if(props.category === 'issue') result = await conformanceStore.getConformanceTraceDetail(props.listNo, id, 0);
else if(props.category === 'loop') result = await conformanceStore.getConformanceLoopsTraceDetail(props.listNo, id, 0);
infiniteData.value = await result;
showTraceId.value = id; // 放 getDetail 為了 case table 載入完再切換 showTraceId
}
/**
* 將 trace element nodes 資料彙整
*/
function setNodesData(){
// 避免每次渲染都重複累加
processMap.value.nodes = [];
// 將 api call 回來的資料帶進 node
if(props.taskSeq !== null) {
props.taskSeq.forEach((node, index) => {
processMap.value.nodes.push({
data: {
id: index,
label: node,
backgroundColor: '#CCE5FF',
bordercolor: '#003366',
shape: 'round-rectangle',
height: 80,
width: 100
}
});
});
};
}
/**
* 將 trace edge line 資料彙整
*/
function setEdgesData(){
processMap.value.edges = [];
if(props.taskSeq !== null) {
props.taskSeq.forEach((edge, index) => {
processMap.value.edges.push({
data: {
source: `${index}`,
target: `${index + 1}`,
lineWidth: 1,
style: 'solid'
}
});
});
};
// 關係線數量筆節點少一個
processMap.value.edges.pop();
}
/**
* create trace cytoscape's map
*/
function createCy(){
nextTick(() => {
const graphId = cfmTrace.value;
setNodesData();
setEdgesData();
if(graphId !== null) cytoscapeMapTrace(processMap.value.nodes, processMap.value.edges, graphId);
});
}
/**
* 無限滾動: 載入數據
*/
async function fetchData() {
try {
infiniteFinish.value = false;
startNum.value += 20
const result = await conformanceStore.getConformanceTraceDetail(props.listNo, showTraceId.value, startNum.value);
infiniteData.value = await [...infiniteData.value, ...result];
infiniteFinish.value = await true;
} catch(error) {
console.error('Failed to load data:', error);
}
}
/**
* 無限滾動: 監聽 scroll 有沒有滾到底部
* @param {element} event 監聽時回傳的事件
*/
function handleScroll(event) {
if(maxItems.value || infiniteData.value.length < 20 || infiniteFinish.value === false) return;
const container = event.target;
const overScrollHeight = container.scrollTop + container.clientHeight + 20 >= container.scrollHeight;
if (overScrollHeight) fetchData();
} }
</script> </script>
<style scoped> <style scoped>

View File

@@ -57,104 +57,104 @@
</div> </div>
</div> </div>
</template> </template>
<script> <script setup>
import { ref, computed, watch } from 'vue';
import { sortNumEngZhtwForFilter } from '@/module/sortNumEngZhtw.js'; import { sortNumEngZhtwForFilter } from '@/module/sortNumEngZhtw.js';
export default { const props = defineProps({
props: { filterTaskData: {
filterTaskData: { type: Array,
type: Array, required: true,
required: true,
},
progressWidth: {
type: Function,
required: false,
},
listSeq: {
type: Array,
required: true,
}
}, },
data() { progressWidth: {
return { type: Function,
listSequence: [], required: false,
filteredData: this.filterTaskData,
lastItemIndex: null,
}
}, },
computed: { listSeq: {
data: function() { type: Array,
// Activity List 要排序 required: true,
this.filteredData = this.filteredData.sort((x, y) => {
const diff = y.occurrences - x.occurrences;
return diff !== 0 ? diff : sortNumEngZhtwForFilter(x.label, y.label);
});
return this.filteredData;
}
},
watch: {
listSeq(newval){
this.listSequence = newval;
},
filterTaskData(newval){
this.filteredData = newval;
}
},
methods: {
/**
* double click Activity List
* @param {number} index data item index
* @param {object} element data item
*/
moveActItem(index, element){
this.listSequence.push(element);
},
/**
* double click Sequence List
* @param {number} index data item index
* @param {object} element data item
*/
moveSeqItem(index, element){
this.listSequence.splice(index, 1);
},
/**
* get listSequence
*/
getComponentData(){
this.$emit('update:listSeq', this.listSequence);
},
/**
* Element dragging started
* @param {event} evt input 傳入的事件
*/
onStart(evt) {
const lastChild = evt.to.lastChild.lastChild;
lastChild.style.display = 'none';
// 隱藏拖曳元素原位置
const originalElement = evt.item;
originalElement.style.display = 'none';
// 拖曳最後一個元素時,倒數第二的元素的箭頭要隱藏
const listIndex = this.listSequence.length - 1;
if(evt.oldIndex === listIndex) this.lastItemIndex = listIndex;
},
/**
* Element dragging ended
* @param {event} evt input 傳入的事件
*/
onEnd(evt) {
// 顯示拖曳元素
const originalElement = evt.item;
originalElement.style.display = '';
// 拖曳結束要顯示箭頭,但最後一個不用
const lastChild = evt.item.lastChild;
const listIndex = this.listSequence.length - 1
if (evt.oldIndex !== listIndex) {
lastChild.style.display = '';
}
// reset: 拖曳最後一個元素時,倒數第二的元素的箭頭要隱藏
this.lastItemIndex = null;
},
} }
});
const emit = defineEmits(['update:listSeq']);
const listSequence = ref([]);
const filteredData = ref(props.filterTaskData);
const lastItemIndex = ref(null);
const data = computed(() => {
// Activity List 要排序
filteredData.value = filteredData.value.sort((x, y) => {
const diff = y.occurrences - x.occurrences;
return diff !== 0 ? diff : sortNumEngZhtwForFilter(x.label, y.label);
});
return filteredData.value;
});
watch(() => props.listSeq, (newval) => {
listSequence.value = newval;
});
watch(() => props.filterTaskData, (newval) => {
filteredData.value = newval;
});
/**
* double click Activity List
* @param {number} index data item index
* @param {object} element data item
*/
function moveActItem(index, element) {
listSequence.value.push(element);
}
/**
* double click Sequence List
* @param {number} index data item index
* @param {object} element data item
*/
function moveSeqItem(index, element) {
listSequence.value.splice(index, 1);
}
/**
* get listSequence
*/
function getComponentData() {
emit('update:listSeq', listSequence.value);
}
/**
* Element dragging started
* @param {event} evt input 傳入的事件
*/
function onStart(evt) {
const lastChild = evt.to.lastChild.lastChild;
lastChild.style.display = 'none';
// 隱藏拖曳元素原位置
const originalElement = evt.item;
originalElement.style.display = 'none';
// 拖曳最後一個元素時,倒數第二的元素的箭頭要隱藏
const listIndex = listSequence.value.length - 1;
if(evt.oldIndex === listIndex) lastItemIndex.value = listIndex;
}
/**
* Element dragging ended
* @param {event} evt input 傳入的事件
*/
function onEnd(evt) {
// 顯示拖曳元素
const originalElement = evt.item;
originalElement.style.display = '';
// 拖曳結束要顯示箭頭,但最後一個不用
const lastChild = evt.item.lastChild;
const listIndex = listSequence.value.length - 1
if (evt.oldIndex !== listIndex) {
lastChild.style.display = '';
}
// reset: 拖曳最後一個元素時,倒數第二的元素的箭頭要隱藏
lastItemIndex.value = null;
} }
</script> </script>
<style scoped> <style scoped>

View File

@@ -28,50 +28,42 @@
</div> </div>
</div> </div>
</template> </template>
<script> <script setup>
import Search from '@/components/Search.vue'; import { ref, watch } from 'vue';
export default { const props = defineProps({
props: { tableTitle: {
tableTitle: { type: String,
type: String, required: true,
required: true,
},
tableData: {
type: Array,
required: true,
},
tableSelect: {
type: [Object, Array],
default: null
},
progressWidth: {
type: Function,
required: false,
}
}, },
data() { tableData: {
return { type: Array,
select: null, required: true,
metaKey: true
}
}, },
components: { tableSelect: {
Search, type: [Object, Array],
}, default: null
watch: {
tableSelect(newval){
this.select = newval;
}
},
methods: {
/**
* 將選取的 row 傳到父層
* @param {event} e input 傳入的事件
*/
onRowSelect(e) {
this.$emit('on-row-select', e)
}
}, },
progressWidth: {
type: Function,
required: false,
}
});
const emit = defineEmits(['on-row-select']);
const select = ref(null);
const metaKey = ref(true);
watch(() => props.tableSelect, (newval) => {
select.value = newval;
});
/**
* 將選取的 row 傳到父層
* @param {event} e input 傳入的事件
*/
function onRowSelect(e) {
emit('on-row-select', e);
} }
</script> </script>

View File

@@ -39,54 +39,49 @@
</div> </div>
</template> </template>
<script> <script setup>
import Search from '@/components/Search.vue'; import { ref, watch } from 'vue';
export default { const props = defineProps(['tableTitle', 'tableData', 'tableSelect', 'progressWidth']);
props: ['tableTitle', 'tableData', 'tableSelect', 'progressWidth'],
data() { const emit = defineEmits(['on-row-select']);
return {
select: null, const select = ref(null);
data: this.tableData const data = ref(props.tableData);
}
}, watch(() => props.tableSelect, (newval) => {
components: { select.value = newval;
Search, });
},
watch: { /**
tableSelect(newval){ * 選擇 Row 的行為
this.select = newval; */
} function onRowSelect() {
}, emit('on-row-select', select.value);
methods: { }
/**
* 選擇 Row 的行為 /**
*/ * 取消選取 Row 的行為
onRowSelect() { */
this.$emit('on-row-select', this.select); function onRowUnselect() {
}, emit('on-row-select', select.value);
/** }
* 取消選取 Row 的行為
*/ /**
onRowUnselect() { * 全選 Row 的行為
this.$emit('on-row-select', this.select); * @param {event} e input 傳入的事件
}, */
/** function onRowSelectAll(e) {
* 全選 Row 的行為 select.value = e.data;
* @param {event} e input 傳入的事件 emit('on-row-select', select.value);
*/ }
onRowSelectAll(e) {
this.select = e.data; /**
this.$emit('on-row-select', this.select); * 取消全選 Row 的行為
}, * @param {event} e input 傳入的事件
/** */
* 取消全選 Row 的行為 function onRowUnelectAll(e) {
* @param {event} e input 傳入的事件 select.value = null;
*/ emit('on-row-select', select.value);
onRowUnelectAll(e) {
this.select = null;
this.$emit('on-row-select', this.select)
}
},
} }
</script> </script>

File diff suppressed because it is too large Load Diff

View File

@@ -38,90 +38,89 @@
</div> </div>
</template> </template>
<script> <script setup>
import { storeToRefs } from 'pinia'; import { storeToRefs } from 'pinia';
import { useToast } from 'vue-toast-notification';
import { useLoadingStore } from '@/stores/loading'; import { useLoadingStore } from '@/stores/loading';
import { useAllMapDataStore } from '@/stores/allMapData'; import { useAllMapDataStore } from '@/stores/allMapData';
import { delaySecond, } from '@/utils/timeUtil.js'; import { delaySecond, } from '@/utils/timeUtil.js';
export default { const emit = defineEmits(['submit-all']);
setup() { const $toast = useToast();
const loadingStore = useLoadingStore();
const allMapDataStore = useAllMapDataStore();
const { isLoading } = storeToRefs(loadingStore);
const { hasResultRule, temporaryData, postRuleData, ruleData, isRuleData, tempFilterId } = storeToRefs(allMapDataStore);
return { isLoading, hasResultRule, temporaryData, postRuleData, ruleData, isRuleData, allMapDataStore, tempFilterId } const loadingStore = useLoadingStore();
}, const allMapDataStore = useAllMapDataStore();
methods: { const { isLoading } = storeToRefs(loadingStore);
/** const { hasResultRule, temporaryData, postRuleData, ruleData, isRuleData, tempFilterId } = storeToRefs(allMapDataStore);
* @param {boolean} e ture | false可選 ture 或 false
* @param {numble} index rule's index
*/
isRule(e, index){
const rule = this.isRuleData[index];
// 先取得 rule object
// 為了讓 data 順序不亂掉,將值指向 0submitAll 時再刪掉
if(!e) this.temporaryData[index] = 0;
else this.temporaryData[index] = rule;
},
/**
* header:Funnel 刪除全部的 Funnel
* @param {numble|string} index rule's index 或 全部
*/
async deleteRule(index) {
if(index === 'all') {
this.temporaryData = [];
this.isRuleData = [];
this.ruleData = [];
if(this.tempFilterId) {
this.isLoading = true;
this.tempFilterId = await null;
await this.allMapDataStore.getAllMapData();
await this.allMapDataStore.getAllTrace(); // SidebarTrace 要連動
await this.$emit('submit-all');
this.isLoading = false;
}
this.$toast.success('Filter(s) deleted.');
}else{
this.$toast.success(`Filter deleted.`);
this.temporaryData.splice(index, 1);
this.isRuleData.splice(index, 1);
this.ruleData.splice(index, 1);
}
},
/**
* header:Funnel 發送暫存的選取資料
*/
async submitAll() {
this.postRuleData = this.temporaryData.filter(item => item !== 0); // 取得 submit 的資料,有 toggle button 的話,找出並刪除陣列中為 0 的項目
if(!this.postRuleData?.length) return this.$toast.error('Not selected');
await this.allMapDataStore.checkHasResult(); // 後端快速檢查有沒有結果
if(this.hasResultRule === null) { /**
return; * @param {boolean} e ture | false可選 ture 或 false
} else if(this.hasResultRule) { * @param {numble} index rule's index
this.isLoading = true; */
await this.allMapDataStore.addTempFilterId(); function isRule(e, index){
await this.allMapDataStore.getAllMapData(); const rule = isRuleData.value[index];
await this.allMapDataStore.getAllTrace(); // SidebarTrace 要連動 // 先取得 rule object
if(this.temporaryData[0]?.type) { // 為了讓 data 順序不亂掉,將值指向 0submitAll 時再刪掉
this.allMapDataStore.traceId = await this.allMapDataStore.traces[0]?.id; if(!e) temporaryData.value[index] = 0;
} else temporaryData.value[index] = rule;
await this.$emit('submit-all'); }
this.isLoading = false;
this.$toast.success('Filter(s) applied.');
return;
}
// sonar-qube "This statement will not be executed conditionally" /**
this.isLoading = true; * header:Funnel 刪除全部的 Funnel
await delaySecond(1); * @param {numble|string} index rule's index 或 全部
this.isLoading = false; */
this.$toast.warning('No result.'); async function deleteRule(index) {
}, if(index === 'all') {
temporaryData.value = [];
isRuleData.value = [];
ruleData.value = [];
if(tempFilterId.value) {
isLoading.value = true;
tempFilterId.value = await null;
await allMapDataStore.getAllMapData();
await allMapDataStore.getAllTrace(); // SidebarTrace 要連動
await emit('submit-all');
isLoading.value = false;
}
$toast.success('Filter(s) deleted.');
}else{
$toast.success(`Filter deleted.`);
temporaryData.value.splice(index, 1);
isRuleData.value.splice(index, 1);
ruleData.value.splice(index, 1);
} }
} }
/**
* header:Funnel 發送暫存的選取資料
*/
async function submitAll() {
postRuleData.value = temporaryData.value.filter(item => item !== 0); // 取得 submit 的資料,有 toggle button 的話,找出並刪除陣列中為 0 的項目
if(!postRuleData.value?.length) return $toast.error('Not selected');
await allMapDataStore.checkHasResult(); // 後端快速檢查有沒有結果
if(hasResultRule.value === null) {
return;
} else if(hasResultRule.value) {
isLoading.value = true;
await allMapDataStore.addTempFilterId();
await allMapDataStore.getAllMapData();
await allMapDataStore.getAllTrace(); // SidebarTrace 要連動
if(temporaryData.value[0]?.type) {
allMapDataStore.traceId = await allMapDataStore.traces[0]?.id;
}
await emit('submit-all');
isLoading.value = false;
$toast.success('Filter(s) applied.');
return;
}
// sonar-qube "This statement will not be executed conditionally"
isLoading.value = true;
await delaySecond(1);
isLoading.value = false;
$toast.warning('No result.');
}
</script> </script>
<style scoped> <style scoped>

View File

@@ -30,327 +30,326 @@
</section> </section>
</div> </div>
</template> </template>
<script> <script setup>
import { ref, computed, watch, onMounted } from 'vue';
import { storeToRefs } from 'pinia'; import { storeToRefs } from 'pinia';
import { useAllMapDataStore } from '@/stores/allMapData'; import { useAllMapDataStore } from '@/stores/allMapData';
import { Chart, registerables } from 'chart.js'; import { Chart, registerables } from 'chart.js';
import 'chartjs-adapter-moment'; import 'chartjs-adapter-moment';
import getMoment from 'moment'; import getMoment from 'moment';
export default{ const props = defineProps(['selectValue']);
props:['selectValue'],
setup() {
const allMapDataStore = useAllMapDataStore();
const { filterTimeframe, selectTimeFrame } = storeToRefs(allMapDataStore);
return {allMapDataStore, filterTimeframe, selectTimeFrame } const allMapDataStore = useAllMapDataStore();
const { filterTimeframe, selectTimeFrame } = storeToRefs(allMapDataStore);
const selectRange = ref(1000); // 更改 select 的切分數
const selectArea = ref(null);
const chart = ref(null);
const canvasId = ref(null);
const startTime = ref(null);
const endTime = ref(null);
const startMinDate = ref(null);
const startMaxDate = ref(null);
const endMinDate = ref(null);
const endMaxDate = ref(null);
const panelProps = ref({
onClick: (event) => {
event.stopPropagation();
}, },
data() { });
return {
selectRange: 1000, // 更改 select 的切分數
selectArea: null,
chart: null,
canvasId: null,
startTime: null,
endTime: null,
startMinDate: null,
startMaxDate: null,
endMinDate: null,
endMaxDate: null,
panelProps: {
onClick: (event) => {
event.stopPropagation();
},
},
}
},
computed: {
// user select time start and end
timeFrameStartEnd: function() {
const start = getMoment(this.startTime).format('YYYY-MM-DDTHH:mm:00');
const end = getMoment(this.endTime).format('YYYY-MM-DDTHH:mm:00');
this.selectTimeFrame = [start, end]; // 傳給後端的資料
return [start, end]; // user select time start and end
}, const timeFrameStartEnd = computed(() => {
// 找出 slidrData時間格式:毫秒時間戳 const start = getMoment(startTime.value).format('YYYY-MM-DDTHH:mm:00');
sliderData: function() { const end = getMoment(endTime.value).format('YYYY-MM-DDTHH:mm:00');
const xAxisMin = new Date(this.filterTimeframe.x_axis.min).getTime(); selectTimeFrame.value = [start, end]; // 傳給後端的資料
const xAxisMax = new Date(this.filterTimeframe.x_axis.max).getTime();
const range = xAxisMax - xAxisMin;
const step = range / this.selectRange;
const sliderData = []
for (let i = 0; i <= this.selectRange; i++) { return [start, end];
sliderData.push(xAxisMin + (step * i)); });
}
return sliderData; // 找出 slidrData,時間格式:毫秒時間戳
}, const sliderData = computed(() => {
// 加入最大、最小值 const xAxisMin = new Date(filterTimeframe.value.x_axis.min).getTime();
timeFrameData: function(){ const xAxisMax = new Date(filterTimeframe.value.x_axis.max).getTime();
const data = this.filterTimeframe.data.map(i=>({x:i.x,y:i.y})) const range = xAxisMax - xAxisMin;
// y 軸斜率計算請參考 ./public/timeFrameSlope 的圖 const step = range / selectRange.value;
// x 值為 0 ~ 11, const data = []
// 將三的座標(ax, ay), (bx, by), (cx, cy)命名為 (a, b), (c, d), (e, f)
// 最小值: (f - b)(c - a) = (e - a)(d - b),求 b = (ed - ad - fa - fc) / (e - c - a)
// 最大值: (f - b)(e - c) = (f - d)(e - a),求 f = (be - bc -de + da) / (a - c)
// y 軸最小值 for (let i = 0; i <= selectRange.value; i++) {
const a = 0; data.push(xAxisMin + (step * i));
let b; }
const c = 1;
const d = this.filterTimeframe.data[0].y;
const e = 2;
const f = this.filterTimeframe.data[1].y;
b = (e*d - a*d - f*a - f*c) / (e - c - a);
if(b < 0) {
b = 0;
}
// y 軸最大值
const ma = 9;
const mb = this.filterTimeframe.data[8].y;
const mc = 10;
const md = this.filterTimeframe.data[9].y;
const me = 11;
let mf = (mb*me - mb*mc -md*me + md*ma) / (ma - mc);
if(mf < 0) {
mf = 0;
}
// 添加最小值 return data;
data.unshift({ });
x: this.filterTimeframe.x_axis.min_base,
y: b,
})
// 添加最大值
data.push({
x: this.filterTimeframe.x_axis.max_base,
y: mf,
})
return data; // 加入最大、最小值
}, const timeFrameData = computed(() => {
labelsData: function() { const data = filterTimeframe.value.data.map(i=>({x:i.x,y:i.y}))
const min = new Date(this.filterTimeframe.x_axis.min_base).getTime(); // y 軸斜率計算請參考 ./public/timeFrameSlope 的圖
const max = new Date(this.filterTimeframe.x_axis.max_base).getTime(); // x 值為 0 ~ 11,
const numPoints = 11; // 將三的座標(ax, ay), (bx, by), (cx, cy)命名為 (a, b), (c, d), (e, f)
const step = (max - min) / (numPoints - 1); // 最小值: (f - b)(c - a) = (e - a)(d - b),求 b = (ed - ad - fa - fc) / (e - c - a)
const data = []; // 最大值: (f - b)(e - c) = (f - d)(e - a),求 f = (be - bc -de + da) / (a - c)
for(let i = 0; i< numPoints; i++) {
const x = min + i * step;
data.push(x);
}
return data;
},
},
watch:{
selectTimeFrame(newValue, oldValue) {
if(newValue.length === 0) {
this.startTime = new Date(this.filterTimeframe.x_axis.min);
this.endTime = new Date(this.filterTimeframe.x_axis.max);
this.selectArea = [0, this.selectRange];
this.resizeMask(this.chart);
}
},
},
methods: {
/**
* 調整遮罩大小
* @param {object} chart 取得 chart.js 資料
*/
resizeMask(chart) {
const from = (this.selectArea[0] * 0.01) / (this.selectRange * 0.01);
const to = (this.selectArea[1] * 0.01) / (this.selectRange * 0.01);
if(this.selectValue[0] === 'Timeframes') {
this.resizeLeftMask(chart, from);
this.resizeRightMask(chart, to);
}
},
/**
* 調整左邊遮罩大小
* @param {object} chart 取得 chart.js 資料
*/
resizeLeftMask(chart, from) {
const canvas = document.getElementById("chartCanvasId");
const mask = document.getElementById("chart-mask-left");
mask.style.left = `${canvas.offsetLeft + chart.chartArea.left}px`;
mask.style.width = `${chart.chartArea.width * from}px`;
mask.style.top = `${canvas.offsetTop + chart.chartArea.top}px`;
mask.style.height = `${chart.chartArea.height}px`;
},
/**
* 調整右邊遮罩大小
* @param {object} chart 取得 chart.js 資料
*/
resizeRightMask(chart, to) {
const canvas = document.getElementById("chartCanvasId");
const mask = document.getElementById("chart-mask-right");
mask.style.left = `${canvas.offsetLeft + chart.chartArea.left + chart.chartArea.width * to}px`;
mask.style.width = `${chart.chartArea.width * (1 - to)}px`;
mask.style.top = `${canvas.offsetTop + chart.chartArea.top}px`;
mask.style.height = `${chart.chartArea.height}px`;
},
/**
* create chart
*/
createChart() {
const max = this.filterTimeframe.y_axis.max * 1.1;
const minX = this.timeFrameData[0]?.x;
const maxX = this.timeFrameData[this.timeFrameData.length - 1]?.x;
const data = { // y 軸最小值
labels:this.labelsData, const a = 0;
datasets: [ let b;
{ const c = 1;
label: 'Case', const d = filterTimeframe.value.data[0].y;
data: this.timeFrameData, const e = 2;
fill: 'start', const f = filterTimeframe.value.data[1].y;
showLine: false, b = (e*d - a*d - f*a - f*c) / (e - c - a);
tension: 0.4, if(b < 0) {
backgroundColor: 'rgba(0,153,255)', b = 0;
pointRadius: 0, }
x: 'x', // y 軸最大值
y: 'y', const ma = 9;
} const mb = filterTimeframe.value.data[8].y;
] const mc = 10;
}; const md = filterTimeframe.value.data[9].y;
const options = { const me = 11;
responsive: true, let mf = (mb*me - mb*mc -md*me + md*ma) / (ma - mc);
maintainAspectRatio: false, if(mf < 0) {
layout: { mf = 0;
padding: { }
top: 16,
left: 8,
right: 8,
}
},
plugins: {
legend: false, // 圖例
filler: {
propagate: false
},
title: false
},
// animations: false, // 取消動畫
animation: {
onComplete: e => {
this.resizeMask(e.chart);
}
},
interaction: {
intersect: true,
},
scales: {
x: {
type: 'time',
min: minX,
max: maxX,
ticks: {
autoSkip: true,
maxRotation: 0, // 不旋轉 lable 0~50
color: '#334155',
display: true,
source: 'labels',
},
grid: {
display: false, // 隱藏 x 軸網格
},
time: {
minUnit: 'day', // 顯示最小單位
// displayFormats: {
// minute: 'HH:mm MMM d',
// hour: 'HH:mm MMM d',
// }
}
},
y: {
beginAtZero: true, // scale 包含 0
max: max,
ticks: { // 設定間隔數值
display: false, // 隱藏數值,只顯示格線
stepSize: max / 4,
},
grid: {
color: 'rgba(100,116,139)',
z: 1,
},
border: {
display: false, // 隱藏左側多出來的線
}
},
},
};
const config = {
type: 'line',
data: data,
options: options,
};
this.canvasId = document.getElementById("chartCanvasId");
this.chart = new Chart(this.canvasId, config);
},
/**
* 滑塊改變的時候
* @param {array} e [1, 100]
*/
changeSelectArea(e) {
// 日曆改變時,滑塊跟著改變
const sliderData = this.sliderData;
const start = sliderData[e[0].toFixed()];
const end = sliderData[e[1].toFixed()]; // 取得 index須為整數。
this.startTime = new Date(start); // 添加最小值
this.endTime = new Date(end); data.unshift({
// 重新設定 start end 日曆選取範圍 x: filterTimeframe.value.x_axis.min_base,
this.endMinDate = new Date(start); y: b,
this.startMaxDate = new Date(end); })
// 重新算圖 // 添加最大值
this.resizeMask(this.chart); data.push({
// 執行 timeFrameStartEnd 才會改變數據 x: filterTimeframe.value.x_axis.max_base,
this.timeFrameStartEnd(); y: mf,
}, })
/**
* 選取開始或結束時間時,要改變滑塊跟圖表
* @param {object} e Tue Jan 25 2022 00:00:00 GMT+0800 (台北標準時間)
* @param {string} direction start or end
*/
sliderTimeRange(e, direction) {
// 找到最鄰近的 index時間格式: 毫秒時間戳
const sliderData = this.sliderData;
const targetTime = [new Date(this.timeFrameStartEnd[0]).getTime(), new Date(this.timeFrameStartEnd[1]).getTime()];
const closestIndexes = targetTime.map(target => {
let closestIndex = 0;
closestIndex = ((target - sliderData[0])/(sliderData[sliderData.length-1]-sliderData[0])) * sliderData.length;
let result = Math.round(Math.abs(closestIndex));
result = result > this.selectRange ? this.selectRange : result;
return result
});
// 改變滑塊 return data;
this.selectArea = closestIndexes; });
// 重新設定 start end 日曆選取範圍
if(direction === 'start') this.endMinDate = e; const labelsData = computed(() => {
else if(direction === 'end') this.startMaxDate = e; const min = new Date(filterTimeframe.value.x_axis.min_base).getTime();
// 重新算圖 const max = new Date(filterTimeframe.value.x_axis.max_base).getTime();
if(!isNaN(closestIndexes[0]) && !isNaN(closestIndexes[1])) this.resizeMask(this.chart); const numPoints = 11;
else return; const step = (max - min) / (numPoints - 1);
}, const data = [];
}, for(let i = 0; i< numPoints; i++) {
mounted() { const x = min + i * step;
// Chart.js data.push(x);
Chart.register(...registerables); }
this.createChart(); return data;
// Slider });
this.selectArea = [0, this.selectRange];
// Calendar watch(selectTimeFrame, (newValue, oldValue) => {
this.startMinDate = new Date(this.filterTimeframe.x_axis.min); if(newValue.length === 0) {
this.startMaxDate = new Date(this.filterTimeframe.x_axis.max); startTime.value = new Date(filterTimeframe.value.x_axis.min);
this.endMinDate = new Date(this.filterTimeframe.x_axis.min); endTime.value = new Date(filterTimeframe.value.x_axis.max);
this.endMaxDate = new Date(this.filterTimeframe.x_axis.max); selectArea.value = [0, selectRange.value];
// 讓日曆的範圍等於時間軸的範圍 resizeMask(chart.value);
this.startTime = this.startMinDate; }
this.endTime = this.startMaxDate; });
this.timeFrameStartEnd();
}, /**
* 調整遮罩大小
* @param {object} chartInstance 取得 chart.js 資料
*/
function resizeMask(chartInstance) {
const from = (selectArea.value[0] * 0.01) / (selectRange.value * 0.01);
const to = (selectArea.value[1] * 0.01) / (selectRange.value * 0.01);
if(props.selectValue[0] === 'Timeframes') {
resizeLeftMask(chartInstance, from);
resizeRightMask(chartInstance, to);
}
} }
/**
* 調整左邊遮罩大小
* @param {object} chartInstance 取得 chart.js 資料
*/
function resizeLeftMask(chartInstance, from) {
const canvas = document.getElementById("chartCanvasId");
const mask = document.getElementById("chart-mask-left");
mask.style.left = `${canvas.offsetLeft + chartInstance.chartArea.left}px`;
mask.style.width = `${chartInstance.chartArea.width * from}px`;
mask.style.top = `${canvas.offsetTop + chartInstance.chartArea.top}px`;
mask.style.height = `${chartInstance.chartArea.height}px`;
}
/**
* 調整右邊遮罩大小
* @param {object} chartInstance 取得 chart.js 資料
*/
function resizeRightMask(chartInstance, to) {
const canvas = document.getElementById("chartCanvasId");
const mask = document.getElementById("chart-mask-right");
mask.style.left = `${canvas.offsetLeft + chartInstance.chartArea.left + chartInstance.chartArea.width * to}px`;
mask.style.width = `${chartInstance.chartArea.width * (1 - to)}px`;
mask.style.top = `${canvas.offsetTop + chartInstance.chartArea.top}px`;
mask.style.height = `${chartInstance.chartArea.height}px`;
}
/**
* create chart
*/
function createChart() {
const max = filterTimeframe.value.y_axis.max * 1.1;
const minX = timeFrameData.value[0]?.x;
const maxX = timeFrameData.value[timeFrameData.value.length - 1]?.x;
const data = {
labels:labelsData.value,
datasets: [
{
label: 'Case',
data: timeFrameData.value,
fill: 'start',
showLine: false,
tension: 0.4,
backgroundColor: 'rgba(0,153,255)',
pointRadius: 0,
x: 'x',
y: 'y',
}
]
};
const options = {
responsive: true,
maintainAspectRatio: false,
layout: {
padding: {
top: 16,
left: 8,
right: 8,
}
},
plugins: {
legend: false, // 圖例
filler: {
propagate: false
},
title: false
},
// animations: false, // 取消動畫
animation: {
onComplete: e => {
resizeMask(e.chart);
}
},
interaction: {
intersect: true,
},
scales: {
x: {
type: 'time',
min: minX,
max: maxX,
ticks: {
autoSkip: true,
maxRotation: 0, // 不旋轉 lable 0~50
color: '#334155',
display: true,
source: 'labels',
},
grid: {
display: false, // 隱藏 x 軸網格
},
time: {
minUnit: 'day', // 顯示最小單位
// displayFormats: {
// minute: 'HH:mm MMM d',
// hour: 'HH:mm MMM d',
// }
}
},
y: {
beginAtZero: true, // scale 包含 0
max: max,
ticks: { // 設定間隔數值
display: false, // 隱藏數值,只顯示格線
stepSize: max / 4,
},
grid: {
color: 'rgba(100,116,139)',
z: 1,
},
border: {
display: false, // 隱藏左側多出來的線
}
},
},
};
const config = {
type: 'line',
data: data,
options: options,
};
canvasId.value = document.getElementById("chartCanvasId");
chart.value = new Chart(canvasId.value, config);
}
/**
* 滑塊改變的時候
* @param {array} e [1, 100]
*/
function changeSelectArea(e) {
// 日曆改變時,滑塊跟著改變
const sliderDataVal = sliderData.value;
const start = sliderDataVal[e[0].toFixed()];
const end = sliderDataVal[e[1].toFixed()]; // 取得 index須為整數。
startTime.value = new Date(start);
endTime.value = new Date(end);
// 重新設定 start end 日曆選取範圍
endMinDate.value = new Date(start);
startMaxDate.value = new Date(end);
// 重新算圖
resizeMask(chart.value);
// 執行 timeFrameStartEnd 才會改變數據
timeFrameStartEnd.value;
}
/**
* 選取開始或結束時間時,要改變滑塊跟圖表
* @param {object} e Tue Jan 25 2022 00:00:00 GMT+0800 (台北標準時間)
* @param {string} direction start or end
*/
function sliderTimeRange(e, direction) {
// 找到最鄰近的 index時間格式: 毫秒時間戳
const sliderDataVal = sliderData.value;
const targetTime = [new Date(timeFrameStartEnd.value[0]).getTime(), new Date(timeFrameStartEnd.value[1]).getTime()];
const closestIndexes = targetTime.map(target => {
let closestIndex = 0;
closestIndex = ((target - sliderDataVal[0])/(sliderDataVal[sliderDataVal.length-1]-sliderDataVal[0])) * sliderDataVal.length;
let result = Math.round(Math.abs(closestIndex));
result = result > selectRange.value ? selectRange.value : result;
return result
});
// 改變滑塊
selectArea.value = closestIndexes;
// 重新設定 start end 日曆選取範圍
if(direction === 'start') endMinDate.value = e;
else if(direction === 'end') startMaxDate.value = e;
// 重新算圖
if(!isNaN(closestIndexes[0]) && !isNaN(closestIndexes[1])) resizeMask(chart.value);
else return;
}
onMounted(() => {
// Chart.js
Chart.register(...registerables);
createChart();
// Slider
selectArea.value = [0, selectRange.value];
// Calendar
startMinDate.value = new Date(filterTimeframe.value.x_axis.min);
startMaxDate.value = new Date(filterTimeframe.value.x_axis.max);
endMinDate.value = new Date(filterTimeframe.value.x_axis.min);
endMaxDate.value = new Date(filterTimeframe.value.x_axis.max);
// 讓日曆的範圍等於時間軸的範圍
startTime.value = startMinDate.value;
endTime.value = startMaxDate.value;
timeFrameStartEnd.value;
});
</script> </script>

View File

@@ -48,7 +48,7 @@
<p class="h2 mb-2">Trace #{{ showTraceId }}</p> <p class="h2 mb-2">Trace #{{ showTraceId }}</p>
<div class="h-36 w-full px-2 mb-2 border border-neutral-300 rounded"> <div class="h-36 w-full px-2 mb-2 border border-neutral-300 rounded">
<div class="h-full w-full"> <div class="h-full w-full">
<div id="cyTrace" ref="cyTrace" class="h-full min-w-full relative"></div> <div id="cyTrace" ref="cyTraceRef" class="h-full min-w-full relative"></div>
</div> </div>
</div> </div>
<div class="overflow-y-auto overflow-x-auto scrollbar h-[calc(100%_-_200px)] infiniteTable" @scroll="handleScroll"> <div class="overflow-y-auto overflow-x-auto scrollbar h-[calc(100%_-_200px)] infiniteTable" @scroll="handleScroll">
@@ -68,293 +68,303 @@
</div> </div>
</template> </template>
<script> <script setup>
import { ref, computed, watch, onMounted } from 'vue';
import { storeToRefs } from 'pinia'; import { storeToRefs } from 'pinia';
import { useAllMapDataStore } from '@/stores/allMapData'; import { useAllMapDataStore } from '@/stores/allMapData';
import { useLoadingStore } from '@/stores/loading'; import { useLoadingStore } from '@/stores/loading';
import cytoscapeMapTrace from '@/module/cytoscapeMapTrace.js'; import cytoscapeMapTrace from '@/module/cytoscapeMapTrace.js';
export default { const emit = defineEmits(['filter-trace-selectArea']);
expose: ['selectArea', 'showTraceId', 'traceTotal'],
setup() {
const allMapDataStore = useAllMapDataStore();
const loadingStore = useLoadingStore();
const { infinit404, baseInfiniteStart, baseTraces, baseTraceTaskSeq, baseCases } = storeToRefs(allMapDataStore);
const { isLoading } = storeToRefs(loadingStore);
return {allMapDataStore, infinit404, baseInfiniteStart, baseTraces, baseTraceTaskSeq, baseCases, isLoading} const allMapDataStore = useAllMapDataStore();
}, const loadingStore = useLoadingStore();
data() { const { infinit404, baseInfiniteStart, baseTraces, baseTraceTaskSeq, baseCases } = storeToRefs(allMapDataStore);
const { isLoading } = storeToRefs(loadingStore);
const processMap = ref({
nodes:[],
edges:[],
});
const showTraceId = ref(null);
const infinitMaxItems = ref(false);
const infiniteData = ref([]);
const infiniteFinish = ref(true); // 無限滾動是否載入完成
const chartOptions = ref(null);
const selectArea = ref([0, 1]);
const cyTraceRef = ref(null);
const traceTotal = computed(() => {
return baseTraces.value.length;
});
defineExpose({ selectArea, showTraceId, traceTotal });
const traceCountTotal = computed(() => {
return baseTraces.value.map(trace => trace.count).reduce((acc, cur) => acc + cur, 0);
});
const traceList = computed(() => {
return baseTraces.value.map(trace => {
return { return {
processMap:{ id: trace.id,
nodes:[], value: progressWidth(Number(((trace.count / traceCountTotal.value) * 100).toFixed(1))),
edges:[], count: trace.count.toLocaleString(),
}, base_count: trace.count,
showTraceId: null, ratio: getPercentLabel(trace.count / traceCountTotal.value),
infinitMaxItems: false, };
infiniteData: [], }).slice(selectArea.value[0], selectArea.value[1]);
infiniteFinish: true, // 無限滾動是否載入完成 });
chartOptions: null,
selectArea: [0, 1]
}
},
computed: {
traceTotal: function() {
return this.baseTraces.length;
},
traceCountTotal: function() {
return this.baseTraces.map(trace => trace.count).reduce((acc, cur) => acc + cur, 0);
},
traceList: function() {
return this.baseTraces.map(trace => {
return {
id: trace.id,
value: this.progressWidth(Number(((trace.count / this.traceCountTotal) * 100).toFixed(1))),
count: trace.count.toLocaleString(),
base_count: trace.count,
ratio: this.getPercentLabel(trace.count / this.traceCountTotal),
};
}).slice(this.selectArea[0], this.selectArea[1]);
},
caseTotalPercent: function() {
const ratioSum = this.traceList.map(trace => trace.base_count).reduce((acc, cur) => acc + cur, 0) / this.traceCountTotal;
return this.getPercentLabel(ratioSum)
},
chartData: function() {
const start = this.selectArea[0];
const end = this.selectArea[1] - 1;
const labels = this.baseTraces.map(trace => `#${trace.id}`);
const data = this.baseTraces.map(trace => this.getPercentLabel(trace.count / this.traceCountTotal));
const selectAreaData = this.baseTraces.map((trace, index) => index >= start && index <= end ? 'rgba(0,153,255)' : 'rgba(203, 213, 225)');
return { // 要呈現的資料 const caseTotalPercent = computed(() => {
labels, const ratioSum = traceList.value.map(trace => trace.base_count).reduce((acc, cur) => acc + cur, 0) / traceCountTotal.value;
datasets: [ return getPercentLabel(ratioSum)
{ });
label: 'Trace', // 資料的標題標籤
data, const chartData = computed(() => {
backgroundColor: selectAreaData, const start = selectArea.value[0];
categoryPercentage: 1.0, const end = selectArea.value[1] - 1;
barPercentage: 1.0 const labels = baseTraces.value.map(trace => `#${trace.id}`);
}, const data = baseTraces.value.map(trace => getPercentLabel(trace.count / traceCountTotal.value));
] const selectAreaData = baseTraces.value.map((trace, index) => index >= start && index <= end ? 'rgba(0,153,255)' : 'rgba(203, 213, 225)');
};
}, return { // 要呈現的資料
caseData: function() { labels,
const data = JSON.parse(JSON.stringify(this.infiniteData)); // 深拷貝原始 cases 的內容 datasets: [
data.forEach(item => { {
item.attributes.forEach((attribute, index) => { label: 'Trace', // 資料的標題標籤
item[`att_${index}`] = attribute.value; // 建立新的 key-value pair data,
}); backgroundColor: selectAreaData,
delete item.attributes; // 刪除原本的 attributes 屬性 categoryPercentage: 1.0,
}) barPercentage: 1.0
return data; },
}, ]
columnData: function() { };
const data = JSON.parse(JSON.stringify(this.baseCases)); // 深拷貝原始 cases 的內容 });
let result = [
{ field: 'id', header: 'Case Id' }, const caseData = computed(() => {
{ field: 'started_at', header: 'Start time' }, const data = JSON.parse(JSON.stringify(infiniteData.value)); // 深拷貝原始 cases 的內容
{ field: 'completed_at', header: 'End time' }, data.forEach(item => {
]; item.attributes.forEach((attribute, index) => {
if(data.length !== 0){ item[`att_${index}`] = attribute.value; // 建立新的 key-value pair
result = [ });
{ field: 'id', header: 'Case Id' }, delete item.attributes; // 刪除原本的 attributes 屬性
{ field: 'started_at', header: 'Start time' }, })
{ field: 'completed_at', header: 'End time' }, return data;
...(data[0]?.attributes ?? []).map((att, index) => ({ field: `att_${index}`, header: att.key })), });
];
const columnData = computed(() => {
const data = JSON.parse(JSON.stringify(baseCases.value)); // 深拷貝原始 cases 的內容
let result = [
{ field: 'id', header: 'Case Id' },
{ field: 'started_at', header: 'Start time' },
{ field: 'completed_at', header: 'End time' },
];
if(data.length !== 0){
result = [
{ field: 'id', header: 'Case Id' },
{ field: 'started_at', header: 'Start time' },
{ field: 'completed_at', header: 'End time' },
...(data[0]?.attributes ?? []).map((att, index) => ({ field: `att_${index}`, header: att.key })),
];
}
return result
});
watch(selectArea, (newValue, oldValue) => {
const roundValue = Math.round(newValue[1].toFixed());
if(newValue[1] !== roundValue) selectArea.value[1] = roundValue;
if(newValue != oldValue) emit('filter-trace-selectArea', newValue); // 判斷 Apply 是否 disable
});
watch(infinit404, (newValue) => {
if(newValue === 404) infinitMaxItems.value = true;
});
watch(showTraceId, (newValue, oldValue) => {
const isScrollTop = document.querySelector('.infiniteTable');
if(isScrollTop && typeof isScrollTop.scrollTop !== 'undefined') if(newValue !== oldValue) isScrollTop.scrollTop = 0;
});
/**
* Set bar chart Options
*/
function barOptions(){
return {
maintainAspectRatio: false,
aspectRatio: 0.8,
layout: {
padding: {
top: 16,
left: 8,
right: 8,
} }
return result
}, },
}, plugins: {
watch: { legend: { // 圖例
selectArea: function(newValue, oldValue) { display: false,
const roundValue = Math.round(newValue[1].toFixed()); },
if(newValue[1] !== roundValue) this.selectArea[1] = roundValue; tooltip: {
if(newValue != oldValue) this.$emit('filter-trace-selectArea', newValue); // 判斷 Apply 是否 disable callbacks: {
}, label: (tooltipItems) =>{
infinite404: function(newValue) { return `${tooltipItems.dataset.label}: ${tooltipItems.parsed.y}%`
if(newValue === 404) this.infinitMaxItems = true;
},
showTraceId: function(newValue, oldValue) {
const isScrollTop = document.querySelector('.infiniteTable');
if(isScrollTop && typeof isScrollTop.scrollTop !== 'undefined') if(newValue !== oldValue) isScrollTop.scrollTop = 0;
},
},
methods: {
/**
* Set bar chart Options
*/
barOptions(){
return {
maintainAspectRatio: false,
aspectRatio: 0.8,
layout: {
padding: {
top: 16,
left: 8,
right: 8,
}
},
plugins: {
legend: { // 圖例
display: false,
},
tooltip: {
callbacks: {
label: (tooltipItems) =>{
return `${tooltipItems.dataset.label}: ${tooltipItems.parsed.y}%`
}
}
}
},
animations: false,
scales: {
x: {
display:false
},
y: {
ticks: { // 設定間隔數值
display: false, // 隱藏數值,只顯示格線
min: 0,
max: this.traceList[0]?.ratio,
stepSize: (this.traceList[0]?.ratio)/4,
},
grid: {
color: 'rgba(100,116,139)',
z: 1,
},
border: {
display: false, // 隱藏左側多出來的線
}
} }
} }
}; }
}, },
/** animations: false,
* Number to percentage scales: {
* @param {number} val 原始數字 x: {
* @returns {string} 轉換完成的百分比字串 display:false
*/ },
getPercentLabel(val){ y: {
if((val * 100).toFixed(1) >= 100) return 100; ticks: { // 設定間隔數值
else return parseFloat((val * 100).toFixed(1)); display: false, // 隱藏數值,只顯示格線
}, min: 0,
/** max: traceList.value[0]?.ratio,
* set progress bar width stepSize: (traceList.value[0]?.ratio)/4,
* @param {number} value 百分比數字 },
* @returns {string} 樣式的寬度設定 grid: {
*/ color: 'rgba(100,116,139)',
progressWidth(value){ z: 1,
return `width:${value}%;` },
}, border: {
/** display: false, // 隱藏左側多出來的線
* switch case data }
* @param {number} id case id
* @param {number} count 所有的 case 數量
*/
async switchCaseData(id, count) {
// 點同一筆 id 不要有動作
if(id == this.showTraceId) return;
this.isLoading = true; // 都要 loading 畫面
this.infinit404 = null;
this.infinitMaxItems = false;
this.baseInfiniteStart = 0;
this.allMapDataStore.baseTraceId = id;
this.infiniteData = await this.allMapDataStore.getBaseTraceDetail();
this.showTraceId = id; // 放 getDetail 為了 case table 載入完再切換 showTraceId
this.createCy();
this.isLoading = false;
},
/**
* 將 trace element nodes 資料彙整
*/
setNodesData(){
// 避免每次渲染都重複累加
this.processMap.nodes = [];
// 將 api call 回來的資料帶進 node
this.baseTraceTaskSeq.forEach((node, index) => {
this.processMap.nodes.push({
data: {
id: index,
label: node,
backgroundColor: '#CCE5FF',
bordercolor: '#003366',
shape: 'round-rectangle',
height: 80,
width: 100
}
});
})
},
/**
* 將 trace edge line 資料彙整
*/
setEdgesData(){
this.processMap.edges = [];
this.baseTraceTaskSeq.forEach((edge, index) => {
this.processMap.edges.push({
data: {
source: `${index}`,
target: `${index + 1}`,
lineWidth: 1,
style: 'solid'
}
});
});
// 關係線數量筆節點少一個
this.processMap.edges.pop();
},
/**
* create trace cytoscape's map
*/
createCy(){
const graphId = this.$refs.cyTrace;
this.setNodesData();
this.setEdgesData();
cytoscapeMapTrace(this.processMap.nodes, this.processMap.edges, graphId);
},
/**
* 無限滾動: 監聽 scroll 有沒有滾到底部
* @param {element} event 滾動傳入的事件
*/
handleScroll(event) {
if(this.infinitMaxItems || this.baseCases.length < 20 || this.infiniteFinish === false) return;
const container = event.target;
const overScrollHeight = container.scrollTop + container.clientHeight >= container.scrollHeight;
if(overScrollHeight) this.fetchData();
},
/**
* 無限滾動: 滾到底後,要載入數據
*/
async fetchData() {
try {
this.isLoading = true;
this.infiniteFinish = false;
this.baseInfiniteStart += 20;
await this.allMapDataStore.getBaseTraceDetail();
this.infiniteData = await [...this.infiniteData, ...this.baseCases];
this.infiniteFinish = await true;
this.isLoading = await false;
} catch(error) {
console.error('Failed to load data:', error);
} }
} }
}, };
mounted() {
this.isLoading = true; // createCy 執行完關閉
this.setNodesData();
this.setEdgesData();
this.createCy();
this.chartOptions = this.barOptions();
this.selectArea = [0, this.traceTotal]
this.isLoading = false;
},
} }
/**
* Number to percentage
* @param {number} val 原始數字
* @returns {string} 轉換完成的百分比字串
*/
function getPercentLabel(val){
if((val * 100).toFixed(1) >= 100) return 100;
else return parseFloat((val * 100).toFixed(1));
}
/**
* set progress bar width
* @param {number} value 百分比數字
* @returns {string} 樣式的寬度設定
*/
function progressWidth(value){
return `width:${value}%;`
}
/**
* switch case data
* @param {number} id case id
* @param {number} count 所有的 case 數量
*/
async function switchCaseData(id, count) {
// 點同一筆 id 不要有動作
if(id == showTraceId.value) return;
isLoading.value = true; // 都要 loading 畫面
infinit404.value = null;
infinitMaxItems.value = false;
baseInfiniteStart.value = 0;
allMapDataStore.baseTraceId = id;
infiniteData.value = await allMapDataStore.getBaseTraceDetail();
showTraceId.value = id; // 放 getDetail 為了 case table 載入完再切換 showTraceId
createCy();
isLoading.value = false;
}
/**
* 將 trace element nodes 資料彙整
*/
function setNodesData(){
// 避免每次渲染都重複累加
processMap.value.nodes = [];
// 將 api call 回來的資料帶進 node
baseTraceTaskSeq.value.forEach((node, index) => {
processMap.value.nodes.push({
data: {
id: index,
label: node,
backgroundColor: '#CCE5FF',
bordercolor: '#003366',
shape: 'round-rectangle',
height: 80,
width: 100
}
});
})
}
/**
* 將 trace edge line 資料彙整
*/
function setEdgesData(){
processMap.value.edges = [];
baseTraceTaskSeq.value.forEach((edge, index) => {
processMap.value.edges.push({
data: {
source: `${index}`,
target: `${index + 1}`,
lineWidth: 1,
style: 'solid'
}
});
});
// 關係線數量筆節點少一個
processMap.value.edges.pop();
}
/**
* create trace cytoscape's map
*/
function createCy(){
const graphId = cyTraceRef.value;
setNodesData();
setEdgesData();
cytoscapeMapTrace(processMap.value.nodes, processMap.value.edges, graphId);
}
/**
* 無限滾動: 監聽 scroll 有沒有滾到底部
* @param {element} event 滾動傳入的事件
*/
function handleScroll(event) {
if(infinitMaxItems.value || baseCases.value.length < 20 || infiniteFinish.value === false) return;
const container = event.target;
const overScrollHeight = container.scrollTop + container.clientHeight >= container.scrollHeight;
if(overScrollHeight) fetchData();
}
/**
* 無限滾動: 滾到底後,要載入數據
*/
async function fetchData() {
try {
isLoading.value = true;
infiniteFinish.value = false;
baseInfiniteStart.value += 20;
await allMapDataStore.getBaseTraceDetail();
infiniteData.value = await [...infiniteData.value, ...baseCases.value];
infiniteFinish.value = await true;
isLoading.value = await false;
} catch(error) {
console.error('Failed to load data:', error);
}
}
onMounted(() => {
isLoading.value = true; // createCy 執行完關閉
setNodesData();
setEdgesData();
createCy();
chartOptions.value = barOptions();
selectArea.value = [0, traceTotal.value]
isLoading.value = false;
});
</script> </script>
<style scoped> <style scoped>

File diff suppressed because it is too large Load Diff

View File

@@ -241,8 +241,8 @@
</Sidebar> </Sidebar>
</template> </template>
<script> <script setup>
import { computed, ref, } from 'vue'; import { computed, ref } from 'vue';
import { usePageAdminStore } from '@/stores/pageAdmin'; import { usePageAdminStore } from '@/stores/pageAdmin';
import { useMapPathStore } from '@/stores/mapPathStore'; import { useMapPathStore } from '@/stores/mapPathStore';
import { getTimeLabel } from '@/module/timeLabel.js'; import { getTimeLabel } from '@/module/timeLabel.js';
@@ -252,120 +252,106 @@ import { INSIGHTS_FIELDS_AND_LABELS } from '@/constants/constants';
// 刪除第一個和第二個元素 // 刪除第一個和第二個元素
const fieldNamesAndLabelNames = [...INSIGHTS_FIELDS_AND_LABELS].slice(2); const fieldNamesAndLabelNames = [...INSIGHTS_FIELDS_AND_LABELS].slice(2);
export default {
props:{ const props = defineProps({
sidebarState: { sidebarState: {
type: Boolean, type: Boolean,
require: false, require: false,
},
stats: {
type: Object,
required: false,
},
insights: {
type: Object,
required: false,
}
}, },
setup(props){ stats: {
const pageAdmin = usePageAdminStore(); type: Object,
const mapPathStore = useMapPathStore(); required: false,
const activeTrace = ref(0);
const currentMapFile = computed(() => pageAdmin.currentMapFile);
const clickedPathListIndex = ref(0);
const isBPMNOn = computed(() => mapPathStore.isBPMNOn);
const onActiveTraceClick = (clickedActiveTraceIndex) => {
mapPathStore.clearAllHighlight();
activeTrace.value = clickedActiveTraceIndex;
mapPathStore.highlightClickedPath(clickedActiveTraceIndex, clickedPathListIndex.value);
}
const onPathOptionClick = (clickedPath) => {
clickedPathListIndex.value = clickedPath;
mapPathStore.highlightClickedPath(activeTrace.value, clickedPath);
};
const onResetTraceBtnClick = () => {
if(isBPMNOn.value) {
return;
}
clickedPathListIndex.value = undefined;
}
return {
currentMapFile,
i18next,
fieldNamesAndLabelNames,
clickedPathListIndex,
onPathOptionClick,
onActiveTraceClick,
onResetTraceBtnClick,
activeTrace,
isBPMNOn,
i18next,
};
},
data() {
return {
tab: 'summary',
valueCases: 0,
valueTraces: 0,
valueTaskInstances: 0,
valueTasks: 0,
}
},
methods: {
/**
* @param {string} switch Summary or Insight
*/
switchTab(tab) {
this.tab = tab;
},
/**
* @param {number} time use timeLabel.js
*/
timeLabel(time){ // sonar-qube prevent super-linear runtime due to backtracking; change * to ?
//
const label = getTimeLabel(time).replace(/\s+/g, ' '); // 將所有連續空白字符壓縮為一個空白
const result = label.match(/^(\d+)\s?([a-zA-Z]+)$/); // add ^ and $ to meet sonar-qube need
return result;
},
/**
* @param {number} time use moment
*/
moment(time){
return getMoment(time).format('YYYY-MM-DD HH:mm');
},
/**
* Number to percentage
* @param {number} val 原始數字
* @returns {string} 轉換完成的百分比字串
*/
getPercentLabel(val){
if((val * 100).toFixed(1) >= 100) return `100%`;
else return `${(val * 100).toFixed(1)}%`;
},
/**
* Behavior when show
*/
show(){
this.valueCases = this.stats.cases.ratio * 100;
this.valueTraces= this.stats.traces.ratio * 100;
this.valueTaskInstances = this.stats.task_instances.ratio * 100;
this.valueTasks = this.stats.tasks.ratio * 100;
},
/**
* Behavior when hidden
*/
hide(){
this.valueCases = 0;
this.valueTraces= 0;
this.valueTaskInstances = 0;
this.valueTasks = 0;
},
}, },
insights: {
type: Object,
required: false,
}
});
const pageAdmin = usePageAdminStore();
const mapPathStore = useMapPathStore();
const activeTrace = ref(0);
const currentMapFile = computed(() => pageAdmin.currentMapFile);
const clickedPathListIndex = ref(0);
const isBPMNOn = computed(() => mapPathStore.isBPMNOn);
const tab = ref('summary');
const valueCases = ref(0);
const valueTraces = ref(0);
const valueTaskInstances = ref(0);
const valueTasks = ref(0);
function onActiveTraceClick(clickedActiveTraceIndex) {
mapPathStore.clearAllHighlight();
activeTrace.value = clickedActiveTraceIndex;
mapPathStore.highlightClickedPath(clickedActiveTraceIndex, clickedPathListIndex.value);
}
function onPathOptionClick(clickedPath) {
clickedPathListIndex.value = clickedPath;
mapPathStore.highlightClickedPath(activeTrace.value, clickedPath);
}
function onResetTraceBtnClick() {
if(isBPMNOn.value) {
return;
}
clickedPathListIndex.value = undefined;
}
/**
* @param {string} newTab Summary or Insight
*/
function switchTab(newTab) {
tab.value = newTab;
}
/**
* @param {number} time use timeLabel.js
*/
function timeLabel(time){ // sonar-qube prevent super-linear runtime due to backtracking; change * to ?
//
const label = getTimeLabel(time).replace(/\s+/g, ' '); // 將所有連續空白字符壓縮為一個空白
const result = label.match(/^(\d+)\s?([a-zA-Z]+)$/); // add ^ and $ to meet sonar-qube need
return result;
}
/**
* @param {number} time use moment
*/
function moment(time){
return getMoment(time).format('YYYY-MM-DD HH:mm');
}
/**
* Number to percentage
* @param {number} val 原始數字
* @returns {string} 轉換完成的百分比字串
*/
function getPercentLabel(val){
if((val * 100).toFixed(1) >= 100) return `100%`;
else return `${(val * 100).toFixed(1)}%`;
}
/**
* Behavior when show
*/
function show(){
valueCases.value = props.stats.cases.ratio * 100;
valueTraces.value = props.stats.traces.ratio * 100;
valueTaskInstances.value = props.stats.task_instances.ratio * 100;
valueTasks.value = props.stats.tasks.ratio * 100;
}
/**
* Behavior when hidden
*/
function hide(){
valueCases.value = 0;
valueTraces.value = 0;
valueTaskInstances.value = 0;
valueTasks.value = 0;
} }
</script> </script>

View File

@@ -39,7 +39,7 @@
<p class="h2 mb-2">Trace #{{ showTraceId }}</p> <p class="h2 mb-2">Trace #{{ showTraceId }}</p>
<div class="h-36 w-full px-2 mb-2 border border-neutral-300 rounded"> <div class="h-36 w-full px-2 mb-2 border border-neutral-300 rounded">
<div class="h-full w-full"> <div class="h-full w-full">
<div id="cyTrace" ref="cyTrace" class="h-full min-w-full relative"></div> <div id="cyTrace" ref="cyTraceRef" class="h-full min-w-full relative"></div>
</div> </div>
</div> </div>
<div class="overflow-y-auto overflow-x-auto scrollbar w-full h-[calc(100%_-_200px)] infiniteTable " @scroll="handleScroll"> <div class="overflow-y-auto overflow-x-auto scrollbar w-full h-[calc(100%_-_200px)] infiniteTable " @scroll="handleScroll">
@@ -59,221 +59,224 @@
</div> </div>
</Sidebar> </Sidebar>
</template> </template>
<script> <script setup>
import { ref, computed, watch } from 'vue';
import { storeToRefs } from 'pinia'; import { storeToRefs } from 'pinia';
import { useLoadingStore } from '@/stores/loading'; import { useLoadingStore } from '@/stores/loading';
import { useAllMapDataStore } from '@/stores/allMapData'; import { useAllMapDataStore } from '@/stores/allMapData';
import cytoscapeMapTrace from '@/module/cytoscapeMapTrace.js'; import cytoscapeMapTrace from '@/module/cytoscapeMapTrace.js';
export default { const props = defineProps(['sidebarTraces', 'cases']);
props: ['sidebarTraces', 'cases'], const emit = defineEmits(['switch-Trace-Id']);
setup() {
const loadingStore = useLoadingStore();
const allMapDataStore = useAllMapDataStore();
const { isLoading } = storeToRefs(loadingStore);
const { infinit404, infiniteStart, traceId, traces, traceTaskSeq, infiniteFirstCases } = storeToRefs(allMapDataStore);
return {allMapDataStore, infinit404, infiniteStart, traceId, traces, traceTaskSeq, infiniteFirstCases, isLoading } const loadingStore = useLoadingStore();
}, const allMapDataStore = useAllMapDataStore();
data() { const { isLoading } = storeToRefs(loadingStore);
const { infinit404, infiniteStart, traceId, traces, traceTaskSeq, infiniteFirstCases } = storeToRefs(allMapDataStore);
const processMap = ref({
nodes:[],
edges:[],
});
const showTraceId = ref(null);
const infinitMaxItems = ref(false);
const infiniteData = ref([]);
const infiniteFinish = ref(true); // 無限滾動是否載入完成
const cyTraceRef = ref(null);
const traceTotal = computed(() => {
return traces.value.length;
});
const traceList = computed(() => {
const sum = traces.value.map(trace => trace.count).reduce((acc, cur) => acc + cur, 0);
const result = traces.value.map(trace => {
return { return {
processMap:{ id: trace.id,
nodes:[], value: progressWidth(Number(((trace.count / sum) * 100).toFixed(1))),
edges:[], count: trace.count.toLocaleString(),
}, base_count: trace.count,
showTraceId: null, ratio: getPercentLabel(trace.count / sum),
infinitMaxItems: false, };
infiniteData: [], })
infiniteFinish: true, // 無限滾動是否載入完成 return result;
} });
},
computed: { const caseData = computed(() => {
traceTotal: function() { const data = JSON.parse(JSON.stringify(infiniteData.value)); // 深拷貝原始 cases 的內容
return this.traces.length; data.forEach(item => {
}, item.attributes.forEach((attribute, index) => {
traceList: function() { item[`att_${index}`] = attribute.value; // 建立新的 key-value pair
const sum = this.traces.map(trace => trace.count).reduce((acc, cur) => acc + cur, 0); });
const result = this.traces.map(trace => { delete item.attributes; // 刪除原本的 attributes 屬性
return { })
id: trace.id, return data;
value: this.progressWidth(Number(((trace.count / sum) * 100).toFixed(1))), });
count: trace.count.toLocaleString(),
base_count: trace.count, const columnData = computed(() => {
ratio: this.getPercentLabel(trace.count / sum), const data = JSON.parse(JSON.stringify(props.cases)); // 深拷貝原始 cases 的內容
}; let result = [
}) { field: 'id', header: 'Case Id' },
return result; { field: 'started_at', header: 'Start time' },
}, { field: 'completed_at', header: 'End time' },
caseData: function() { ];
const data = JSON.parse(JSON.stringify(this.infiniteData)); // 深拷貝原始 cases 的內容 if(data.length !== 0){
data.forEach(item => { result = [
item.attributes.forEach((attribute, index) => { { field: 'id', header: 'Case Id' },
item[`att_${index}`] = attribute.value; // 建立新的 key-value pair { field: 'started_at', header: 'Start time' },
}); { field: 'completed_at', header: 'End time' },
delete item.attributes; // 刪除原本的 attributes 屬性 ...(data[0]?.attributes ?? []).map((att, index) => ({ field: `att_${index}`, header: att.key })),
}) ];
return data; }
}, return result
columnData: function() { });
const data = JSON.parse(JSON.stringify(this.cases)); // 深拷貝原始 cases 的內容
let result = [ watch(infinit404, (newValue) => {
{ field: 'id', header: 'Case Id' }, if(newValue === 404) infinitMaxItems.value = true;
{ field: 'started_at', header: 'Start time' }, });
{ field: 'completed_at', header: 'End time' },
]; watch(traceId, (newValue) => {
if(data.length !== 0){ showTraceId.value = newValue;
result = [ }, { immediate: true });
{ field: 'id', header: 'Case Id' },
{ field: 'started_at', header: 'Start time' }, watch(showTraceId, (newValue, oldValue) => {
{ field: 'completed_at', header: 'End time' }, const isScrollTop = document.querySelector('.infiniteTable');
...(data[0]?.attributes ?? []).map((att, index) => ({ field: `att_${index}`, header: att.key })), if(isScrollTop && typeof isScrollTop.scrollTop !== 'undefined') if(newValue !== oldValue) isScrollTop.scrollTop = 0;
]; });
watch(infiniteFirstCases, (newValue) => {
if(infiniteFirstCases.value) infiniteData.value = JSON.parse(JSON.stringify(newValue));
});
/**
* Number to percentage
* @param {number} val 原始數字
* @returns {string} 轉換完成的百分比字串
*/
function getPercentLabel(val){
if((val * 100).toFixed(1) >= 100) return `100%`;
else return `${(val * 100).toFixed(1)}%`;
}
/**
* set progress bar width
* @param {number} value 百分比數字
* @returns {string} 樣式的寬度設定
*/
function progressWidth(value){
return `width:${value}%;`
}
/**
* switch case data
* @param {number} id case id
* @param {number} count 總 case 數量
*/
async function switchCaseData(id, count) {
// 點同一筆 id 不要有動作
if(id == showTraceId.value) return;
isLoading.value = true; // 都要 loading 畫面
infinit404.value = null;
infinitMaxItems.value = false;
showTraceId.value = id;
infiniteStart.value = 0;
emit('switch-Trace-Id', {id: showTraceId.value, count: count}); // 傳遞到 Map index 再關掉 loading
}
/**
* 將 trace element nodes 資料彙整
*/
function setNodesData(){
// 避免每次渲染都重複累加
processMap.value.nodes = [];
// 將 api call 回來的資料帶進 node
traceTaskSeq.value.forEach((node, index) => {
processMap.value.nodes.push({
data: {
id: index,
label: node,
backgroundColor: '#CCE5FF',
bordercolor: '#003366',
shape: 'round-rectangle',
height: 80,
width: 100
} }
return result });
}, })
}, }
watch: {
infinite404: function(newValue) {
if(newValue === 404) this.infinitMaxItems = true;
},
traceId: {
handler(newValue) {
this.showTraceId = newValue;
},
immediate: true
},
showTraceId: function(newValue, oldValue) {
const isScrollTop = document.querySelector('.infiniteTable');
if(isScrollTop && typeof isScrollTop.scrollTop !== 'undefined') if(newValue !== oldValue) isScrollTop.scrollTop = 0;
},
infiniteFirstCases: function(newValue){
if(this.infiniteFirstCases) this.infiniteData = JSON.parse(JSON.stringify(newValue));
},
},
methods: {
/**
* Number to percentage
* @param {number} val 原始數字
* @returns {string} 轉換完成的百分比字串
*/
getPercentLabel(val){
if((val * 100).toFixed(1) >= 100) return `100%`;
else return `${(val * 100).toFixed(1)}%`;
},
/**
* set progress bar width
* @param {number} value 百分比數字
* @returns {string} 樣式的寬度設定
*/
progressWidth(value){
return `width:${value}%;`
},
/**
* switch case data
* @param {number} id case id
* @param {number} count 總 case 數量
*/
async switchCaseData(id, count) {
// 點同一筆 id 不要有動作
if(id == this.showTraceId) return;
this.isLoading = true; // 都要 loading 畫面
this.infinit404 = null;
this.infinitMaxItems = false;
this.showTraceId = id;
this.infiniteStart = 0;
this.$emit('switch-Trace-Id', {id: this.showTraceId, count: count}); // 傳遞到 Map index 再關掉 loading
},
/**
* 將 trace element nodes 資料彙整
*/
setNodesData(){
// 避免每次渲染都重複累加
this.processMap.nodes = [];
// 將 api call 回來的資料帶進 node
this.traceTaskSeq.forEach((node, index) => {
this.processMap.nodes.push({
data: {
id: index,
label: node,
backgroundColor: '#CCE5FF',
bordercolor: '#003366',
shape: 'round-rectangle',
height: 80,
width: 100
}
});
})
},
/**
* 將 trace edge line 資料彙整
*/
setEdgesData(){
this.processMap.edges = [];
this.traceTaskSeq.forEach((edge, index) => {
this.processMap.edges.push({
data: {
source: `${index}`,
target: `${index + 1}`,
lineWidth: 1,
style: 'solid'
}
});
});
// 關係線數量筆節點少一個
this.processMap.edges.pop();
},
/**
* create trace cytoscape's map
*/
createCy(){
const graphId = this.$refs.cyTrace;
this.setNodesData(); /**
this.setEdgesData(); * 將 trace edge line 資料彙整
cytoscapeMapTrace(this.processMap.nodes, this.processMap.edges, graphId); */
}, function setEdgesData(){
/** processMap.value.edges = [];
* create map traceTaskSeq.value.forEach((edge, index) => {
*/ processMap.value.edges.push({
async show() { data: {
this.isLoading = await true; // createCy 執行完關閉 source: `${index}`,
// 因 trace api 連動,所以關閉側邊欄時讓數值歸 traces 第一筆 id target: `${index + 1}`,
this.showTraceId = await this.traces[0]?.id; lineWidth: 1,
this.infiniteStart = await 0; style: 'solid'
this.setNodesData();
this.setEdgesData();
this.createCy();
this.isLoading = false;
},
/**
* 無限滾動: 監聽 scroll 有沒有滾到底部
* @param {element} event 滾動傳入的事件
*/
handleScroll(event) {
if(this.infinitMaxItems || this.cases.length < 20 || this.infiniteFinish === false) return;
const container = event.target;
const overScrollHeight = container.scrollTop + container.clientHeight >= container.scrollHeight;
if(overScrollHeight) this.fetchData();
},
/**
* 無限滾動: 滾到底後,要載入數據
*/
async fetchData() {
try {
this.isLoading = true;
this.infiniteFinish = false;
this.infiniteStart += 20;
await this.allMapDataStore.getTraceDetail();
this.infiniteData = await [...this.infiniteData, ...this.cases];
this.infiniteFinish = await true;
this.isLoading = await false;
} catch(error) {
console.error('Failed to load data:', error);
} }
} });
}, });
// 關係線數量筆節點少一個
processMap.value.edges.pop();
}
/**
* create trace cytoscape's map
*/
function createCy(){
const graphId = cyTraceRef.value;
setNodesData();
setEdgesData();
cytoscapeMapTrace(processMap.value.nodes, processMap.value.edges, graphId);
}
/**
* create map
*/
async function show() {
isLoading.value = await true; // createCy 執行完關閉
// 因 trace api 連動,所以關閉側邊欄時讓數值歸 traces 第一筆 id
showTraceId.value = await traces.value[0]?.id;
infiniteStart.value = await 0;
setNodesData();
setEdgesData();
createCy();
isLoading.value = false;
}
/**
* 無限滾動: 監聽 scroll 有沒有滾到底部
* @param {element} event 滾動傳入的事件
*/
function handleScroll(event) {
if(infinitMaxItems.value || props.cases.length < 20 || infiniteFinish.value === false) return;
const container = event.target;
const overScrollHeight = container.scrollTop + container.clientHeight >= container.scrollHeight;
if(overScrollHeight) fetchData();
}
/**
* 無限滾動: 滾到底後,要載入數據
*/
async function fetchData() {
try {
isLoading.value = true;
infiniteFinish.value = false;
infiniteStart.value += 20;
await allMapDataStore.getTraceDetail();
infiniteData.value = await [...infiniteData.value, ...props.cases];
infiniteFinish.value = await true;
isLoading.value = await false;
} catch(error) {
console.error('Failed to load data:', error);
}
} }
</script> </script>

View File

@@ -69,110 +69,118 @@
</Sidebar> </Sidebar>
</template> </template>
<script> <script setup>
import { ref, onMounted } from 'vue';
import { storeToRefs } from 'pinia';
import { useMapPathStore } from '@/stores/mapPathStore'; import { useMapPathStore } from '@/stores/mapPathStore';
import { mapState, mapActions, } from 'pinia';
export default {
props: {
sidebarView: {
type: Boolean,
require: true,
},
},
data() {
return {
selectFrequency: [
{ value:"total", label:"Total", disabled:false, },
{ value:"rel_freq", label:"Relative", disabled:false, },
{ value:"average", label:"Average", disabled:false, },
{ value:"median", label:"Median", disabled:false, },
{ value:"max", label:"Max", disabled:false, },
{ value:"min", label:"Min", disabled:false, },
{ value:"cases", label:"Number of cases", disabled:false, },
],
selectDuration:[
{ value:"total", label:"Total", disabled:false, },
{ value:"rel_duration", label:"Relative", disabled:false, },
{ value:"average", label:"Average", disabled:false, },
{ value:"median", label:"Median", disabled:false, },
{ value:"max", label:"Max", disabled:false, },
{ value:"min", label:"Min", disabled:false, },
],
curveStyle:'unbundled-bezier', // unbundled-bezier | taxi
mapType: 'processMap', // processMap | bpmn
dataLayerType: null, // freq | duration
dataLayerOption: null,
selectedFreq: '',
selectedDuration: '',
rank: 'LR', // 直向 TB | 橫向 LR
}
},
computed: {
...mapState(useMapPathStore, ['isBPMNOn']),
},
methods: {
/**
* switch map type
* @param {string} type 'processMap' | 'bpmn',可傳入以上任一。
*/
switchMapType(type) {
this.mapType = type;
this.$emit('switch-map-type', this.mapType);
},
/**
* switch curve style
* @param {string} style 直角 'unbundled-bezier' | 'taxi',可傳入以上任一。
*/
switchCurveStyles(style) {
this.curveStyle = style;
this.$emit('switch-curve-styles', this.curveStyle);
},
/**
* switch rank
* @param {string} rank 直向 'TB' | 橫向 'LR',可傳入以上任一。
*/
switchRank(rank) {
this.rank = rank;
this.$emit('switch-rank', this.rank);
},
/**
* switch Data Layoer Type or Option.
* @param {string} e 切換時傳入的選項
* @param {string} type 'freq' | 'duration',可傳入以上任一。
*/
switchDataLayerType(e, type){
let value = '';
if(e.target.value !== 'freq' && e.target.value !== 'duration') value = e.target.value; defineProps({
switch (type) { sidebarView: {
case 'freq': type: Boolean,
value = value || this.selectedFreq || 'total'; require: true,
this.dataLayerType = type;
this.dataLayerOption = value;
this.selectedFreq = value;
break;
case 'duration':
value = value || this.selectedDuration || 'total';
this.dataLayerType = type;
this.dataLayerOption = value;
this.selectedDuration = value;
break;
}
this.$emit('switch-data-layer-type', this.dataLayerType, this.dataLayerOption);
},
onProcessMapClick() {
this.setIsBPMNOn(false);
this.switchMapType('processMap');
},
onBPMNClick() {
this.setIsBPMNOn(true);
this.switchMapType('bpmn');
},
...mapActions(useMapPathStore, ['setIsBPMNOn',]),
}, },
mounted() { });
this.dataLayerType = 'freq';
this.dataLayerOption = 'total'; const emit = defineEmits([
} 'switch-map-type',
'switch-curve-styles',
'switch-rank',
'switch-data-layer-type',
]);
const mapPathStore = useMapPathStore();
const { isBPMNOn } = storeToRefs(mapPathStore);
const selectFrequency = ref([
{ value:"total", label:"Total", disabled:false, },
{ value:"rel_freq", label:"Relative", disabled:false, },
{ value:"average", label:"Average", disabled:false, },
{ value:"median", label:"Median", disabled:false, },
{ value:"max", label:"Max", disabled:false, },
{ value:"min", label:"Min", disabled:false, },
{ value:"cases", label:"Number of cases", disabled:false, },
]);
const selectDuration = ref([
{ value:"total", label:"Total", disabled:false, },
{ value:"rel_duration", label:"Relative", disabled:false, },
{ value:"average", label:"Average", disabled:false, },
{ value:"median", label:"Median", disabled:false, },
{ value:"max", label:"Max", disabled:false, },
{ value:"min", label:"Min", disabled:false, },
]);
const curveStyle = ref('unbundled-bezier'); // unbundled-bezier | taxi
const mapType = ref('processMap'); // processMap | bpmn
const dataLayerType = ref(null); // freq | duration
const dataLayerOption = ref(null);
const selectedFreq = ref('');
const selectedDuration = ref('');
const rank = ref('LR'); // 直向 TB | 橫向 LR
/**
* switch map type
* @param {string} type 'processMap' | 'bpmn',可傳入以上任一。
*/
function switchMapType(type) {
mapType.value = type;
emit('switch-map-type', mapType.value);
} }
/**
* switch curve style
* @param {string} style 直角 'unbundled-bezier' | 'taxi',可傳入以上任一。
*/
function switchCurveStyles(style) {
curveStyle.value = style;
emit('switch-curve-styles', curveStyle.value);
}
/**
* switch rank
* @param {string} rank 直向 'TB' | 橫向 'LR',可傳入以上任一。
*/
function switchRank(rankValue) {
rank.value = rankValue;
emit('switch-rank', rank.value);
}
/**
* switch Data Layoer Type or Option.
* @param {string} e 切換時傳入的選項
* @param {string} type 'freq' | 'duration',可傳入以上任一。
*/
function switchDataLayerType(e, type) {
let value = '';
if(e.target.value !== 'freq' && e.target.value !== 'duration') value = e.target.value;
switch (type) {
case 'freq':
value = value || selectedFreq.value || 'total';
dataLayerType.value = type;
dataLayerOption.value = value;
selectedFreq.value = value;
break;
case 'duration':
value = value || selectedDuration.value || 'total';
dataLayerType.value = type;
dataLayerOption.value = value;
selectedDuration.value = value;
break;
}
emit('switch-data-layer-type', dataLayerType.value, dataLayerOption.value);
}
function onProcessMapClick() {
mapPathStore.setIsBPMNOn(false);
switchMapType('processMap');
}
function onBPMNClick() {
mapPathStore.setIsBPMNOn(true);
switchMapType('bpmn');
}
onMounted(() => {
dataLayerType.value = 'freq';
dataLayerOption.value = 'total';
});
</script> </script>

View File

@@ -78,89 +78,85 @@
</section> </section>
</template> </template>
<script> <script setup>
import { ref, onMounted, } from 'vue';
import { useRoute } from 'vue-router';
import { storeToRefs } from 'pinia'; import { storeToRefs } from 'pinia';
import { useAllMapDataStore } from '@/stores/allMapData'; import { useAllMapDataStore } from '@/stores/allMapData';
import { getTimeLabel } from '@/module/timeLabel.js'; import { getTimeLabel } from '@/module/timeLabel.js';
import getMoment from 'moment'; import getMoment from 'moment';
export default { const route = useRoute();
setup() {
const allMapDataStore = useAllMapDataStore();
const { logId, stats, createFilterId } = storeToRefs(allMapDataStore);
return { logId, stats, createFilterId, allMapDataStore }; const allMapDataStore = useAllMapDataStore();
}, const { logId, stats, createFilterId } = storeToRefs(allMapDataStore);
data() {
return { const isPanel = ref(false);
isPanel: false, const statData = ref(null);
statData: null,
} /**
}, * Number to percentage
methods: { * @param {number} val 原始數字
/** * @returns {string} 轉換完成的百分比字串
* Number to percentage */
* @param {number} val 原始數字 function getPercentLabel(val){
* @returns {string} 轉換完成的百分比字串 if((val * 100).toFixed(1) >= 100) return 100;
*/ else return parseFloat((val * 100).toFixed(1));
getPercentLabel(val){ }
if((val * 100).toFixed(1) >= 100) return 100;
else return parseFloat((val * 100).toFixed(1)); /**
* setting stats data
*/
function getStatData() {
statData.value = {
cases: {
count: stats.value.cases.count.toLocaleString('en-US'),
total: stats.value.cases.total.toLocaleString('en-US'),
ratio: getPercentLabel(stats.value.cases.ratio)
}, },
/** traces: {
* setting stats data count: stats.value.traces.count.toLocaleString('en-US'),
*/ total: stats.value.traces.total.toLocaleString('en-US'),
getStatData() { ratio: getPercentLabel(stats.value.traces.ratio)
this.statData = { },
cases: { task_instances: {
count: this.stats.cases.count.toLocaleString('en-US'), count: stats.value.task_instances.count.toLocaleString('en-US'),
total: this.stats.cases.total.toLocaleString('en-US'), total: stats.value.task_instances.total.toLocaleString('en-US'),
ratio: this.getPercentLabel(this.stats.cases.ratio) ratio: getPercentLabel(stats.value.task_instances.ratio)
}, },
traces: { tasks: {
count: this.stats.traces.count.toLocaleString('en-US'), count: stats.value.tasks.count.toLocaleString('en-US'),
total: this.stats.traces.total.toLocaleString('en-US'), total: stats.value.tasks.total.toLocaleString('en-US'),
ratio: this.getPercentLabel(this.stats.traces.ratio) ratio: getPercentLabel(stats.value.tasks.ratio)
}, },
task_instances: { started_at: getMoment(stats.value.started_at).format('YYYY-MM-DD HH:mm'),
count: this.stats.task_instances.count.toLocaleString('en-US'), completed_at: getMoment(stats.value.completed_at).format('YYYY-MM-DD HH:mm'),
total: this.stats.task_instances.total.toLocaleString('en-US'), case_duration: {
ratio: this.getPercentLabel(this.stats.task_instances.ratio) min: getTimeLabel(stats.value.case_duration.min),
}, max: getTimeLabel(stats.value.case_duration.max),
tasks: { average: getTimeLabel(stats.value.case_duration.average),
count: this.stats.tasks.count.toLocaleString('en-US'), median: getTimeLabel(stats.value.case_duration.median),
total: this.stats.tasks.total.toLocaleString('en-US'),
ratio: this.getPercentLabel(this.stats.tasks.ratio)
},
started_at: getMoment(this.stats.started_at).format('YYYY-MM-DD HH:mm'),
completed_at: getMoment(this.stats.completed_at).format('YYYY-MM-DD HH:mm'),
case_duration: {
min: getTimeLabel(this.stats.case_duration.min),
max: getTimeLabel(this.stats.case_duration.max),
average: getTimeLabel(this.stats.case_duration.average),
median: getTimeLabel(this.stats.case_duration.median),
}
}
} }
},
async mounted() {
const params = this.$route.params;
const file = this.$route.meta.file;
const isCheckPage = this.$route.name.includes('Check');
switch (params.type) {
case 'log':
this.logId = isCheckPage ? file.parent.id : params.fileId;
break;
case 'filter':
this.createFilterId = isCheckPage ? file.parent.id : params.fileId;
break;
}
await this.allMapDataStore.getAllMapData();
await this.getStatData();
this.isPanel = false; // 預設不打開
} }
} }
onMounted(async () => {
const params = route.params;
const file = route.meta.file;
const isCheckPage = route.name.includes('Check');
switch (params.type) {
case 'log':
logId.value = isCheckPage ? file.parent.id : params.fileId;
break;
case 'filter':
createFilterId.value = isCheckPage ? file.parent.id : params.fileId;
break;
}
await allMapDataStore.getAllMapData();
await getStatData();
isPanel.value = false; // 預設不打開
});
</script> </script>
<style scoped> <style scoped>
@reference "../../assets/tailwind.css"; @reference "../../assets/tailwind.css";

View File

@@ -1,5 +1,5 @@
<template> <template>
<Dialog :visible="uploadModal" modal :style="{ width: '90vw', height: '90vh' }" :contentClass="contentClass" @update:visible="$emit('closeModal', $event)"> <Dialog :visible="uploadModal" modal :style="{ width: '90vw', height: '90vh' }" :contentClass="contentClass" @update:visible="emit('closeModal', $event)">
<template #header> <template #header>
<div class="py-5"> <div class="py-5">
</div> </div>
@@ -14,70 +14,61 @@
</label> </label>
</Dialog> </Dialog>
</template> </template>
<script> <script setup>
import IconUploarding from '../icons/IconUploarding.vue'; import { onBeforeUnmount, } from 'vue';
import { uploadFailedFirst } from '@/module/alertModal.js'
import { storeToRefs } from 'pinia'; import { storeToRefs } from 'pinia';
import IconUploarding from '../icons/IconUploarding.vue';
import { uploadFailedFirst } from '@/module/alertModal.js';
import { useFilesStore } from '@/stores/files'; import { useFilesStore } from '@/stores/files';
export default { defineProps(['uploadModal']);
props: ['uploadModal'], const emit = defineEmits(['closeModal']);
setup() {
const filesStore = useFilesStore();
const { uploadFileName } = storeToRefs(filesStore);
return { filesStore, uploadFileName } const filesStore = useFilesStore();
}, const { uploadFileName } = storeToRefs(filesStore);
data() {
return {
contentClass: 'h-full',
}
},
components: {
IconUploarding,
},
methods: {
/**
* 上傳的行為
* @param {event} event input 傳入的事件
*/
async upload(event) {
const fileInput = document.getElementById('uploadFiles');
const target = event.target;
const formData = new FormData();
let uploadFile;
// 判斷是否有檔案 const contentClass = 'h-full';
if(target && target.files) {
uploadFile = target.files[0]; /**
} * 上傳的行為
// 判斷檔案大小不可超過 90MB (90(MB)*1024(KB)*1024(Bytes)=94,371,840) * @param {event} event input 傳入的事件
if(uploadFile.size >= 94371840) { */
fileInput.value = ''; async function upload(event) {
return uploadFailedFirst('size'); const fileInput = document.getElementById('uploadFiles');
} const target = event.target;
// 將檔案加進 formData欄位一定要「csv」 const formData = new FormData();
formData.append('csv', uploadFile); let uploadFile;
// 呼叫第一階段上傳 API
if(uploadFile) { // 判斷是否有檔案
await this.filesStore.upload(formData); if(target && target.files) {
} uploadFile = target.files[0];
if (uploadFile.name.endsWith('.csv')) { }
this.uploadFileName = uploadFile.name.slice(0, -4); // 判斷檔案大小不可超過 90MB (90(MB)*1024(KB)*1024(Bytes)=94,371,840)
} else { if(uploadFile.size >= 94371840) {
// 處理錯誤或無效的文件格式 fileInput.value = '';
this.uploadFileName = ''; // 或者其他適合的錯誤處理方式 return uploadFailedFirst('size');
} }
// 清除選擇文件 // 將檔案加進 formData欄位一定要「csv」
if(fileInput) { formData.append('csv', uploadFile);
fileInput.value = ''; // 呼叫第一階段上傳 API
} if(uploadFile) {
} await filesStore.upload(formData);
}, }
beforeUnmount() { if (uploadFile.name.endsWith('.csv')) {
this.$emit('closeModal', false); uploadFileName.value = uploadFile.name.slice(0, -4);
} else {
// 處理錯誤或無效的文件格式
uploadFileName.value = ''; // 或者其他適合的錯誤處理方式
}
// 清除選擇文件
if(fileInput) {
fileInput.value = '';
} }
} }
onBeforeUnmount(() => {
emit('closeModal', false);
});
</script> </script>
<style scoped> <style scoped>
.loader-arrow-upward { .loader-arrow-upward {

View File

@@ -19,10 +19,11 @@
</div> </div>
</template> </template>
<script> <script setup>
import { ref, } from 'vue'; import { ref, onMounted, } from 'vue';
import { useRoute } from 'vue-router';
import { storeToRefs, } from 'pinia'; import { storeToRefs, } from 'pinia';
import i18next from '@/i18n/i18n'; import emitter from '@/utils/emitter';
import { useLoginStore } from '@/stores/login'; import { useLoginStore } from '@/stores/login';
import { useAcctMgmtStore } from '@/stores/acctMgmt'; import { useAcctMgmtStore } from '@/stores/acctMgmt';
import DspLogo from '@/components/icons/DspLogo.vue'; import DspLogo from '@/components/icons/DspLogo.vue';
@@ -30,64 +31,44 @@ import { useAllMapDataStore } from '@/stores/allMapData';
import { useConformanceStore } from '@/stores/conformance'; import { useConformanceStore } from '@/stores/conformance';
import { leaveFilter, leaveConformance } from '@/module/alertModal.js'; import { leaveFilter, leaveConformance } from '@/module/alertModal.js';
export default { const route = useRoute();
data() {
return {
showMember: false,
i18next: i18next,
}
},
setup() {
const store = useLoginStore();
const { logOut } = store;
const allMapDataStore = useAllMapDataStore();
const conformanceStore = useConformanceStore();
const acctMgmtStore = useAcctMgmtStore();
const { tempFilterId, temporaryData, postRuleData, ruleData } = storeToRefs(allMapDataStore);
const { conformanceLogTempCheckId, conformanceFilterTempCheckId, conformanceFileName } = storeToRefs(conformanceStore);
const isHeadHovered = ref(false);
const toggleIsAcctMenuOpen = () => { const store = useLoginStore();
acctMgmtStore.toggleIsAcctMenuOpen(); const { logOut } = store;
} const allMapDataStore = useAllMapDataStore();
const conformanceStore = useConformanceStore();
const acctMgmtStore = useAcctMgmtStore();
const { tempFilterId, temporaryData, postRuleData, ruleData } = storeToRefs(allMapDataStore);
const { conformanceLogTempCheckId, conformanceFilterTempCheckId, conformanceFileName } = storeToRefs(conformanceStore);
return { logOut, temporaryData, tempFilterId, const isHeadHovered = ref(false);
postRuleData, ruleData, const showMember = ref(false);
conformanceLogTempCheckId,
conformanceFilterTempCheckId, const toggleIsAcctMenuOpen = () => {
allMapDataStore, conformanceStore, acctMgmtStore.toggleIsAcctMenuOpen();
conformanceFileName, };
toggleIsAcctMenuOpen,
isHeadHovered, /**
}; * 登出的行為
}, */
components: { function logOutButton() {
DspLogo, if ((route.name === 'Map' || route.name === 'CheckMap') && tempFilterId.value) {
}, // 傳給 Map通知 Sidebar 要關閉。
methods: { emitter.emit('leaveFilter', false);
/** leaveFilter(false, allMapDataStore.addFilterId, false, logOut)
* 登出的行為 } else if((route.name === 'Conformance' || route.name === 'CheckConformance')
*/ && (conformanceLogTempCheckId.value || conformanceFilterTempCheckId.value)) {
logOutButton() { leaveConformance(false, conformanceStore.addConformanceCreateCheckId, false, logOut)
if ((this.$route.name === 'Map' || this.$route.name === 'CheckMap') && this.tempFilterId) { } else {
// 傳給 Map通知 Sidebar 要關閉。 logOut();
this.$emitter.emit('leaveFilter', false);
leaveFilter(false, this.allMapDataStore.addFilterId, false, this.logOut)
} else if((this.$route.name === 'Conformance' || this.$route.name === 'CheckConformance')
&& (this.conformanceLogTempCheckId || this.conformanceFilterTempCheckId)) {
leaveConformance(false, this.conformanceStore.addConformanceCreateCheckId, false, this.logOut)
} else {
this.logOut();
}
},
},
mounted() {
if (this.$route.name === 'Login' || this.$route.name === 'NotFound404') {
this.showMember = false
} else {
this.showMember = true;
}
} }
} }
onMounted(() => {
if (route.name === 'Login' || route.name === 'NotFound404') {
showMember.value = false
} else {
showMember.value = true;
}
});
</script> </script>

View File

@@ -44,8 +44,11 @@
</div> </div>
</nav> </nav>
</template> </template>
<script> <script setup>
import { storeToRefs, mapState, mapActions, } from 'pinia'; import { ref, computed, watch, onMounted, } from 'vue';
import { useRoute, useRouter } from 'vue-router';
import { storeToRefs, } from 'pinia';
import emitter from '@/utils/emitter';
import { useFilesStore } from '@/stores/files'; import { useFilesStore } from '@/stores/files';
import { useAllMapDataStore } from '@/stores/allMapData'; import { useAllMapDataStore } from '@/stores/allMapData';
import { useConformanceStore } from '@/stores/conformance'; import { useConformanceStore } from '@/stores/conformance';
@@ -57,296 +60,274 @@ import { saveFilter, savedSuccessfully, saveConformance } from '@/module/alertMo
import UploadModal from './File/UploadModal.vue'; import UploadModal from './File/UploadModal.vue';
import AcctMenu from './AccountMenu/AcctMenu.vue'; import AcctMenu from './AccountMenu/AcctMenu.vue';
export default { const route = useRoute();
setup() { const router = useRouter();
const store = useFilesStore();
const allMapDataStore = useAllMapDataStore();
const conformanceStore = useConformanceStore();
const { logId, tempFilterId, createFilterId, filterName, postRuleData, isUpdateFilter } = storeToRefs(allMapDataStore);
const { conformanceRuleData, conformanceLogId, conformanceFilterId,
conformanceLogTempCheckId, conformanceFilterTempCheckId,
conformanceLogCreateCheckId, conformanceFilterCreateCheckId,
isUpdateConformance, conformanceFileName
} = storeToRefs(conformanceStore);
return { const store = useFilesStore();
store, allMapDataStore, logId, tempFilterId, createFilterId, const allMapDataStore = useAllMapDataStore();
filterName, postRuleData, isUpdateFilter, conformanceStore, conformanceRuleData, const conformanceStore = useConformanceStore();
conformanceLogId, conformanceFilterId, conformanceLogTempCheckId, const mapCompareStore = useMapCompareStore();
conformanceFilterTempCheckId, conformanceLogCreateCheckId, const pageAdminStore = usePageAdminStore();
conformanceFilterCreateCheckId, isUpdateConformance, conformanceFileName,
};
},
components: {
IconSearch,
IconSetting,
UploadModal,
AcctMenu,
},
data() {
return {
mapCompareStore: useMapCompareStore(),
showNavbarBreadcrumb: false,
navViewData:
{
// 舉例FILES: ['ALL', 'DISCOVER', 'COMPARE', 'DESIGN', 'SIMULATION'],
FILES: ['ALL', 'DISCOVER', 'COMPARE'],
// 舉例DISCOVER: ['MAP', 'CONFORMANCE', 'PERFORMANCE', 'DATA']
DISCOVER: ['MAP', 'CONFORMANCE', 'PERFORMANCE'],
// 舉例COMPARE: ['PROCESS MAP', 'DASHBOARD']
COMPARE: ['MAP', 'PERFORMANCE'],
'ACCOUNT MANAGEMENT': [],
'MY ACCOUNT': [],
},
navViewName: 'FILES',
uploadModal: false,
};
},
computed: {
disabledSave: function () {
switch (this.$route.name) {
case 'Map':
case 'CheckMap':
// 沒有 filter Id, 沒有暫存 tempFilterId Id 就不能存檔
return !this.tempFilterId;
case 'Conformance':
case 'CheckConformance':
return !(this.conformanceFilterTempCheckId || this.conformanceLogTempCheckId);
}
},
showIcon: function() {
let result = true;
result = !['FILES', 'UPLOAD'].includes(this.navViewName); const { logId, tempFilterId, createFilterId, filterName, postRuleData, isUpdateFilter } = storeToRefs(allMapDataStore);
return result; const { conformanceRuleData, conformanceLogId, conformanceFilterId,
}, conformanceLogTempCheckId, conformanceFilterTempCheckId,
noShowSaveButton: function() { conformanceLogCreateCheckId, conformanceFilterCreateCheckId,
return this.navViewName === 'UPLOAD' || this.navViewName === 'COMPARE' || isUpdateConformance, conformanceFileName
this.navViewName === 'ACCOUNT MANAGEMENT' || } = storeToRefs(conformanceStore);
this.activePage === 'PERFORMANCE'; const { activePage, pendingActivePage, activePageComputedByRoute, shouldKeepPreviousPage } = storeToRefs(pageAdminStore);
}, const { setPendingActivePage, setPreviousPage, setActivePage, setActivePageComputedByRoute, setIsPagePendingBoolean } = pageAdminStore;
...mapState(usePageAdminStore, [
'activePage',
'pendingActivePage',
'activePageComputedByRoute',
'shouldKeepPreviousPage',
]),
},
watch: {
'$route':'getNavViewName',
filterName: function(newVal,) {
this.filterName = newVal;
},
},
mounted() {
this.handleNavItemBtn();
if(this.$route.params.type === 'filter') {
this.createFilterId= this.$route.params.fileId;
}
this.showNavbarBreadcrumb = this.$route.matched[0].name !== ('AuthContainer');
this.getNavViewName();
},
methods: {
/**
* switch navbar item
* @param {event} event 選取 Navbar 選項後傳入的值
*/
onNavItemBtnClick(event) {
let type;
let fileId;
let isCheckPage;
const navItemCandidate = event.target.innerText;
this.setPendingActivePage(navItemCandidate); const showNavbarBreadcrumb = ref(false);
const navViewData = {
// 舉例FILES: ['ALL', 'DISCOVER', 'COMPARE', 'DESIGN', 'SIMULATION'],
FILES: ['ALL', 'DISCOVER', 'COMPARE'],
// 舉例DISCOVER: ['MAP', 'CONFORMANCE', 'PERFORMANCE', 'DATA']
DISCOVER: ['MAP', 'CONFORMANCE', 'PERFORMANCE'],
// 舉例COMPARE: ['PROCESS MAP', 'DASHBOARD']
COMPARE: ['MAP', 'PERFORMANCE'],
'ACCOUNT MANAGEMENT': [],
'MY ACCOUNT': [],
};
const navViewName = ref('FILES');
const uploadModal = ref(false);
switch (this.navViewName) { const disabledSave = computed(() => {
case 'FILES': switch (route.name) {
this.store.filesTag = navItemCandidate; case 'Map':
break; case 'CheckMap':
case 'DISCOVER': // 沒有 filter Id, 沒有暫存 tempFilterId Id 就不能存檔
type = this.$route.params.type; return !tempFilterId.value;
fileId = this.$route.params.fileId; case 'Conformance':
isCheckPage = this.$route.name.includes('Check'); case 'CheckConformance':
return !(conformanceFilterTempCheckId.value || conformanceLogTempCheckId.value);
}
});
switch (navItemCandidate) { const showIcon = computed(() => {
case 'MAP': return !['FILES', 'UPLOAD'].includes(navViewName.value);
if(isCheckPage) { });
this.$router.push({name: 'CheckMap', params: { type: type, fileId: fileId }});
} const noShowSaveButton = computed(() => {
else { return navViewName.value === 'UPLOAD' || navViewName.value === 'COMPARE' ||
this.$router.push({name: 'Map', params: { type: type, fileId: fileId }}); navViewName.value === 'ACCOUNT MANAGEMENT' ||
} activePage.value === 'PERFORMANCE';
break; });
case 'CONFORMANCE':
if(isCheckPage) { // Beware of Swal popup, it might disturb which is the current active page watch(() => route, () => {
this.$router.push({name: 'CheckConformance', params: { type: type, fileId: fileId }}); getNavViewName();
} }, { deep: true });
else { // Beware of Swal popup, it might disturb which is the current active page
this.$router.push({name: 'Conformance', params: { type: type, fileId: fileId }}); watch(filterName, (newVal) => {
} filterName.value = newVal;
break });
case 'PERFORMANCE':
if(isCheckPage) { /**
this.$router.push({name: 'CheckPerformance', params: { type: type, fileId: fileId }}); * switch navbar item
} * @param {event} event 選取 Navbar 選項後傳入的值
else { */
this.$router.push({name: 'Performance', params: { type: type, fileId: fileId }}); function onNavItemBtnClick(event) {
} let type;
break; let fileId;
let isCheckPage;
const navItemCandidate = event.target.innerText;
setPendingActivePage(navItemCandidate);
switch (navViewName.value) {
case 'FILES':
store.filesTag = navItemCandidate;
break;
case 'DISCOVER':
type = route.params.type;
fileId = route.params.fileId;
isCheckPage = route.name.includes('Check');
switch (navItemCandidate) {
case 'MAP':
if(isCheckPage) {
router.push({name: 'CheckMap', params: { type: type, fileId: fileId }});
}
else {
router.push({name: 'Map', params: { type: type, fileId: fileId }});
} }
break; break;
case 'COMPARE': case 'CONFORMANCE':
switch (navItemCandidate) { if(isCheckPage) { // Beware of Swal popup, it might disturb which is the current active page
case 'MAP': router.push({name: 'CheckConformance', params: { type: type, fileId: fileId }});
this.$router.push({name: 'MapCompare', params: this.mapCompareStore.routeParam});
break;
case 'PERFORMANCE':
this.$router.push({name: 'CompareDashboard', params: this.mapCompareStore.routeParam});
break;
default:
break;
} }
}; else { // Beware of Swal popup, it might disturb which is the current active page
}, router.push({name: 'Conformance', params: { type: type, fileId: fileId }});
/**
* Based on the route.name, decide the navViewName.
* @returns {string} the string of navigation name to return
*/
getNavViewName() {
const name = this.$route.name;
let valueToSet;
if(this.$route.name === 'NotFound404') {
return;
}
// 說明this.$route.matched[1] 表示當前路由匹配的第二個路由記錄
this.navViewName = this.$route.matched[1].name.toUpperCase();
this.store.filesTag = 'ALL';
switch (this.navViewName) {
case 'FILES':
valueToSet = this.navItemCandidate;
break;
case 'DISCOVER':
switch (name) {
case 'Map':
case 'CheckMap':
valueToSet = 'MAP';
break;
case 'Conformance':
case 'CheckConformance':
valueToSet = 'CONFORMANCE';
break;
case 'Performance':
case 'CheckPerformance':
valueToSet = 'PERFORMANCE';
break;
} }
break; break
case 'COMPARE': case 'PERFORMANCE':
switch(name) { if(isCheckPage) {
case 'dummy': router.push({name: 'CheckPerformance', params: { type: type, fileId: fileId }});
case 'CompareDashboard': }
valueToSet = 'DASHBOARD'; else {
break; router.push({name: 'Performance', params: { type: type, fileId: fileId }});
default:
break;
} }
break; break;
} }
break;
// Frontend is not sure which button will the user press on the modal, case 'COMPARE':
// so here we need to save to a pending state switch (navItemCandidate) {
// 前端無法確定用戶稍後會按下彈窗上的哪個按鈕(取消還是確認、儲存) case 'MAP':
// 因此我們需要將其保存到待處理狀態 router.push({name: 'MapCompare', params: mapCompareStore.routeParam});
if(!this.shouldKeepPreviousPage) { // 若使用者不是按下取消按鈕或是點選按鈕時 break;
this.setPendingActivePage(valueToSet); case 'PERFORMANCE':
} router.push({name: 'CompareDashboard', params: mapCompareStore.routeParam});
break;
return valueToSet;
},
/**
* Save button' modal
*/
async saveModal() {
// 協助判斷 MAP, CONFORMANCE 儲存有「送出」或「取消」。
// 傳給 Map通知 Sidebar 要關閉。
this.$emitter.emit('saveModal', false);
switch (this.$route.name) {
case 'Map':
await this.handleMapSave();
break;
case 'CheckMap':
await this.handleCheckMapSave();
break;
case 'Conformance':
case 'CheckConformance':
await this.handleConformanceSave();
break;
default: default:
break; break;
} }
}, };
/**
* Set nav item button background color in case the variable is an empty string
*/
handleNavItemBtn() {
if(this.activePageComputedByRoute === "") {
this.setActivePageComputedByRoute(this.$route.matched[this.$route.matched.length - 1].name);
}
},
async handleMapSave() {
if (this.createFilterId) {
await this.allMapDataStore.updateFilter();
if (this.isUpdateFilter) {
await savedSuccessfully(this.filterName);
}
} else if (this.logId) {
const isSaved = await saveFilter(this.allMapDataStore.addFilterId);
if (isSaved) {
this.setActivePage('MAP');
await this.$router.push(`/discover/filter/${this.createFilterId}/map`);
}
}
},
async handleCheckMapSave() {
const isSaved = await saveFilter(this.allMapDataStore.addFilterId);
if (isSaved) {
this.setActivePage('MAP');
await this.$router.push(`/discover/filter/${this.createFilterId}/map`);
}
},
async handleConformanceSave() {
if (this.conformanceFilterCreateCheckId || this.conformanceLogCreateCheckId) {
await this.conformanceStore.updateConformance();
if (this.isUpdateConformance) {
await savedSuccessfully(this.conformanceFileName);
}
} else {
const isSaved = await saveConformance(this.conformanceStore.addConformanceCreateCheckId);
if (isSaved) {
if (this.conformanceLogId) {
this.setActivePage('CONFORMANCE');
await this.$router.push(`/discover/conformance/log/${this.conformanceLogCreateCheckId}/conformance`);
} else if (this.conformanceFilterId) {
this.setActivePage('CONFORMANCE');
await this.$router.push(`/discover/conformance/filter/${this.conformanceFilterCreateCheckId}/conformance`);
}
}
}
},
...mapActions(usePageAdminStore, [
'setPendingActivePage',
'setPreviousPage',
'setActivePage',
'setActivePageComputedByRoute',
'setIsPagePendingBoolean',
],),
},
} }
/**
* Based on the route.name, decide the navViewName.
* @returns {string} the string of navigation name to return
*/
function getNavViewName() {
const name = route.name;
let valueToSet;
if(route.name === 'NotFound404' || !route.matched[1]) {
return;
}
// 說明route.matched[1] 表示當前路由匹配的第二個路由記錄
navViewName.value = route.matched[1].name.toUpperCase();
store.filesTag = 'ALL';
switch (navViewName.value) {
case 'FILES':
valueToSet = activePage.value;
break;
case 'DISCOVER':
switch (name) {
case 'Map':
case 'CheckMap':
valueToSet = 'MAP';
break;
case 'Conformance':
case 'CheckConformance':
valueToSet = 'CONFORMANCE';
break;
case 'Performance':
case 'CheckPerformance':
valueToSet = 'PERFORMANCE';
break;
}
break;
case 'COMPARE':
switch(name) {
case 'dummy':
case 'CompareDashboard':
valueToSet = 'DASHBOARD';
break;
default:
break;
}
break;
}
// Frontend is not sure which button will the user press on the modal,
// so here we need to save to a pending state
// 前端無法確定用戶稍後會按下彈窗上的哪個按鈕(取消還是確認、儲存)
// 因此我們需要將其保存到待處理狀態
if(!shouldKeepPreviousPage.value) { // 若使用者不是按下取消按鈕或是點選按鈕時
setPendingActivePage(valueToSet);
}
return valueToSet;
}
/**
* Save button' modal
*/
async function saveModal() {
// 協助判斷 MAP, CONFORMANCE 儲存有「送出」或「取消」。
// 傳給 Map通知 Sidebar 要關閉。
emitter.emit('saveModal', false);
switch (route.name) {
case 'Map':
await handleMapSave();
break;
case 'CheckMap':
await handleCheckMapSave();
break;
case 'Conformance':
case 'CheckConformance':
await handleConformanceSave();
break;
default:
break;
}
}
/**
* Set nav item button background color in case the variable is an empty string
*/
function handleNavItemBtn() {
if(activePageComputedByRoute.value === "") {
setActivePageComputedByRoute(route.matched[route.matched.length - 1].name);
}
}
async function handleMapSave() {
if (createFilterId.value) {
await allMapDataStore.updateFilter();
if (isUpdateFilter.value) {
await savedSuccessfully(filterName.value);
}
} else if (logId.value) {
const isSaved = await saveFilter(allMapDataStore.addFilterId);
if (isSaved) {
setActivePage('MAP');
await router.push(`/discover/filter/${createFilterId.value}/map`);
}
}
}
async function handleCheckMapSave() {
const isSaved = await saveFilter(allMapDataStore.addFilterId);
if (isSaved) {
setActivePage('MAP');
await router.push(`/discover/filter/${createFilterId.value}/map`);
}
}
async function handleConformanceSave() {
if (conformanceFilterCreateCheckId.value || conformanceLogCreateCheckId.value) {
await conformanceStore.updateConformance();
if (isUpdateConformance.value) {
await savedSuccessfully(conformanceFileName.value);
}
} else {
const isSaved = await saveConformance(conformanceStore.addConformanceCreateCheckId);
if (isSaved) {
if (conformanceLogId.value) {
setActivePage('CONFORMANCE');
await router.push(`/discover/conformance/log/${conformanceLogCreateCheckId.value}/conformance`);
} else if (conformanceFilterId.value) {
setActivePage('CONFORMANCE');
await router.push(`/discover/conformance/filter/${conformanceFilterCreateCheckId.value}/conformance`);
}
}
}
}
onMounted(() => {
handleNavItemBtn();
if(route.params.type === 'filter') {
createFilterId.value = route.params.fileId;
}
showNavbarBreadcrumb.value = route.matched[0].name !== ('AuthContainer');
getNavViewName();
});
</script> </script>
<style scoped> <style scoped>
#searchFiles::-webkit-search-cancel-button{ #searchFiles::-webkit-search-cancel-button{

View File

@@ -16,14 +16,7 @@
</form> </form>
</template> </template>
<script> <script setup>
import IconSearch from '@/components/icons/IconSearch.vue'; import IconSearch from '@/components/icons/IconSearch.vue';
import IconSetting from '@/components/icons/IconSetting.vue'; import IconSetting from '@/components/icons/IconSetting.vue';
export default {
components: {
IconSearch,
IconSetting
}
}
</script> </script>

View File

@@ -39,422 +39,320 @@
</div> </div>
</template> </template>
<script> <script setup>
//:value="tUnits[unit].val.toString().padStart(2, '0')" import { ref, computed, watch, onMounted } from 'vue';
import { mapActions, } from 'pinia'; import emitter from '@/utils/emitter';
import { useConformanceInputStore } from '@/stores/conformanceInput';
export default { const props = defineProps({
props: { max: {
max: { type: Number,
type: Number, default: 0,
default: 0, required: true,
required: true, validator(value) {
validator(value) { return value >= 0;
return value >= 0;
},
}, },
min: {
type: Number,
default: 0,
required: true,
validator(value) {
return value >= 0;
},
},
updateMax: {
type: Number,
required: false,
validator(value) {
return value >= 0;
},
},
updateMin: {
type: Number,
required: false,
validator(value) {
return value >= 0;
},
},
size: {
type: String,
default: false,
required: true,
},
value: {
type: Number,
required: false,
validator(value) {
return value >= 0;
},
}
}, },
data() { min: {
type: Number,
default: 0,
required: true,
validator(value) {
return value >= 0;
},
},
updateMax: {
type: Number,
required: false,
validator(value) {
return value >= 0;
},
},
updateMin: {
type: Number,
required: false,
validator(value) {
return value >= 0;
},
},
size: {
type: String,
default: false,
required: true,
},
value: {
type: Number,
required: false,
validator(value) {
return value >= 0;
},
}
});
const emit = defineEmits(['total-seconds']);
const display = ref('dhms');
const seconds = ref(0);
const minutes = ref(0);
const hours = ref(0);
const days = ref(0);
const maxDays = ref(0);
const minDays = ref(0);
const totalSeconds = ref(0);
const maxTotal = ref(null);
const minTotal = ref(null);
const inputTypes = ref([]);
const lastInput = ref(null);
const openTimeSelect = ref(false);
const tUnits = computed({
get() {
return { return {
display: 'dhms', // d: day; h: hour; m: month; s: second. s: { dsp: 's', inc: 1, val: seconds.value, max: 59, rate: 1, min: 0 },
seconds: 0, m: { dsp: 'm', inc: 1, val: minutes.value, max: 59, rate: 60, min: 0 },
minutes: 0, h: { dsp: 'h', inc: 1, val: hours.value, max: 23, rate: 3600, min: 0 },
hours: 0, d: { dsp: 'd', inc: 1, val: days.value, max: maxDays.value, rate: 86400, min: minDays.value }
days: 0,
maxDays: 0,
minDays: 0,
totalSeconds: 0,
maxTotal: null,
minTotal: null,
inputTypes: [],
lastInput: null,
openTimeSelect: false,
}; };
}, },
computed: { set(newValues) {
tUnits: { for (const unit in newValues) {
get() { switch (unit) {
return { case 's': seconds.value = newValues[unit].val; break;
s: { dsp: 's', inc: 1, val: this.seconds, max: 59, rate: 1, min: 0 }, case 'm': minutes.value = newValues[unit].val; break;
m: { dsp: 'm', inc: 1, val: this.minutes, max: 59, rate: 60, min: 0 }, case 'h': hours.value = newValues[unit].val; break;
h: { dsp: 'h', inc: 1, val: this.hours, max: 23, rate: 3600, min: 0 }, case 'd': days.value = newValues[unit].val; break;
d: { dsp: 'd', inc: 1, val: this.days, max: this.maxDays, rate: 86400, min: this.minDays } }
}; const input = document.querySelector(`[data-tunit="${unit}"]`);
}, if (input) {
set(newValues) { input.value = newValues[unit].val.toString();
// When the input value exceeds the acceptable maximum value, the front end }
// should set the value to be equal to the maximum value.
// 當輸入的數值大於可接受的最大值時,前端要將數值設定成等同於最大值
for (const unit in newValues) {
this[unit] = newValues[unit].val;
const input = document.querySelector(`[data-tunit="${unit}"]`);
if (input) {
input.value = newValues[unit].val.toString();
}
}
},
},
inputTimeFields: {
get() {
const paddedTimeFields = [];
this.inputTypes.forEach(inputTypeUnit => {
// Pad the dd/hh/mm/ss field string to 2 digits and add it to the list
paddedTimeFields.push(this.tUnits[inputTypeUnit].val.toString().padStart(2, '0'));
});
return paddedTimeFields;
},
} }
}, },
watch: { });
max: {
handler: function(newValue, oldValue) {
this.maxTotal = newValue;
if(this.size === 'max' && newValue !== oldValue) {
this.createData();
};
},
immediate: true,
},
min: {
handler: function(newValue, oldValue) {
this.minTotal = newValue;
if( this.size === 'min' && newValue !== oldValue){
this.createData();
}
},
immediate: true,
},
// min 的最大值要等於 max 的總秒數
updateMax: {
handler: function(newValue, oldValue) {
this.maxTotal = newValue;
this.calculateTotalSeconds();
},
},
updateMin: {
handler: function(newValue, oldValue) {
this.minTotal = newValue;
this.calculateTotalSeconds();
},
},
},
methods: {
/**
* 關閉選單視窗
*/
onClose () {
this.openTimeSelect = false;
},
/**
* get focus element
* @param {event} event input 傳入的事件
*/
onFocus(event) {
this.lastInput = event.target;
this.lastInput.select(); // 當呼叫該方法時,文本框內的文字會被自動選中,這樣使用者可以方便地進行複製或刪除等操作。
},
/**
* when blur update input value and show number
* @param {event} event input 傳入的事件
*/
onChange(event) {
const baseInputValue = event.target.value;
let decoratedInputValue;
// 讓前綴數字自動補 0
if(isNaN(event.target.value)){
event.target.value = '00';
} else {
event.target.value = event.target.value.toString();
}
decoratedInputValue = event.target.value.toString();
// 手 key 數值大於最大值時,要等於最大值 const inputTimeFields = computed(() => {
// 先將字串轉為數字才能比大小 const paddedTimeFields = [];
const inputValue = parseInt(event.target.value, 10); inputTypes.value.forEach(inputTypeUnit => {
const max = parseInt(event.target.dataset.max, 10); // 設定最大值 paddedTimeFields.push(tUnits.value[inputTypeUnit].val.toString().padStart(2, '0'));
const min = parseInt(event.target.dataset.min, 10); });
if(inputValue > max) { return paddedTimeFields;
decoratedInputValue = max.toString().padStart(2, '0'); });
}else if(inputValue < min) {
decoratedInputValue= min.toString();
}
// 數值更新, tUnits 也更新, 並計算 totalSeconds
const dsp = event.target.dataset.tunit;
this.tUnits[dsp].val = decoratedInputValue;
switch (dsp) {
case 'd':
this.days = baseInputValue;
break;
case 'h':
this.hours = decoratedInputValue;
break;
case 'm':
this.minutes = decoratedInputValue;
break;
case 's':
this.seconds = decoratedInputValue;
break;
};
this.calculateTotalSeconds(); function onClose() {
}, openTimeSelect.value = false;
/** }
* 上下箭頭時的行為
* @param {event} event input 傳入的事件
*/
onKeyUp(event) {
// 正規表達式 \D 即不是 0-9 的字符
event.target.value = event.target.value.replace(/\D/g, '');
// 38上箭頭鍵Arrow Up function onFocus(event) {
// 40下箭頭鍵Arrow Down lastInput.value = event.target;
if (event.keyCode === 38 || event.keyCode === 40) { lastInput.value.select();
this.actionUpDown(event.target, event.keyCode === 38, true); }
};
},
/**
* 上下箭頭時的行為
* @param {element} input input 傳入的事件
* @param {number} goUp 上箭頭的鍵盤代號
* @param {boolean} selectIt 是否已執行
*/
actionUpDown(input, goUp, selectIt = false) {
const tUnit = input.dataset.tunit;
let newVal = this.getNewValue(input);
if (goUp) { function onChange(event) {
newVal = this.handleArrowUp(newVal, tUnit, input); const baseInputValue = event.target.value;
} else { let decoratedInputValue;
newVal = this.handleArrowDown(newVal, tUnit); if(isNaN(event.target.value)){
} event.target.value = '00';
} else {
event.target.value = event.target.value.toString();
}
decoratedInputValue = event.target.value.toString();
this.updateInputValue(input, newVal, tUnit); const inputValue = parseInt(event.target.value, 10);
if (selectIt) { const max = parseInt(event.target.dataset.max, 10);
input.select(); const min = parseInt(event.target.dataset.min, 10);
} if(inputValue > max) {
this.calculateTotalSeconds(); decoratedInputValue = max.toString().padStart(2, '0');
}, }else if(inputValue < min) {
decoratedInputValue= min.toString();
}
const dsp = event.target.dataset.tunit;
tUnits.value[dsp].val = decoratedInputValue;
switch (dsp) {
case 'd':
days.value = baseInputValue;
break;
case 'h':
hours.value = decoratedInputValue;
break;
case 'm':
minutes.value = decoratedInputValue;
break;
case 's':
seconds.value = decoratedInputValue;
break;
};
/** calculateTotalSeconds();
* 獲取新的數值 }
* @param {element} input 輸入的元素
* @returns {number} 新的數值
*/
getNewValue(input) {
const newVal = parseInt(input.value, 10);
return isNaN(newVal) ? 0 : newVal;
},
/** function onKeyUp(event) {
* 處理向上箭頭的行為 event.target.value = event.target.value.replace(/\D/g, '');
* @param {number} newVal 當前數值 if (event.keyCode === 38 || event.keyCode === 40) {
* @param {string} tUnit 時間單位 actionUpDown(event.target, event.keyCode === 38, true);
* @param {element} input 輸入的元素 };
* @returns {number} 更新後的數值 }
*/
handleArrowUp(newVal, tUnit, input) {
newVal += this.tUnits[tUnit].inc;
if (newVal > this.tUnits[tUnit].max) {
if (this.tUnits[tUnit].dsp === 'd') {
this.totalSeconds = this.maxTotal;
} else {
newVal = newVal % (this.tUnits[tUnit].max + 1);
this.incrementPreviousUnit(input);
}
}
return newVal;
},
/** function actionUpDown(input, goUp, selectIt = false) {
* 處理向下箭頭的行為 const tUnit = input.dataset.tunit;
* @param {number} newVal 當前數值 let newVal = getNewValue(input);
* @param {string} tUnit 時間單位
* @returns {number} 更新後的數值
*/
handleArrowDown(newVal, tUnit) {
newVal -= this.tUnits[tUnit].inc;
if (newVal < 0) {
newVal = (this.tUnits[tUnit].max + 1) - this.tUnits[tUnit].inc;
}
return newVal;
},
/** if (goUp) {
* 進位前一個更大的單位 newVal = handleArrowUp(newVal, tUnit, input);
* @param {element} input 輸入的元素 } else {
*/ newVal = handleArrowDown(newVal, tUnit);
incrementPreviousUnit(input) { }
if (input.dataset.index > 0) {
const prevUnit = document.querySelector(`input[data-index="${parseInt(input.dataset.index) - 1}"]`);
this.actionUpDown(prevUnit, true);
}
},
/** updateInputValue(input, newVal, tUnit);
* 更新輸入框的數值 if (selectIt) {
* @param {element} input 輸入的元素 input.select();
* @param {number} newVal 新的數值 }
* @param {string} tUnit 時間單位 calculateTotalSeconds();
*/ }
updateInputValue(input, newVal, tUnit) {
input.value = newVal.toString();
switch (tUnit) {
case 'd':
this.days = input.value;
break;
case 'h':
this.hours = input.value;
break;
case 'm':
this.minutes = input.value;
break;
case 's':
this.seconds = input.value;
break;
}
},
/**
* 設定 dhms 的數值
* @param {number} totalSeconds 總秒數
* @param {string} size 'min' | 'max',可選以上任一,最大值或最小值
*/
secondToDate(totalSeconds, size) {
totalSeconds = parseInt(totalSeconds);
if(!isNaN(totalSeconds)) {
this.seconds = totalSeconds % 60;
this.minutes = (Math.floor(totalSeconds - this.seconds) / 60) % 60;
this.hours = (Math.floor(totalSeconds / 3600)) % 24;
this.days = Math.floor(totalSeconds / (3600 * 24));
if(size === 'max') { function getNewValue(input) {
this.maxDays = Math.floor(totalSeconds / (3600 * 24)); const newVal = parseInt(input.value, 10);
} return isNaN(newVal) ? 0 : newVal;
else if(size === 'min') { }
this.minDays = Math.floor(totalSeconds / (3600 * 24));
}
};
},
/**
* 計算總秒數
*/
calculateTotalSeconds() {
let totalSeconds = 0;
for (const unit in this.tUnits) { function handleArrowUp(newVal, tUnit, input) {
const val = parseInt(this.tUnits[unit].val, 10); newVal += tUnits.value[tUnit].inc;
if (!isNaN(val)) { if (newVal > tUnits.value[tUnit].max) {
totalSeconds += val * this.tUnits[unit].rate; if (tUnits.value[tUnit].dsp === 'd') {
} totalSeconds.value = maxTotal.value;
} } else {
newVal = newVal % (tUnits.value[tUnit].max + 1);
if(totalSeconds >= this.maxTotal){ // 大於最大值時要等於最大值 incrementPreviousUnit(input);
totalSeconds = this.maxTotal;
this.secondToDate(this.maxTotal, 'max');
} else if (totalSeconds <= this.minTotal) { // 小於最小值時要等於最小值
totalSeconds = this.minTotal;
this.secondToDate(this.minTotal, 'min');
} else if((this.size === 'min' && totalSeconds <= this.maxTotal)) {
this.maxDays = Math.floor(this.maxTotal / (3600 * 24));
}
this.totalSeconds = totalSeconds;
this.$emit('total-seconds', totalSeconds);
},
/**
* 初始化
*/
async createData() {
const size = this.size;
if (this.maxTotal !== await null && this.minTotal !== await null) {
switch (size) {
case 'max':
this.secondToDate(this.minTotal, 'min');
this.secondToDate(this.maxTotal, 'max');
this.totalSeconds = this.maxTotal;
if(this.value !== null) {
this.totalSeconds = this.value;
this.secondToDate(this.value);
}
break;
case 'min':
this.secondToDate(this.maxTotal, 'max');
this.secondToDate(this.minTotal, 'min');
this.totalSeconds = this.minTotal;
if(this.value !== null) {
this.totalSeconds = this.value;
this.secondToDate(this.value);
}
break;
}
}
},
...mapActions(
useConformanceInputStore,[]
),
},
created() {
this.$emitter.on('reset', (data) => {
this.createData();
});
},
mounted() {
this.inputTypes = this.display.split('');
},
directives: {
'closable': {
mounted(el, {value}) {
const handleOutsideClick = function(e) {
let target = e.target;
while (target && target.id !== value.id) {
target = target.parentElement;
};
const isClickOutside = target?.id !== value.id && !el.contains(e.target)
if (isClickOutside) {
value.handler();
}
e.stopPropagation();
}
document.addEventListener('click', handleOutsideClick);
return () => {
document.removeEventListener('click', handleOutsideClick);
};
},
} }
}
return newVal;
}
function handleArrowDown(newVal, tUnit) {
newVal -= tUnits.value[tUnit].inc;
if (newVal < 0) {
newVal = (tUnits.value[tUnit].max + 1) - tUnits.value[tUnit].inc;
}
return newVal;
}
function incrementPreviousUnit(input) {
if (input.dataset.index > 0) {
const prevUnit = document.querySelector(`input[data-index="${parseInt(input.dataset.index) - 1}"]`);
actionUpDown(prevUnit, true);
}
}
function updateInputValue(input, newVal, tUnit) {
input.value = newVal.toString();
switch (tUnit) {
case 'd':
days.value = input.value;
break;
case 'h':
hours.value = input.value;
break;
case 'm':
minutes.value = input.value;
break;
case 's':
seconds.value = input.value;
break;
}
}
function secondToDate(totalSec, size) {
totalSec = parseInt(totalSec);
if(!isNaN(totalSec)) {
seconds.value = totalSec % 60;
minutes.value = (Math.floor(totalSec - seconds.value) / 60) % 60;
hours.value = (Math.floor(totalSec / 3600)) % 24;
days.value = Math.floor(totalSec / (3600 * 24));
if(size === 'max') {
maxDays.value = Math.floor(totalSec / (3600 * 24));
}
else if(size === 'min') {
minDays.value = Math.floor(totalSec / (3600 * 24));
}
};
}
function calculateTotalSeconds() {
let total = 0;
for (const unit in tUnits.value) {
const val = parseInt(tUnits.value[unit].val, 10);
if (!isNaN(val)) {
total += val * tUnits.value[unit].rate;
}
}
if(total >= maxTotal.value){
total = maxTotal.value;
secondToDate(maxTotal.value, 'max');
} else if (total <= minTotal.value) {
total = minTotal.value;
secondToDate(minTotal.value, 'min');
} else if((props.size === 'min' && total <= maxTotal.value)) {
maxDays.value = Math.floor(maxTotal.value / (3600 * 24));
}
totalSeconds.value = total;
emit('total-seconds', total);
}
async function createData() {
const size = props.size;
if (maxTotal.value !== await null && minTotal.value !== await null) {
switch (size) {
case 'max':
secondToDate(minTotal.value, 'min');
secondToDate(maxTotal.value, 'max');
totalSeconds.value = maxTotal.value;
if(props.value !== null) {
totalSeconds.value = props.value;
secondToDate(props.value);
}
break;
case 'min':
secondToDate(maxTotal.value, 'max');
secondToDate(minTotal.value, 'min');
totalSeconds.value = minTotal.value;
if(props.value !== null) {
totalSeconds.value = props.value;
secondToDate(props.value);
}
break;
}
}
}
// created
emitter.on('reset', () => {
createData();
});
// mounted
onMounted(() => {
inputTypes.value = display.value.split('');
});
const vClosable = {
mounted(el, {value}) {
const handleOutsideClick = function(e) {
let target = e.target;
while (target && target.id !== value.id) {
target = target.parentElement;
};
const isClickOutside = target?.id !== value.id && !el.contains(e.target)
if (isClickOutside) {
value.handler();
}
e.stopPropagation();
}
document.addEventListener('click', handleOutsideClick);
return () => {
document.removeEventListener('click', handleOutsideClick);
};
}, },
}; };
</script> </script>

View File

@@ -8,27 +8,15 @@
</template> </template>
<script> <script setup>
import { defineComponent, computed, } from 'vue';
import ImgCheckboxBlueFrame from "@/assets/icon-blue-checkbox.svg"; import ImgCheckboxBlueFrame from "@/assets/icon-blue-checkbox.svg";
import ImgCheckboxCheckedMark from "@/assets/icon-checkbox-checked.svg"; import ImgCheckboxCheckedMark from "@/assets/icon-checkbox-checked.svg";
import ImgCheckboxGrayFrame from "@/assets/icon-checkbox-empty.svg"; import ImgCheckboxGrayFrame from "@/assets/icon-checkbox-empty.svg";
export default defineComponent({ defineProps({
props: { isChecked: {
isChecked: {
type: Boolean, type: Boolean,
required: true // 表示这个 props 是必需的 required: true,
},
},
setup(props) {
const isChecked = computed(() => props.isChecked);
return {
ImgCheckboxBlueFrame,
ImgCheckboxCheckedMark,
ImgCheckboxGrayFrame,
isChecked,
};
}, },
}); });
</script> </script>

View File

@@ -4,7 +4,7 @@ import App from "./App.vue";
import router from "./router"; import router from "./router";
import pinia from '@/stores/main'; import pinia from '@/stores/main';
import moment from 'moment'; import moment from 'moment';
import mitt from 'mitt'; import emitter from '@/utils/emitter';
import ToastPlugin from 'vue-toast-notification'; import ToastPlugin from 'vue-toast-notification';
import cytoscape from 'cytoscape'; import cytoscape from 'cytoscape';
import dagre from 'cytoscape-dagre'; import dagre from 'cytoscape-dagre';
@@ -44,7 +44,6 @@ import Checkbox from 'primevue/checkbox';
import Dialog from 'primevue/dialog'; import Dialog from 'primevue/dialog';
import ContextMenu from 'primevue/contextmenu'; import ContextMenu from 'primevue/contextmenu';
const emitter = mitt();
const app = createApp(App); const app = createApp(App);
// Pinia Set // Pinia Set

5
src/utils/emitter.ts Normal file
View File

@@ -0,0 +1,5 @@
import mitt from 'mitt';
const emitter = mitt();
export default emitter;

View File

@@ -112,9 +112,8 @@
</div> </div>
</template> </template>
<script> <script setup>
import { ref, computed, onMounted, watch, } from 'vue'; import { ref, computed, onMounted, watch } from 'vue';
import { mapState, mapActions, } from 'pinia';
import { useLoadingStore } from '@/stores/loading'; import { useLoadingStore } from '@/stores/loading';
import { useModalStore } from '@/stores/modal'; import { useModalStore } from '@/stores/modal';
import { useAcctMgmtStore } from '@/stores/acctMgmt'; import { useAcctMgmtStore } from '@/stores/acctMgmt';
@@ -129,300 +128,189 @@ import {
MODAL_DELETE, MODAL_DELETE,
ONCE_RENDER_NUM_OF_DATA, ONCE_RENDER_NUM_OF_DATA,
} from "@/constants/constants.js"; } from "@/constants/constants.js";
import iconDeleteGray from '@/assets/icon-delete-gray.svg'; import iconDeleteGray from '@/assets/icon-delete-gray.svg';
import iconDeleteRed from '@/assets/icon-delete-red.svg'; import iconDeleteRed from '@/assets/icon-delete-red.svg';
import iconEditOff from '@/assets/icon-edit-off.svg'; import iconEditOff from '@/assets/icon-edit-off.svg';
import iconEditOn from '@/assets/icon-edit-on.svg'; import iconEditOn from '@/assets/icon-edit-on.svg';
import iconDetailOn from '@/assets/icon-detail-on.svg'; import iconDetailOn from '@/assets/icon-detail-on.svg';
import iconDetailOff from '@/assets/icon-detail-card.svg'; import iconDetailOff from '@/assets/icon-detail-card.svg';
export default { const toast = useToast();
setup() { const acctMgmtStore = useAcctMgmtStore();
const toast = useToast(); const loadingStore = useLoadingStore();
const acctMgmtStore = useAcctMgmtStore(); const modalStore = useModalStore();
const loadingStore = useLoadingStore(); const loginStore = useLoginStore();
const modalStore = useModalStore(); const infiniteStart = ref(0);
const loginStore = useLoginStore();
const infiniteStart = ref(0);
const shouldUpdateList = computed(() => acctMgmtStore.shouldUpdateList); const shouldUpdateList = computed(() => acctMgmtStore.shouldUpdateList);
const allAccountResponsive = computed(() => acctMgmtStore.allUserAccoutList); const allAccountResponsive = computed(() => acctMgmtStore.allUserAccoutList);
const infiniteAcctData = computed(() => allAccountResponsive.value.slice(0, infiniteStart.value + ONCE_RENDER_NUM_OF_DATA)); const infiniteAcctData = computed(() => allAccountResponsive.value.slice(0, infiniteStart.value + ONCE_RENDER_NUM_OF_DATA));
const loginUserData = ref(null); const loginUserData = ref(null);
const isOneAccountJustCreate = computed(() => acctMgmtStore.isOneAccountJustCreate); const isOneAccountJustCreate = computed(() => acctMgmtStore.isOneAccountJustCreate);
const justCreateUsername = computed(() => acctMgmtStore.justCreateUsername); const justCreateUsername = computed(() => acctMgmtStore.justCreateUsername);
const inputQuery = ref(''); const inputQuery = ref('');
const fetchLoginUserData = async () => { const fetchLoginUserData = async () => {
await loginStore.getUserData(); await loginStore.getUserData();
loginUserData.value = loginStore.userData; loginUserData.value = loginStore.userData;
};
const moveJustCreateUserToFirstRow = () => {
if(infiniteAcctData.value && infiniteAcctData.value.length){
const index = acctMgmtStore.allUserAccoutList.findIndex(user => user.username === acctMgmtStore.justCreateUsername);
if (index !== -1) {
// 移除匹配的對象(剛剛新增的使用者)並將其插入到陣列的第一位
const [justCreateUser] = acctMgmtStore.allUserAccoutList[index];
infiniteAcctData.value.unshift(justCreateUser);
}
}
};
const accountSearchResults = computed(() => {
if(!inputQuery.value) {
return infiniteAcctData.value;
}
return acctMgmtStore.allUserAccoutList.filter (user => user.username.includes(inputQuery.value));
});
const onCreateNewClick = () => {
acctMgmtStore.clearCurrentViewingUser();
modalStore.openModal(MODAL_CREATE_NEW);
};
const onAcctDoubleClick = (username) => {
acctMgmtStore.setCurrentViewingUser(username);
modalStore.openModal(MODAL_ACCT_INFO);
}
const handleDeleteMouseOver = (username) => {
acctMgmtStore.changeIsDeleteHoveredByUser(username, true);
};
const handleDeleteMouseOut = (username) => {
acctMgmtStore.changeIsDeleteHoveredByUser(username, false);
acctMgmtStore.changeIsRowHoveredByUser(username, false);
};
const handleRowMouseOver = (username) => {
acctMgmtStore.changeIsRowHoveredByUser(username, true);
};
const handleRowMouseOut = (username) => {
acctMgmtStore.changeIsRowHoveredByUser(username, false);
};
const handleEditMouseOver = (username) => {
acctMgmtStore.changeIsEditHoveredByUser(username, true);
};
const handleEditMouseOut = (username) => {
acctMgmtStore.changeIsEditHoveredByUser(username, false);
acctMgmtStore.changeIsRowHoveredByUser(username, false);
};
const handleDetailMouseOver = (username) => {
acctMgmtStore.changeIsDetailHoveredByUser(username, true);
};
const handleDetailMouseOut = (username) => {
acctMgmtStore.changeIsDetailHoveredByUser(username, false);
acctMgmtStore.changeIsRowHoveredByUser(username, false);
};
const onEditButtonClick = userNameToEdit => {
acctMgmtStore.setCurrentViewingUser(userNameToEdit);
modalStore.openModal(MODAL_ACCT_EDIT);
}
const onDeleteBtnClick = (usernameToDelete) => {
acctMgmtStore.setCurrentViewingUser(usernameToDelete);
modalStore.openModal(MODAL_DELETE);
};
const getRowClass = (curData) => {
return curData?.isRowHovered ? 'bg-[#F1F5F9]' : '';
};
watch(shouldUpdateList, async(newShouldUpdateList) => {
if (newShouldUpdateList) {
await acctMgmtStore.getAllUserAccounts();
// 當夾帶有infiniteStart.value就表示依然考慮到無限捲動的需求
infiniteAcctData.value = acctMgmtStore.allUserAccoutList.slice(0, infiniteStart.value + ONCE_RENDER_NUM_OF_DATA);
moveJustCreateUserToFirstRow();
accountSearchResults.value = infiniteAcctData.value;
}
acctMgmtStore.setShouldUpdateList(false);
});
const onSearchAccountButtonClick = (inputQueryString) => {
inputQuery.value = inputQueryString;
};
const setIsActiveInput = async(userData, inputIsActiveToSet) => {
const userDataToReplace = {
username: userData.username,
name: userData.name,
is_active: inputIsActiveToSet,
};
await acctMgmtStore.editAccount(userData.username, userDataToReplace);
acctMgmtStore.updateSingleAccountPiniaState(userDataToReplace);
toast.success(i18next.t("AcctMgmt.MsgAccountEdited"));
}
const onAdminInputClick = async(userData, inputIsAdminOn) => {
const ADMIN_ROLE_NAME = 'admin';
switch(inputIsAdminOn) {
case true:
await acctMgmtStore.addRoleToUser(userData.username, ADMIN_ROLE_NAME);
break;
case false:
await acctMgmtStore.deleteRoleToUser(userData.username, ADMIN_ROLE_NAME);
break;
default:
break;
}
const userDataToReplace = {
username: userData.username,
name: userData.name,
is_admin: inputIsAdminOn,
};
acctMgmtStore.updateSingleAccountPiniaState(userDataToReplace);
toast.success(i18next.t("AcctMgmt.MsgAccountEdited"));
}
onMounted(async () => {
loadingStore.setIsLoading(false);
await fetchLoginUserData();
await acctMgmtStore.getAllUserAccounts();
});
/**
* 無限滾動: 監聽 scroll 有沒有滾到底部
* @param {element} event 滾動傳入的事件
scrollTop表示容器的垂直滾動位置。具體來說它是以像素為單位的數值
表示當前內容視窗(可見區域)的頂部距離整個可滾動內容的頂部的距離。
簡單來說scrollTop 指的是滾動條的位置當滾動條在最上面時scrollTop 為 0
當滾動條向下移動時scrollTop 會增加。
可是作為:我們目前已經滾動了多少。
clientHeight表示容器的可見高度不包括滾動條的高度。它是以像素為單位的數值
表示容器內部的可見區域的高度。
與 offsetHeight 不同的是clientHeight 不包含邊框、內邊距和滾動條的高度,只計算內容區域的高度。
scrollHeight表示容器內部的總內容高度。它是以像素為單位的數值
包括看不見的(需要滾動才能看到的)部分。
簡單來說scrollHeight 是整個可滾動內容的總高度,包括可見區域和需要滾動才能看到的部分。
*/
const handleScroll = (event) => {
const container = event.target;
const smallValue = 3;
const isOverScrollHeight = container.scrollTop + container.clientHeight >= container.scrollHeight - smallValue;
if(isOverScrollHeight){
fetchMoreDataVue3();
}
};
const fetchMoreDataVue3 = () => {
if(infiniteAcctData.value.length < acctMgmtStore.allUserAccoutList.length) {
infiniteStart.value += ONCE_RENDER_NUM_OF_DATA;
}
};
return {
accountSearchResults,
modalStore,
loginUserData,
infiniteAcctData,
isOneAccountJustCreate,
justCreateUsername,
onEditButtonClick,
onCreateNewClick,
onAcctDoubleClick,
onSearchAccountButtonClick,
handleScroll,
getRowClass,
onDeleteBtnClick,
onAdminInputClick,
handleDeleteMouseOver,
handleDeleteMouseOut,
handleRowMouseOver,
handleRowMouseOut,
handleEditMouseOver,
handleEditMouseOut,
handleDetailMouseOver,
handleDetailMouseOut,
setIsActiveInput,
iconDeleteGray,
iconDeleteRed,
iconEditOff,
iconEditOn,
iconDetailOn,
iconDetailOff,
};
},
data() {
return {
i18next: i18next,
infiniteAcctDataVue2: [],
infiniteStart: 0,
isInfiniteFinish: true,
isInfinitMaxItemsMet: false,
};
},
components: {
SearchBar,
},
computed: {
...mapState(useAcctMgmtStore, ['allUserAccoutList']),
},
methods: {
/**
* 無限滾動: 監聽 scroll 有沒有滾到底部
* @param {element} event 滾動傳入的事件
*/
handleScrollVue2(event) {
if(this.infinitMaxItems || this.infiniteAcctDataVue2.length < ONCE_RENDER_NUM_OF_DATA || this.isInfiniteFinish === false) {
return;
}
const container = event.target;
const smallValue = 4;
const overScrollHeight = container.scrollTop + container.clientHeight >= container.scrollHeight - smallValue;
if(overScrollHeight){
this.fetchMoreDataVue2();
}
},
/**
* 無限滾動: 滾到底後,要載入數據
*/
async fetchMoreDataVue2() {
this.infiniteFinish = false;
this.infiniteStart += ONCE_RENDER_NUM_OF_DATA;
this.infiniteAcctDataVue2 = await [...this.infiniteAcctDataVue2, ...this.allUserAccoutList.slice(
this.infiniteStart, this.infiniteStart + ONCE_RENDER_NUM_OF_DATA)];
this.isInfiniteFinish = true;
},
onDetailBtnClick(dataKey){
this.openModal(MODAL_ACCT_INFO);
this.setCurrentViewingUser(dataKey);
},
onEditBtnClickVue2(clickedUserName){
this.setCurrentViewingUser(clickedUserName);
this.openModal(MODAL_ACCT_EDIT);
},
...mapActions(useModalStore, ['openModal']),
...mapActions(useAcctMgmtStore, [
'setCurrentViewingUser',
'getAllUserAccounts',
]),
},
created() {
},
}; };
const moveJustCreateUserToFirstRow = () => {
if(infiniteAcctData.value && infiniteAcctData.value.length){
const index = acctMgmtStore.allUserAccoutList.findIndex(user => user.username === acctMgmtStore.justCreateUsername);
if (index !== -1) {
const [justCreateUser] = acctMgmtStore.allUserAccoutList[index];
infiniteAcctData.value.unshift(justCreateUser);
}
}
};
const accountSearchResults = computed(() => {
if(!inputQuery.value) {
return infiniteAcctData.value;
}
return acctMgmtStore.allUserAccoutList.filter (user => user.username.includes(inputQuery.value));
});
const onCreateNewClick = () => {
acctMgmtStore.clearCurrentViewingUser();
modalStore.openModal(MODAL_CREATE_NEW);
};
const onAcctDoubleClick = (username) => {
acctMgmtStore.setCurrentViewingUser(username);
modalStore.openModal(MODAL_ACCT_INFO);
}
const handleDeleteMouseOver = (username) => {
acctMgmtStore.changeIsDeleteHoveredByUser(username, true);
};
const handleDeleteMouseOut = (username) => {
acctMgmtStore.changeIsDeleteHoveredByUser(username, false);
acctMgmtStore.changeIsRowHoveredByUser(username, false);
};
const handleRowMouseOver = (username) => {
acctMgmtStore.changeIsRowHoveredByUser(username, true);
};
const handleRowMouseOut = (username) => {
acctMgmtStore.changeIsRowHoveredByUser(username, false);
};
const handleEditMouseOver = (username) => {
acctMgmtStore.changeIsEditHoveredByUser(username, true);
};
const handleEditMouseOut = (username) => {
acctMgmtStore.changeIsEditHoveredByUser(username, false);
acctMgmtStore.changeIsRowHoveredByUser(username, false);
};
const handleDetailMouseOver = (username) => {
acctMgmtStore.changeIsDetailHoveredByUser(username, true);
};
const handleDetailMouseOut = (username) => {
acctMgmtStore.changeIsDetailHoveredByUser(username, false);
acctMgmtStore.changeIsRowHoveredByUser(username, false);
};
const onEditButtonClick = userNameToEdit => {
acctMgmtStore.setCurrentViewingUser(userNameToEdit);
modalStore.openModal(MODAL_ACCT_EDIT);
}
const onDeleteBtnClick = (usernameToDelete) => {
acctMgmtStore.setCurrentViewingUser(usernameToDelete);
modalStore.openModal(MODAL_DELETE);
};
const getRowClass = (curData) => {
return curData?.isRowHovered ? 'bg-[#F1F5F9]' : '';
};
const onDetailBtnClick = (dataKey) => {
acctMgmtStore.setCurrentViewingUser(dataKey);
modalStore.openModal(MODAL_ACCT_INFO);
};
watch(shouldUpdateList, async(newShouldUpdateList) => {
if (newShouldUpdateList) {
await acctMgmtStore.getAllUserAccounts();
moveJustCreateUserToFirstRow();
}
acctMgmtStore.setShouldUpdateList(false);
});
const onSearchAccountButtonClick = (inputQueryString) => {
inputQuery.value = inputQueryString;
};
const setIsActiveInput = async(userData, inputIsActiveToSet) => {
const userDataToReplace = {
username: userData.username,
name: userData.name,
is_active: inputIsActiveToSet,
};
await acctMgmtStore.editAccount(userData.username, userDataToReplace);
acctMgmtStore.updateSingleAccountPiniaState(userDataToReplace);
toast.success(i18next.t("AcctMgmt.MsgAccountEdited"));
}
const onAdminInputClick = async(userData, inputIsAdminOn) => {
const ADMIN_ROLE_NAME = 'admin';
switch(inputIsAdminOn) {
case true:
await acctMgmtStore.addRoleToUser(userData.username, ADMIN_ROLE_NAME);
break;
case false:
await acctMgmtStore.deleteRoleToUser(userData.username, ADMIN_ROLE_NAME);
break;
default:
break;
}
const userDataToReplace = {
username: userData.username,
name: userData.name,
is_admin: inputIsAdminOn,
};
acctMgmtStore.updateSingleAccountPiniaState(userDataToReplace);
toast.success(i18next.t("AcctMgmt.MsgAccountEdited"));
}
/**
* 無限滾動: 監聯 scroll 有沒有滾到底部
* @param {element} event 滾動傳入的事件
*/
const handleScroll = (event) => {
const container = event.target;
const smallValue = 3;
const isOverScrollHeight = container.scrollTop + container.clientHeight >= container.scrollHeight - smallValue;
if(isOverScrollHeight){
fetchMoreDataVue3();
}
};
const fetchMoreDataVue3 = () => {
if(infiniteAcctData.value.length < acctMgmtStore.allUserAccoutList.length) {
infiniteStart.value += ONCE_RENDER_NUM_OF_DATA;
}
};
onMounted(async () => {
loadingStore.setIsLoading(false);
await fetchLoginUserData();
await acctMgmtStore.getAllUserAccounts();
});
</script> </script>
<style> <style>
/*為了讓 radio 按鈕可以置中,所以讓欄位的文字也置中 */ /*為了讓 radio 按鈕可以置中,所以讓欄位的文字也置中 */

View File

@@ -181,10 +181,9 @@
</div> </div>
</template> </template>
<script> <script setup>
import { defineComponent, computed, ref, watch, onMounted, } from 'vue'; import { computed, ref, watch } from 'vue';
import i18next from "@/i18n/i18n.js"; import i18next from "@/i18n/i18n.js";
import { mapActions, } from 'pinia';
import { useModalStore } from '@/stores/modal'; import { useModalStore } from '@/stores/modal';
import { useRouter } from 'vue-router'; import { useRouter } from 'vue-router';
import { useToast } from 'vue-toast-notification'; import { useToast } from 'vue-toast-notification';
@@ -193,224 +192,174 @@ import ModalHeader from "./ModalHeader.vue";
import IconChecked from "@/components/icons/IconChecked.vue"; import IconChecked from "@/components/icons/IconChecked.vue";
import { MODAL_CREATE_NEW, MODAL_ACCT_EDIT, PWD_VALID_LENGTH } from '@/constants/constants.js'; import { MODAL_CREATE_NEW, MODAL_ACCT_EDIT, PWD_VALID_LENGTH } from '@/constants/constants.js';
export default defineComponent({ const acctMgmtStore = useAcctMgmtStore();
setup() { const modalStore = useModalStore();
const acctMgmtStore = useAcctMgmtStore();
const modalStore = useModalStore();
const router = useRouter(); const router = useRouter();
const toast = useToast(); const toast = useToast();
const currentViewingUser = computed(() => acctMgmtStore.currentViewingUser); const currentViewingUser = computed(() => acctMgmtStore.currentViewingUser);
const isPwdEyeOn = ref(false); const isPwdEyeOn = ref(false);
const isConfirmDisabled = ref(true); const isConfirmDisabled = ref(true);
const isPwdLengthValid = ref(true); const isPwdLengthValid = ref(true);
const isResetPwdSectionShow = ref(false); const isResetPwdSectionShow = ref(false);
const isSetAsAdminChecked = ref(false); const isSetAsAdminChecked = ref(false);
const isSetActivedChecked = ref(true); const isSetActivedChecked = ref(true);
const whichCurrentModal = computed(() => modalStore.whichModal); const whichCurrentModal = computed(() => modalStore.whichModal);
const isSSO = computed(() => acctMgmtStore.currentViewingUser.is_sso); const isSSO = computed(() => acctMgmtStore.currentViewingUser.is_sso);
const username = computed(() => acctMgmtStore.currentViewingUser.username); const username = computed(() => acctMgmtStore.currentViewingUser.username);
const name = computed(() => acctMgmtStore.currentViewingUser.name); const name = computed(() => acctMgmtStore.currentViewingUser.name);
const inputUserAccount = ref(whichCurrentModal.value === MODAL_CREATE_NEW ? '' : currentViewingUser.value.username); const inputUserAccount = ref(whichCurrentModal.value === MODAL_CREATE_NEW ? '' : currentViewingUser.value.username);
const inputName = ref(whichCurrentModal.value === MODAL_CREATE_NEW ? '' : currentViewingUser.value.name); const inputName = ref(whichCurrentModal.value === MODAL_CREATE_NEW ? '' : currentViewingUser.value.name);
const inputPwd = ref(""); const inputPwd = ref("");
const isAccountUnique = ref(true); const isAccountUnique = ref(true);
const isEditable = ref(true); const isEditable = ref(true);
// 自從加入這段 watch 之後,填寫密碼欄位之時,就不會胡亂清空掉 account 或是 full name 欄位了。 // 自從加入這段 watch 之後,填寫密碼欄位之時,就不會胡亂清空掉 account 或是 full name 欄位了。
watch(whichCurrentModal, (newVal) => { watch(whichCurrentModal, (newVal) => {
if (newVal === MODAL_CREATE_NEW) { if (newVal === MODAL_CREATE_NEW) {
inputUserAccount.value = ''; inputUserAccount.value = '';
inputName.value = ''; inputName.value = '';
} else { } else {
inputUserAccount.value = currentViewingUser.value.username; inputUserAccount.value = currentViewingUser.value.username;
inputName.value = currentViewingUser.value.name; inputName.value = currentViewingUser.value.name;
}
});
const modalTitle = computed(() => {
return modalStore.whichModal === MODAL_CREATE_NEW ? i18next.t('AcctMgmt.CreateNew') : i18next.t('AcctMgmt.AccountEdit');
});
const togglePwdEyeBtn = (toBeOpen) => {
isPwdEyeOn.value = toBeOpen;
};
const validatePwdLength = () => {
isPwdLengthValid.value = !isResetPwdSectionShow.value || inputPwd.value.length >= PWD_VALID_LENGTH;
}
const onInputDoubleClick = () => {
// 允許編輯模式
isEditable.value = true;
}
const onConfirmBtnClick = async () => {
// rule for minimum length
validatePwdLength();
if(!isPwdLengthValid.value) {
return;
}
// rule for account uniqueness
switch(whichCurrentModal.value) {
case MODAL_CREATE_NEW:
await checkAccountIsUnique();
if(!isAccountUnique.value) {
return;
}
await acctMgmtStore.createNewAccount({
username: inputUserAccount.value,
password: inputPwd.value === undefined ? '' : inputPwd.value,
name: inputName.value,
is_admin: isSetAsAdminChecked.value,
is_active: isSetActivedChecked.value,
});
await toast.success(i18next.t("AcctMgmt.MsgAccountAdded"));
await modalStore.closeModal();
acctMgmtStore.setShouldUpdateList(true);
await router.push('/account-admin');
break;
case MODAL_ACCT_EDIT:
await checkAccountIsUnique();
if(!isAccountUnique.value) {
return;
}
// 要注意的是舊的username跟新的username可以是不同的
// 區分有無傳入密碼的情況
if(isResetPwdSectionShow.value) {
await acctMgmtStore.editAccount(
currentViewingUser.value.username, {
newUsername: inputUserAccount.value,
password: inputPwd.value,
name: inputName.value === undefined ? '' : inputName.value,
is_active: true,
});
} else {
await acctMgmtStore.editAccount(
currentViewingUser.value.username, {
newUsername: inputUserAccount.value,
name: inputName.value === undefined ? '' : inputName.value,
is_active: true,
});
}
await toast.success(i18next.t("AcctMgmt.MsgAccountEdited"));
isEditable.value = false;
break;
default:
break;
}
}
const checkAccountIsUnique = async() => {
// 如果使用者沒有更動過欄位那就不用調用任何後端的API
if(inputUserAccount.value === username.value) {
return true;
}
const isAccountAlreadyExistAPISuccess = await acctMgmtStore.getUserDetail(inputUserAccount.value);
isAccountUnique.value = !isAccountAlreadyExistAPISuccess;
return isAccountUnique.value;
};
const toggleIsAdmin = () => {
if(isEditable){
isSetAsAdminChecked.value = !isSetAsAdminChecked.value;
}
}
const toggleIsActivated = () => {
if(isEditable){
isSetActivedChecked.value = !isSetActivedChecked.value;
}
}
const onInputNameFocus = () => {
if(isConfirmDisabled.value){
isConfirmDisabled.value = false;
}
}
const onResetPwdButtonClick = () => {
isResetPwdSectionShow.value = !isResetPwdSectionShow.value;
// 必須清空密碼欄位輸入的字串
inputPwd.value = '';
}
watch(
[inputPwd, inputUserAccount, inputName],
([newPwd, newAccount, newName]) => {
// 只要[確認密碼]或[密碼]欄位有更動且所有欄位都不是空的confirm 按鈕就可點選
if(newAccount.length > 0 && newName.length > 0) {
isConfirmDisabled.value = false;
}
if(whichCurrentModal.value !== MODAL_CREATE_NEW) {
if(isResetPwdSectionShow.value && newPwd.length < PWD_VALID_LENGTH) {
isConfirmDisabled.value = true;
}
}else {
if(newPwd.length < PWD_VALID_LENGTH) {
isConfirmDisabled.value = true;
}
}
}
);
onMounted(() => {
});
return {
isConfirmDisabled,
username,
name,
isSSO,
isPwdEyeOn,
togglePwdEyeBtn,
isPwdLengthValid,
inputUserAccount,
inputName,
inputPwd,
onConfirmBtnClick,
onInputDoubleClick,
onInputNameFocus,
onResetPwdButtonClick,
isSetAsAdminChecked,
isSetActivedChecked,
isResetPwdSectionShow,
toggleIsAdmin,
toggleIsActivated,
whichCurrentModal,
MODAL_CREATE_NEW,
modalTitle,
isAccountUnique,
isEditable,
};
},
data() {
return {
i18next: i18next,
};
},
components: {
ModalHeader,
IconChecked,
},
methods: {
onCloseBtnClick(){
this.closeModal();
},
onCancelBtnClick(){
this.closeModal();
},
...mapActions(useModalStore, ['closeModal']),
} }
}); });
const modalTitle = computed(() => {
return modalStore.whichModal === MODAL_CREATE_NEW ? i18next.t('AcctMgmt.CreateNew') : i18next.t('AcctMgmt.AccountEdit');
});
const togglePwdEyeBtn = (toBeOpen) => {
isPwdEyeOn.value = toBeOpen;
};
const validatePwdLength = () => {
isPwdLengthValid.value = !isResetPwdSectionShow.value || inputPwd.value.length >= PWD_VALID_LENGTH;
}
const onInputDoubleClick = () => {
// 允許編輯模式
isEditable.value = true;
}
const onConfirmBtnClick = async () => {
// rule for minimum length
validatePwdLength();
if(!isPwdLengthValid.value) {
return;
}
// rule for account uniqueness
switch(whichCurrentModal.value) {
case MODAL_CREATE_NEW:
await checkAccountIsUnique();
if(!isAccountUnique.value) {
return;
}
await acctMgmtStore.createNewAccount({
username: inputUserAccount.value,
password: inputPwd.value === undefined ? '' : inputPwd.value,
name: inputName.value,
is_admin: isSetAsAdminChecked.value,
is_active: isSetActivedChecked.value,
});
await toast.success(i18next.t("AcctMgmt.MsgAccountAdded"));
await modalStore.closeModal();
acctMgmtStore.setShouldUpdateList(true);
await router.push('/account-admin');
break;
case MODAL_ACCT_EDIT:
await checkAccountIsUnique();
if(!isAccountUnique.value) {
return;
}
// 要注意的是舊的username跟新的username可以是不同的
// 區分有無傳入密碼的情況
if(isResetPwdSectionShow.value) {
await acctMgmtStore.editAccount(
currentViewingUser.value.username, {
newUsername: inputUserAccount.value,
password: inputPwd.value,
name: inputName.value === undefined ? '' : inputName.value,
is_active: true,
});
} else {
await acctMgmtStore.editAccount(
currentViewingUser.value.username, {
newUsername: inputUserAccount.value,
name: inputName.value === undefined ? '' : inputName.value,
is_active: true,
});
}
await toast.success(i18next.t("AcctMgmt.MsgAccountEdited"));
isEditable.value = false;
break;
default:
break;
}
}
const checkAccountIsUnique = async() => {
// 如果使用者沒有更動過欄位那就不用調用任何後端的API
if(inputUserAccount.value === username.value) {
return true;
}
const isAccountAlreadyExistAPISuccess = await acctMgmtStore.getUserDetail(inputUserAccount.value);
isAccountUnique.value = !isAccountAlreadyExistAPISuccess;
return isAccountUnique.value;
};
const toggleIsAdmin = () => {
if(isEditable){
isSetAsAdminChecked.value = !isSetAsAdminChecked.value;
}
}
const toggleIsActivated = () => {
if(isEditable){
isSetActivedChecked.value = !isSetActivedChecked.value;
}
}
const onInputNameFocus = () => {
if(isConfirmDisabled.value){
isConfirmDisabled.value = false;
}
}
const onResetPwdButtonClick = () => {
isResetPwdSectionShow.value = !isResetPwdSectionShow.value;
// 必須清空密碼欄位輸入的字串
inputPwd.value = '';
}
watch(
[inputPwd, inputUserAccount, inputName],
([newPwd, newAccount, newName]) => {
// 只要[確認密碼]或[密碼]欄位有更動且所有欄位都不是空的confirm 按鈕就可點選
if(newAccount.length > 0 && newName.length > 0) {
isConfirmDisabled.value = false;
}
if(whichCurrentModal.value !== MODAL_CREATE_NEW) {
if(isResetPwdSectionShow.value && newPwd.length < PWD_VALID_LENGTH) {
isConfirmDisabled.value = true;
}
}else {
if(newPwd.length < PWD_VALID_LENGTH) {
isConfirmDisabled.value = true;
}
}
}
);
function onCancelBtnClick(){
modalStore.closeModal();
}
</script> </script>
<style> <style>
#modal_account_edit { #modal_account_edit {

View File

@@ -22,42 +22,25 @@
</div> </div>
</template> </template>
<script> <script setup>
import { onBeforeMount, computed, ref } from 'vue'; import { onBeforeMount, computed, ref } from 'vue';
import i18next from '@/i18n/i18n.js'; import i18next from '@/i18n/i18n.js';
import { useAcctMgmtStore } from '@/stores/acctMgmt'; import { useAcctMgmtStore } from '@/stores/acctMgmt';
import ModalHeader from './ModalHeader.vue'; import ModalHeader from './ModalHeader.vue';
import Badge from '../../components/Badge.vue'; import Badge from '../../components/Badge.vue';
export default { const acctMgmtStore = useAcctMgmtStore();
setup(){ const visitTime = ref(0);
const acctMgmtStore = useAcctMgmtStore(); const currentViewingUser = computed(() => acctMgmtStore.currentViewingUser);
const visitTime = ref(0); const {
const currentViewingUser = computed(() => acctMgmtStore.currentViewingUser); username,
const { name,
username, is_admin,
name, is_active,
is_admin, } = currentViewingUser.value;
is_active,
} = currentViewingUser.value;
onBeforeMount(async() => { onBeforeMount(async() => {
await acctMgmtStore.getUserDetail(currentViewingUser.value.username); await acctMgmtStore.getUserDetail(currentViewingUser.value.username);
visitTime.value = currentViewingUser.value.detail.visits; visitTime.value = currentViewingUser.value.detail.visits;
}); });
return {
i18next,
username,
name,
is_admin,
is_active,
visitTime,
};
},
components: {
ModalHeader,
Badge,
}
}
</script> </script>

View File

@@ -10,8 +10,8 @@
</div> </div>
</template> </template>
<script> <script setup>
import { computed, } from 'vue'; import { computed } from 'vue';
import { useModalStore } from '@/stores/modal'; import { useModalStore } from '@/stores/modal';
import ModalAccountEditCreate from './ModalAccountEditCreate.vue'; import ModalAccountEditCreate from './ModalAccountEditCreate.vue';
import ModalAccountInfo from './ModalAccountInfo.vue'; import ModalAccountInfo from './ModalAccountInfo.vue';
@@ -23,27 +23,8 @@
MODAL_DELETE, MODAL_DELETE,
} from "@/constants/constants.js"; } from "@/constants/constants.js";
const modalStore = useModalStore();
export default { const whichModal = computed(() => modalStore.whichModal);
setup() {
const modalStore = useModalStore();
const whichModal = computed(() => modalStore.whichModal);
return {
modalStore,
whichModal,
MODAL_CREATE_NEW,
MODAL_ACCT_EDIT,
MODAL_ACCT_INFO,
MODAL_DELETE,
};
},
components: {
ModalAccountEditCreate,
ModalAccountInfo,
ModalDeleteAlert,
}
};
</script> </script>
<style> <style>
#modal_container { #modal_container {

View File

@@ -27,39 +27,28 @@
</div> </div>
</template> </template>
<script> <script setup>
import { defineComponent, } from 'vue';
import { useModalStore } from '@/stores/modal'; import { useModalStore } from '@/stores/modal';
import { useRouter } from 'vue-router'; import { useRouter } from 'vue-router';
import { useAcctMgmtStore } from '@/stores/acctMgmt'; import { useAcctMgmtStore } from '@/stores/acctMgmt';
import i18next from '@/i18n/i18n.js'; import i18next from '@/i18n/i18n.js';
import { useToast } from 'vue-toast-notification'; import { useToast } from 'vue-toast-notification';
export default defineComponent({ const acctMgmtStore = useAcctMgmtStore();
setup() { const modalStore = useModalStore();
const acctMgmtStore = useAcctMgmtStore(); const toast = useToast();
const modalStore = useModalStore(); const router = useRouter();
const toast = useToast();
const router = useRouter();
const onDeleteConfirmBtnClick = async() => { const onDeleteConfirmBtnClick = async() => {
if(await acctMgmtStore.deleteAccount(acctMgmtStore.currentViewingUser.username)){ if(await acctMgmtStore.deleteAccount(acctMgmtStore.currentViewingUser.username)){
toast.success(i18next.t("AcctMgmt.MsgAccountDeleteSuccess")); toast.success(i18next.t("AcctMgmt.MsgAccountDeleteSuccess"));
modalStore.closeModal(); modalStore.closeModal();
acctMgmtStore.setShouldUpdateList(true); acctMgmtStore.setShouldUpdateList(true);
await router.push("/account-admin"); await router.push("/account-admin");
} }
} };
const onNoBtnClick = () => { const onNoBtnClick = () => {
modalStore.closeModal(); modalStore.closeModal();
} };
return {
i18next,
onDeleteConfirmBtnClick,
onNoBtnClick,
};
},
});
</script> </script>

View File

@@ -11,24 +11,16 @@
</header> </header>
</template> </template>
<script> <script setup>
import { useModalStore } from '@/stores/modal'; import { useModalStore } from '@/stores/modal';
export default {
props: {
headerText: {
type: String,
required: true // 确保 headerText 是必填的
}
},
setup(props) {
const modalStore = useModalStore();
const { headerText, } = props;
const { closeModal } = modalStore;
return { defineProps({
headerText, headerText: {
closeModal, type: String,
}; required: true,
} }
} });
const modalStore = useModalStore();
const { closeModal } = modalStore;
</script> </script>

View File

@@ -114,8 +114,8 @@
</div> </div>
</template> </template>
<script> <script setup>
import { onMounted, computed, ref, } from 'vue'; import { onMounted, computed, ref } from 'vue';
import i18next from '@/i18n/i18n.js'; import i18next from '@/i18n/i18n.js';
import { useLoginStore } from '@/stores/login'; import { useLoginStore } from '@/stores/login';
import { useAcctMgmtStore } from '@/stores/acctMgmt'; import { useAcctMgmtStore } from '@/stores/acctMgmt';
@@ -126,109 +126,77 @@ import ButtonFilled from '@/components/ButtonFilled.vue';
import { useToast } from 'vue-toast-notification'; import { useToast } from 'vue-toast-notification';
import { PWD_VALID_LENGTH } from '@/constants/constants.js'; import { PWD_VALID_LENGTH } from '@/constants/constants.js';
export default { const loadingStore = useLoadingStore();
setup() { const loginStore = useLoginStore();
const loadingStore = useLoadingStore(); const acctMgmtStore = useAcctMgmtStore();
const loginStore = useLoginStore(); const toast = useToast();
const acctMgmtStore = useAcctMgmtStore();
const toast = useToast();
const visitTime = ref(0); const visitTime = ref(0);
const currentViewingUser = computed(() => acctMgmtStore.currentViewingUser); const currentViewingUser = computed(() => acctMgmtStore.currentViewingUser);
const name = computed(() => currentViewingUser.value.name); const name = computed(() => currentViewingUser.value.name);
const { const {
username, username,
is_admin, is_admin,
is_active, is_active,
} = currentViewingUser.value; } = currentViewingUser.value;
const inputName = ref(name.value); // remember to add .value postfix const inputName = ref(name.value);
const inputPwd = ref(''); const inputPwd = ref('');
const isNameEditable = ref(false); const isNameEditable = ref(false);
const isPwdEditable = ref(false); const isPwdEditable = ref(false);
const isPwdEyeOn = ref(false); const isPwdEyeOn = ref(false);
const isPwdLengthValid = ref(true); const isPwdLengthValid = ref(true);
const onEditNameClick = () => { const onEditNameClick = () => {
isNameEditable.value = true; isNameEditable.value = true;
} };
const onResetPwdClick = () => { const onResetPwdClick = () => {
isPwdEditable.value = true; isPwdEditable.value = true;
} };
const onSaveNameClick = async() => { const validatePwdLength = () => {
if(inputName.value.length > 0) { isPwdLengthValid.value = inputPwd.value.length >= PWD_VALID_LENGTH;
await acctMgmtStore.editAccountName(username, inputName.value); };
await toast.success(i18next.t("AcctMgmt.MsgAccountEdited"));
await acctMgmtStore.getUserDetail(username);
isNameEditable.value = false;
inputName.value = name.value; // updated value
}
};
const onSavePwdClick = async() => { const onSaveNameClick = async() => {
validatePwdLength(); if(inputName.value.length > 0) {
if (isPwdLengthValid.value) { await acctMgmtStore.editAccountName(username, inputName.value);
isPwdEditable.value = false; await toast.success(i18next.t("AcctMgmt.MsgAccountEdited"));
await acctMgmtStore.editAccountPwd(username, inputPwd.value); await acctMgmtStore.getUserDetail(username);
await toast.success(i18next.t("AcctMgmt.MsgAccountEdited")); isNameEditable.value = false;
inputPwd.value = ''; inputName.value = name.value;
// remember to force update
await acctMgmtStore.getUserDetail(loginStore.userData.username);
}
}
const onCancelNameClick = () => {
isNameEditable.value = false;
inputName.value = name.value;
};
const onCancelPwdClick = () => {
isPwdEditable.value = false;
inputPwd.value = '';
isPwdLengthValid.value = true;
};
const togglePwdEyeBtn = (toBeOpen) => {
isPwdEyeOn.value = toBeOpen;
};
const validatePwdLength = () => {
isPwdLengthValid.value = inputPwd.value.length >= PWD_VALID_LENGTH;
}
onMounted(async() => {
loadingStore.setIsLoading(false);
await acctMgmtStore.getUserDetail(loginStore.userData.username);
});
return {
i18next,
username,
name,
is_admin,
is_active,
visitTime,
inputName,
inputPwd,
isNameEditable,
isPwdEditable,
isPwdEyeOn,
isPwdLengthValid,
onEditNameClick,
onResetPwdClick,
onSavePwdClick,
onSaveNameClick,
onCancelPwdClick,
onCancelNameClick,
togglePwdEyeBtn,
};
},
components: {
Badge,
Button,
ButtonFilled,
} }
} };
const onSavePwdClick = async() => {
validatePwdLength();
if (isPwdLengthValid.value) {
isPwdEditable.value = false;
await acctMgmtStore.editAccountPwd(username, inputPwd.value);
await toast.success(i18next.t("AcctMgmt.MsgAccountEdited"));
inputPwd.value = '';
await acctMgmtStore.getUserDetail(loginStore.userData.username);
}
};
const onCancelNameClick = () => {
isNameEditable.value = false;
inputName.value = name.value;
};
const onCancelPwdClick = () => {
isPwdEditable.value = false;
inputPwd.value = '';
isPwdLengthValid.value = true;
};
const togglePwdEyeBtn = (toBeOpen) => {
isPwdEyeOn.value = toBeOpen;
};
onMounted(async() => {
loadingStore.setIsLoading(false);
await acctMgmtStore.getUserDetail(loginStore.userData.username);
});
</script> </script>

View File

@@ -8,15 +8,7 @@
</main> </main>
</template> </template>
<script> <script setup>
import Header from "@/components/Header.vue"; import Header from "@/components/Header.vue";
import Navbar from "@/components/Navbar.vue"; import Navbar from "@/components/Navbar.vue";
export default {
name: 'AuthContainer',
components: {
Header,
Navbar,
},
};
</script> </script>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -8,95 +8,13 @@
</main> </main>
</template> </template>
<script> <script>
import { storeToRefs } from 'pinia';
import { useLoadingStore } from '@/stores/loading';
import { useConformanceStore } from '@/stores/conformance'; import { useConformanceStore } from '@/stores/conformance';
import StatusBar from '@/components/Discover/StatusBar.vue';
import ConformanceResults from '@/components/Discover/Conformance/ConformanceResults.vue';
import ConformanceSidebar from '@/components/Discover/Conformance/ConformanceSidebar.vue';
export default { export default {
setup() {
const loadingStore = useLoadingStore();
const conformanceStore = useConformanceStore();
const { isLoading } = storeToRefs(loadingStore);
const { conformanceLogId, conformanceFilterId, conformanceLogCreateCheckId, conformanceFilterCreateCheckId,
conformanceLogTempCheckId, conformanceFilterTempCheckId, selectedRuleType, selectedActivitySequence,
selectedMode, selectedProcessScope, selectedActSeqMore, selectedActSeqFromTo, conformanceRuleData,
conformanceTempReportData, conformanceFileName,
} = storeToRefs(conformanceStore);
return { isLoading, conformanceLogId, conformanceFilterId, conformanceLogCreateCheckId, conformanceFilterCreateCheckId,
conformanceLogTempCheckId, conformanceFilterTempCheckId, conformanceStore, selectedRuleType,
selectedActivitySequence, selectedMode, selectedProcessScope, selectedActSeqMore, selectedActSeqFromTo,
conformanceRuleData, conformanceTempReportData, conformanceFileName
};
},
components: {
StatusBar,
ConformanceResults,
ConformanceSidebar,
},
async created() {
this.isLoading = true;
const params = this.$route.params;
const file = this.$route.meta.file;
const isCheckPage = this.$route.name.includes('Check');
if(!isCheckPage) {
switch (params.type) {
case 'log': // FILES page 來的 log
this.conformanceLogId = params.fileId;
break;
case 'filter': // FILES page 來的 filter
this.conformanceFilterId = params.fileId;
break;
}
} else {
switch (params.type) {
case 'log': // FILES page 來的已存檔 rule(log-check)
this.conformanceLogId = file.parent.id;
this.conformanceFileName = file.name;
break;
case 'filter': // FILES page 來的已存檔 rule(filter-check)
this.conformanceFilterId = file.parent.id;
this.conformanceFileName = file.name;
break;
}
await this.conformanceStore.getConformanceReport();
}
await this.conformanceStore.getConformanceParams();
// 給 rule 檔取得 ShowBar 一些時間
setTimeout(() => this.isLoading = false, 500);
},
mounted() {
this.selectedRuleType = 'Have activity';
this.selectedActivitySequence = 'Start & End';
this.selectedMode = 'Directly follows';
this.selectedProcessScope = 'End to end';
this.selectedActSeqMore = 'All';
this.selectedActSeqFromTo = 'From';
},
beforeUnmount() {
// 離開 conformance 時將 id 為 null避免污染其他檔案
this.conformanceLogId = null;
this.conformanceFilterId = null;
this.conformanceLogCreateCheckId = null;
this.conformanceFilterCreateCheckId = null;
this.conformanceRuleData = null;
this.conformanceFileName = null;
},
async beforeRouteEnter(to, from, next) { async beforeRouteEnter(to, from, next) {
const isCheckPage = to.name.includes('Check'); const isCheckPage = to.name.includes('Check');
if (isCheckPage) { if (isCheckPage) {
const conformanceStore = useConformanceStore(); const conformanceStore = useConformanceStore();
// Save token in Headers.
// (?:^|.;\s):匹配 "luciaToken" 之前的內容,允許它在字符串開頭或某個分號之後。
// luciaToken\s=\s**:匹配 "luciaToken=",並忽略兩邊的空格。
// ([^;]*):捕獲 "luciaToken" 的值,直到遇到下一個分號或字符串結尾。
// .*$:匹配剩餘的字符,確保完整的提取。
// |^.*$:在找不到 "luciaToken" 的情況下,匹配整個字符串。
switch (to.params.type) { switch (to.params.type) {
case 'log': case 'log':
conformanceStore.setConformanceLogCreateCheckId(to.params.fileId); conformanceStore.setConformanceLogCreateCheckId(to.params.fileId);
@@ -106,9 +24,84 @@ export default {
break; break;
} }
await conformanceStore.getConformanceReport(); await conformanceStore.getConformanceReport();
to.meta.file = await conformanceStore.conformanceTempReportData?.file; // 將 file data 存到 route 給 Navbar, StatusBar 使用 to.meta.file = await conformanceStore.conformanceTempReportData?.file;
} }
next(); next();
} }
} }
</script> </script>
<script setup>
import { onMounted, onBeforeUnmount } from 'vue';
import { useRoute } from 'vue-router';
import { storeToRefs } from 'pinia';
import { useLoadingStore } from '@/stores/loading';
import { useConformanceStore } from '@/stores/conformance';
import StatusBar from '@/components/Discover/StatusBar.vue';
import ConformanceResults from '@/components/Discover/Conformance/ConformanceResults.vue';
import ConformanceSidebar from '@/components/Discover/Conformance/ConformanceSidebar.vue';
const route = useRoute();
// Stores
const loadingStore = useLoadingStore();
const conformanceStore = useConformanceStore();
const { isLoading } = storeToRefs(loadingStore);
const { conformanceLogId, conformanceFilterId, conformanceLogCreateCheckId, conformanceFilterCreateCheckId,
conformanceLogTempCheckId, conformanceFilterTempCheckId, selectedRuleType, selectedActivitySequence,
selectedMode, selectedProcessScope, selectedActSeqMore, selectedActSeqFromTo, conformanceRuleData,
conformanceTempReportData, conformanceFileName,
} = storeToRefs(conformanceStore);
// Created logic
(async () => {
isLoading.value = true;
const params = route.params;
const file = route.meta.file;
const isCheckPage = route.name.includes('Check');
if(!isCheckPage) {
switch (params.type) {
case 'log':
conformanceLogId.value = params.fileId;
break;
case 'filter':
conformanceFilterId.value = params.fileId;
break;
}
} else {
switch (params.type) {
case 'log':
conformanceLogId.value = file.parent.id;
conformanceFileName.value = file.name;
break;
case 'filter':
conformanceFilterId.value = file.parent.id;
conformanceFileName.value = file.name;
break;
}
await conformanceStore.getConformanceReport();
}
await conformanceStore.getConformanceParams();
setTimeout(() => isLoading.value = false, 500);
})();
// Mounted
onMounted(() => {
selectedRuleType.value = 'Have activity';
selectedActivitySequence.value = 'Start & End';
selectedMode.value = 'Directly follows';
selectedProcessScope.value = 'End to end';
selectedActSeqMore.value = 'All';
selectedActSeqFromTo.value = 'From';
});
onBeforeUnmount(() => {
conformanceLogId.value = null;
conformanceFilterId.value = null;
conformanceLogCreateCheckId.value = null;
conformanceFilterCreateCheckId.value = null;
conformanceRuleData.value = null;
conformanceFileName.value = null;
});
</script>

View File

@@ -1,29 +1,22 @@
<template> <template>
<!-- Sidebar: Switch data type --> <!-- Sidebar: Switch data type -->
<div class="flex flex-col justify-between py-4 w-14 h-screen-main absolute bottom-0 left-0 z-10" <div class="flex flex-col justify-between py-4 w-14 h-screen-main absolute bottom-0 left-0 z-10" :class="sidebarLeftValue? 'bg-neutral-50':''">
:class="sidebarLeftValue ? 'bg-neutral-50' : ''">
<ul class="space-y-4 flex flex-col justify-center items-center"> <ul class="space-y-4 flex flex-col justify-center items-center">
<li class="inline-flex items-center justify-center border border-neutral-500 rounded-full w-9 h-9 cursor-pointer bg-neutral-50 drop-shadow <li class="inline-flex items-center justify-center border border-neutral-500 rounded-full w-9 h-9 cursor-pointer bg-neutral-50 drop-shadow
hover:border-primary" @click="sidebarView = !sidebarView" :class="{ 'border-primary': sidebarView }" hover:border-primary" @click="sidebarView = !sidebarView" :class="{'border-primary': sidebarView}" v-tooltip="tooltip.sidebarView">
v-tooltip="tooltip.sidebarView"> <span class="material-symbols-outlined !text-2xl hover:text-primary p-1.5" :class="[sidebarView ? 'text-primary' : 'text-neutral-500']">
<span class="material-symbols-outlined !text-2xl hover:text-primary p-1.5"
:class="[sidebarView ? 'text-primary' : 'text-neutral-500']">
track_changes track_changes
</span> </span>
</li> </li>
<li class="inline-flex items-center justify-center border border-neutral-500 rounded-full w-9 h-9 cursor-pointer bg-neutral-50 drop-shadow <li class="inline-flex items-center justify-center border border-neutral-500 rounded-full w-9 h-9 cursor-pointer bg-neutral-50 drop-shadow
hover:border-primary" @click="sidebarFilter = !sidebarFilter" :class="{ 'border-primary': sidebarFilter }" hover:border-primary" @click="sidebarFilter = !sidebarFilter" :class="{'border-primary': sidebarFilter}" v-tooltip="tooltip.sidebarFilter">
v-tooltip="tooltip.sidebarFilter"> <span class="material-symbols-outlined !text-2xl hover:text-primary p-1.5" :class="[sidebarFilter ? 'text-primary' : 'text-neutral-500']" id="iconFilter">
<span class="material-symbols-outlined !text-2xl hover:text-primary p-1.5"
:class="[sidebarFilter ? 'text-primary' : 'text-neutral-500']" id="iconFilter">
tornado tornado
</span> </span>
</li> </li>
<li class="inline-flex items-center justify-center border border-neutral-500 rounded-full w-9 h-9 cursor-pointer bg-neutral-50 <li class="inline-flex items-center justify-center border border-neutral-500 rounded-full w-9 h-9 cursor-pointer bg-neutral-50
drop-shadow hover:border-primary" @click="sidebarTraces = !sidebarTraces" drop-shadow hover:border-primary" @click="sidebarTraces = !sidebarTraces" :class="{'border-primary': sidebarTraces}" v-tooltip="tooltip.sidebarTraces">
:class="{ 'border-primary': sidebarTraces }" v-tooltip="tooltip.sidebarTraces"> <span class="material-symbols-outlined !text-2xl hover:text-primary p-1.5" :class="[sidebarTraces ? 'text-primary' : 'text-neutral-500']">
<span class="material-symbols-outlined !text-2xl hover:text-primary p-1.5"
:class="[sidebarTraces ? 'text-primary' : 'text-neutral-500']">
rebase rebase
</span> </span>
</li> </li>
@@ -40,7 +33,7 @@
<ul class="flex flex-col justify-center items-center"> <ul class="flex flex-col justify-center items-center">
<li class="inline-flex items-center justify-center border border-neutral-500 rounded-full w-9 h-9 cursor-pointer <li class="inline-flex items-center justify-center border border-neutral-500 rounded-full w-9 h-9 cursor-pointer
bg-neutral-50 drop-shadow hover:border-primary" @click="sidebarState = !sidebarState" bg-neutral-50 drop-shadow hover:border-primary" @click="sidebarState = !sidebarState"
:class="{ 'border-primary': sidebarState }" id="iconState" v-tooltip.left="tooltip.sidebarState"> :class="{'border-primary': sidebarState}" id="iconState" v-tooltip.left="tooltip.sidebarState">
<span class="material-symbols-outlined !text-2xl text-neutral-500 hover:text-primary p-1.5" <span class="material-symbols-outlined !text-2xl text-neutral-500 hover:text-primary p-1.5"
:class="[sidebarState ? 'text-primary' : 'text-neutral-500']"> :class="[sidebarState ? 'text-primary' : 'text-neutral-500']">
info info
@@ -50,486 +43,19 @@
</div> </div>
<!-- Sidebar Model --> <!-- Sidebar Model -->
<SidebarView v-model:visible="sidebarView" @switch-map-type="switchMapType" @switch-curve-styles="switchCurveStyles" <SidebarView v-model:visible="sidebarView" @switch-map-type="switchMapType" @switch-curve-styles="switchCurveStyles" @switch-rank="switchRank"
@switch-rank="switchRank" @switch-data-layer-type="switchDataLayerType"></SidebarView> @switch-data-layer-type="switchDataLayerType" ></SidebarView>
<SidebarState v-model:visible="sidebarState" :insights="insights" :stats="stats"></SidebarState> <SidebarState v-model:visible="sidebarState" :insights="insights" :stats="stats"></SidebarState>
<SidebarTraces v-model:visible="sidebarTraces" :cases="cases" @switch-Trace-Id="switchTraceId" ref="tracesView"> <SidebarTraces v-model:visible="sidebarTraces" :cases="cases" @switch-Trace-Id="switchTraceId" ref="tracesViewRef"></SidebarTraces>
</SidebarTraces>
<SidebarFilter v-model:visible="sidebarFilter" :filterTasks="filterTasks" :filterStartToEnd="filterStartToEnd" <SidebarFilter v-model:visible="sidebarFilter" :filterTasks="filterTasks" :filterStartToEnd="filterStartToEnd"
:filterEndToStart="filterEndToStart" :filterTimeframe="filterTimeframe" :filterTrace="filterTrace" :filterEndToStart="filterEndToStart" :filterTimeframe="filterTimeframe" :filterTrace="filterTrace"
@submit-all="createCy(mapType)" @switch-Trace-Id="switchTraceId" ref="sidebarFilterRef"></SidebarFilter> @submit-all="createCy(mapType)" @switch-Trace-Id="switchTraceId" ref="sidebarFilterRefComp"></SidebarFilter>
</template> </template>
<script> <script>
import { onBeforeMount, computed, } from 'vue';
import { storeToRefs } from 'pinia';
import { useRoute } from 'vue-router';
import { useLoadingStore } from '@/stores/loading';
import { useAllMapDataStore } from '@/stores/allMapData';
import { useConformanceStore } from '@/stores/conformance'; import { useConformanceStore } from '@/stores/conformance';
import cytoscapeMap from '@/module/cytoscapeMap.js';
import { useCytoscapeStore } from '@/stores/cytoscapeStore';
import { useMapPathStore } from '@/stores/mapPathStore';
import SidebarView from '@/components/Discover/Map/SidebarView.vue';
import SidebarState from '@/components/Discover/Map/SidebarState.vue';
import SidebarTraces from '@/components/Discover/Map/SidebarTraces.vue';
import SidebarFilter from '@/components/Discover/Map/SidebarFilter.vue';
import ImgCapsule1 from '@/assets/capsule1.svg';
import ImgCapsule2 from '@/assets/capsule2.svg';
import ImgCapsule3 from '@/assets/capsule3.svg';
import ImgCapsule4 from '@/assets/capsule4.svg';
const ImgCapsules = [ImgCapsule1, ImgCapsule2, ImgCapsule3, ImgCapsule4];
export default { export default {
setup() {
const loadingStore = useLoadingStore();
const allMapDataStore = useAllMapDataStore();
const { isLoading } = storeToRefs(loadingStore);
const route = useRoute();
const { processMap, bpmn, stats, insights, traceId, traces, baseTraces, baseTraceId,
filterTasks, filterStartToEnd, filterEndToStart, filterTimeframe, filterTrace,
temporaryData, isRuleData, ruleData, logId, baseLogId, createFilterId, cases,
postRuleData
} = storeToRefs(allMapDataStore);
const cytoscapeStore = useCytoscapeStore();
const { setCurrentGraphId } = cytoscapeStore;
const numberBeforeMapInRoute = computed(() => {
// 取得當前路由的路徑
const path = route.path;
// 使用斜線分割路徑
const segments = path.split('/');
// 查找包含 'map' 的片段索引
const mapIndex = segments.findIndex(segment => segment.includes('map'));
if (mapIndex > 0) {
// 定位到 'map' 片段的左邊片段
const previousSegment = segments[mapIndex - 1];
// 萃取左邊片段中的數字
const match = previousSegment.match(/\d+/);
return match ? match[0] : 'No number found';
}
return 'No map segment found';
});
onBeforeMount(() => {
setCurrentGraphId(numberBeforeMapInRoute);
});
return {
isLoading, processMap, bpmn, stats, insights, traceId, traces, baseTraces,
baseTraceId, filterTasks, filterStartToEnd, filterEndToStart, filterTimeframe,
filterTrace, logId, baseLogId, createFilterId, temporaryData, isRuleData,
ruleData, allMapDataStore, cases, postRuleData,
setCurrentGraphId,
};
},
props: ['type', 'checkType', 'checkId', 'checkFileId'], // 來自 router 的 props
components: {
SidebarView,
SidebarState,
SidebarTraces,
SidebarFilter,
},
data() {
return {
processMapData: {
startId: 0,
endId: 1,
nodes: [],
edges: [],
},
bpmnData: {
startId: 0,
endId: 1,
nodes: [],
edges: [],
},
cytoscapeGraph: null,
curveStyle: 'unbundled-bezier', // unbundled-bezier | taxi
mapType: 'processMap', // processMap | bpmn
mapPathStore: useMapPathStore(),
dataLayerType: 'freq', // freq | duration
dataLayerOption: 'total',
rank: 'LR', // 直向 TB | 橫向 LR
traceId: 1,
sidebarView: false, // SideBar: Visualization Setting
sidebarState: false, // SideBar: Summary & Insight
sidebarTraces: false, // SideBar: Traces
sidebarFilter: false, // SideBar: Filter
infiniteFirstCases: null,
startNodeId: -1,
endNodeId: -1,
tooltip: {
sidebarView: {
value: 'Visualization Setting',
class: 'ml-1',
pt: {
text: 'text-[10px] p-1'
}
},
sidebarTraces: {
value: 'Trace',
class: 'ml-1',
pt: {
text: 'text-[10px] p-1'
}
},
sidebarFilter: {
value: 'Filter',
class: 'ml-1',
pt: {
text: 'text-[10px] p-1'
}
},
sidebarState: {
value: 'Summary',
class: 'ml-1',
pt: {
text: 'text-[10px] p-1'
}
},
}
}
},
computed: {
sidebarLeftValue: function () {
const result = this.sidebarView === true || this.sidebarTraces === true || this.sidebarFilter === true;
return result;
}
},
watch: {
sidebarView: function (newValue) {
if (newValue) {
this.sidebarFilter = false;
this.sidebarTraces = false;
}
},
sidebarFilter: function (newValue) {
if (newValue) {
this.sidebarView = false;
this.sidebarState = false;
this.sidebarTraces = false;
this.sidebarState = false;
}
},
sidebarTraces: function (newValue) {
if (newValue) {
this.sidebarView = false;
this.sidebarState = false;
this.sidebarFilter = false;
this.sidebarState = false;
}
},
sidebarState: function (newValue) {
if (newValue) {
this.sidebarFilter = false;
this.sidebarTraces = false;
}
},
},
methods: {
/**
* switch map type
* @param {string} type 'processMap' | 'bpmn',可傳入以上任一。
*/
async switchMapType(type) {
this.mapType = type;
this.createCy(type);
},
/**
* switch curve style
* @param {string} style 直角 'unbundled-bezier' | 'taxi',可傳入以上任一。
*/
async switchCurveStyles(style) {
this.curveStyle = style;
this.createCy(this.mapType);
},
/**
* switch rank
* @param {string} rank 直向 'TB' | 橫向 'LR',可傳入以上任一。
*/
async switchRank(rank) {
this.rank = rank;
this.createCy(this.mapType);
},
/**
* switch Data Layoer Type or Option.
* @param {string} type freq | duration
* @param {string} option 下拉選單中的選項
*/
async switchDataLayerType(type, option) {
this.dataLayerType = type;
this.dataLayerOption = option;
this.createCy(this.mapType);
},
/**
* switch trace id and data
* @param {event} e input 傳入的事件
*/
async switchTraceId(e) {
if (e.id == this.traceId) return;
// 超過 1000 筆要 loading 畫面
this.isLoading = true; // 都要 loading 畫面
this.traceId = e.id;
await this.allMapDataStore.getTraceDetail();
this.$refs.tracesView.createCy();
this.isLoading = false;
},
/**
* 將 element nodes 資料彙整
* @param {object} type 'processMapData' | 'bpmnData',可傳入以上任一。
*/
setNodesData(mapData) {
const mapType = this.mapType;
const logFreq = {
"total": "",
"rel_freq": "",
"average": "",
"median": "",
"max": "",
"min": "",
"cases": ""
};
const logDuration = {
"total": "",
"rel_duration": "",
"average": "",
"median": "",
"max": "",
"min": "",
};
// BPMN 才有 gateway 類別
const gateway = {
parallel: "+",
exclusive: "x",
inclusive: "o",
};
// 避免每次渲染都重複累加
mapData.nodes = [];
// 將 api call 回來的資料帶進 node
this[mapType].vertices.forEach(node => {
switch (node.type) {
// add type of 'bpmn gateway' node
case 'gateway':
mapData.nodes.push({
data: {
id: node.id,
type: node.type,
label: gateway[node.gateway_type],
height: 60,
width: 60,
backgroundColor: '#FFF',
bordercolor: '#003366',
shape: "diamond",
freq: logFreq,
duration: logDuration,
}
})
break;
// add type of 'event' node
case 'event':
if (node.event_type === 'start') {
mapData.startId = node.id;
this.startNodeId = node.id;
}
else if (node.event_type === 'end') {
mapData.endId = node.id;
this.endNodeId = node.id;
}
mapData.nodes.push({
data: {
id: node.id,
type: node.type,
label: node.event_type,
height: 48,
width: 48,
backgroundColor: '#FFFFFF',
bordercolor: '#0F172A',
textColor: '#FF3366',
shape: "ellipse",
freq: logFreq,
duration: logDuration,
}
});
break;
// add type of 'activity' node
default:
mapData.nodes.push({
data: {
id: node.id,
type: node.type,
label: node.label,
height: 48,
width: 216,
textColor: '#0F172A',
backgroundColor: 'rgba(0, 0, 0, 0)',
borderradius: 999,
shape: "round-rectangle",
freq: node.freq,
duration: node.duration,
backgroundOpacity: 0,
borderOpacity: 0,
}
})
break;
}
});
},
/**
* 將 element edges 資料彙整
* @param {object} type 'processMapData' | 'bpmnData',可傳入以上任一。
*/
setEdgesData(mapData) {
const mapType = this.mapType;
//add event duration is empty
const logDuration = {
"total": "",
"rel_duration": "",
"average": "",
"median": "",
"max": "",
"min": "",
"cases": ""
};
mapData.edges = [];
this[mapType].edges.forEach(edge => {
mapData.edges.push({
data: {
source: edge.tail,
target: edge.head,
freq: edge.freq,
duration: edge.duration === null ? logDuration : edge.duration,
// Don't know why but tail is related to start and head is related to end
edgeStyle: edge.tail === this.startNodeId || edge.head === this.endNodeId ? 'dotted' : 'solid',
lineWidth: 1,
},
});
});
},
/**
* create cytoscape's map
* @param {string} type this.mapType 'processMap' | 'bpmn',可傳入以上任一。
*/
async createCy(type) {
const graphId = document.getElementById('cy');
const mapData = type === 'processMap' ? this.processMapData : this.bpmnData;
if (this[type].vertices.length !== 0) {
this.setNodesData(mapData);
this.setEdgesData(mapData);
this.setActivityBgImage(mapData);
this.cytoscapeGraph = await cytoscapeMap(mapData, this.dataLayerType, this.dataLayerOption, this.curveStyle, this.rank, graphId);
const processOrBPMN = this.mapType === 'processMap' ? 'process' : 'bpmn';
const curveType = this.curveStyle === 'taxi' ? 'elbow' : 'curved';
const directionType = this.rank === 'LR' ? 'horizontal' : 'vertical';
await this.mapPathStore.setCytoscape(this.cytoscapeGraph, processOrBPMN, curveType, directionType);
};
},
setActivityBgImage(mapData) {
const nodes = mapData.nodes;
// 一組有多少個activities
const groupSize = Math.floor(nodes.length / ImgCapsules.length);
let nodeOptionArr = [];
const leveledGroups = []; // 每一個level會使用不同的膠囊圖片
// 設定除了 start, end 的 node 顏色
// 找出 type activity's node
const activityNodeArray = nodes.filter(node => node.data.type === 'activity');
// 找出除了 start, end 以外所有的 node 的 option value
activityNodeArray.forEach(node => nodeOptionArr.push(node.data[this.dataLayerType][this.dataLayerOption]));
// 將node的option值從小到大排序(映對色階淺到深)
nodeOptionArr = nodeOptionArr.sort((a, b) => a - b);
for (let i = 0; i < ImgCapsules.length; i++) {
const startIdx = i * groupSize;
const endIdx = (i === ImgCapsules.length - 1) ? activityNodeArray.length : startIdx + groupSize;
leveledGroups.push(nodeOptionArr.slice(startIdx, endIdx));
}
for (let level = 0; level < leveledGroups.length; level++) {
leveledGroups[level].forEach(option => {
// 考慮可能有名次一樣的情形
const curNodes = activityNodeArray.filter(activityNode => activityNode.data[this.dataLayerType][this.dataLayerOption] === option);
curNodes.forEach(curNode => {
curNode.data = {
...curNode.data,
nodeImageUrl: ImgCapsules[level],
level,
};
});
});
}
},
},
async created() {
const routeParams = this.$route.params;
const file = this.$route.meta.file;
const isCheckPage = this.$route.name.includes('Check');
// 先 loading 再執行以下程式
this.isLoading = true;
// Log 檔前往 Map Log 頁, Filter 檔前往 Map Filter 頁
switch (routeParams.type) {
case 'log':
if (!isCheckPage) {
this.logId = await routeParams.fileId;
this.baseLogId = await routeParams.fileId;
} else {
this.logId = await file.parent.id;
this.baseLogId = await file.parent.id;
}
break;
case 'filter':
if (!isCheckPage) {
this.createFilterId = await routeParams.fileId;
} else {
this.createFilterId = await file.parent.id;
}
// 取得 logID 和上次儲存的 Funnel
await this.allMapDataStore.fetchFunnel(this.createFilterId);
this.isRuleData = await Array.from(this.temporaryData);
this.ruleData = await this.isRuleData.map(e => this.$refs.sidebarFilterRef.setRule(e));
break;
}
// 取得 logId 後才 call api
await this.allMapDataStore.getAllMapData();
await this.allMapDataStore.getAllTrace();
// log、filter 檔切換過程中, trace id 不同,將初始 trace id 設定為該檔案的 trace 幣一筆資料的 id。
this.traceId = await this.traces[0]?.id;
this.baseTraceId = await this.baseTraces[0]?.id;
await this.createCy(this.mapType);
await this.allMapDataStore.getFilterParams();
await this.allMapDataStore.getTraceDetail();
// 執行完後才取消 loading
this.isLoading = false;
// 存檔 Modal 打開時,側邊欄要關閉
this.$emitter.on('saveModal', boolean => {
this.sidebarView = boolean;
this.sidebarFilter = boolean;
this.sidebarTraces = boolean;
this.sidebarState = boolean;
});
this.$emitter.on('leaveFilter', boolean => {
this.sidebarView = boolean;
this.sidebarFilter = boolean;
this.sidebarTraces = boolean;
this.sidebarState = boolean;
});
},
beforeUnmount() {
this.logId = null;
this.createFilterId = null;
this.tempFilterId = null;
this.temporaryData = [];
this.postRuleData = [];
this.ruleData = [];
},
async beforeRouteEnter(to, from, next) { async beforeRouteEnter(to, from, next) {
const isCheckPage = to.name.includes('Check'); const isCheckPage = to.name.includes('Check');
@@ -544,9 +70,413 @@ export default {
break; break;
} }
await conformanceStore.getConformanceReport(true); await conformanceStore.getConformanceReport(true);
to.meta.file = conformanceStore.routeFile; // 將 file data 存到 route to.meta.file = conformanceStore.routeFile;
} }
next(); next();
} }
} }
</script> </script>
<script setup>
import { ref, computed, watch, onBeforeMount, onBeforeUnmount } from 'vue';
import { useRoute } from 'vue-router';
import { storeToRefs } from 'pinia';
import { useLoadingStore } from '@/stores/loading';
import { useAllMapDataStore } from '@/stores/allMapData';
import cytoscapeMap from '@/module/cytoscapeMap.js';
import { useCytoscapeStore } from '@/stores/cytoscapeStore';
import { useMapPathStore } from '@/stores/mapPathStore';
import emitter from '@/utils/emitter';
import SidebarView from '@/components/Discover/Map/SidebarView.vue';
import SidebarState from '@/components/Discover/Map/SidebarState.vue';
import SidebarTraces from '@/components/Discover/Map/SidebarTraces.vue';
import SidebarFilter from '@/components/Discover/Map/SidebarFilter.vue';
import ImgCapsule1 from '@/assets/capsule1.svg';
import ImgCapsule2 from '@/assets/capsule2.svg';
import ImgCapsule3 from '@/assets/capsule3.svg';
import ImgCapsule4 from '@/assets/capsule4.svg';
const ImgCapsules = [ImgCapsule1, ImgCapsule2, ImgCapsule3, ImgCapsule4];
const props = defineProps(['type', 'checkType', 'checkId', 'checkFileId']);
const route = useRoute();
// Stores
const loadingStore = useLoadingStore();
const allMapDataStore = useAllMapDataStore();
const { isLoading } = storeToRefs(loadingStore);
const { processMap, bpmn, stats, insights, traceId, traces, baseTraces, baseTraceId,
filterTasks, filterStartToEnd, filterEndToStart, filterTimeframe, filterTrace,
temporaryData, isRuleData, ruleData, logId, baseLogId, createFilterId, cases,
postRuleData
} = storeToRefs(allMapDataStore);
const cytoscapeStore = useCytoscapeStore();
const { setCurrentGraphId } = cytoscapeStore;
const mapPathStore = useMapPathStore();
const numberBeforeMapInRoute = computed(() => {
const path = route.path;
const segments = path.split('/');
const mapIndex = segments.findIndex(segment => segment.includes('map'));
if (mapIndex > 0) {
const previousSegment = segments[mapIndex - 1];
const match = previousSegment.match(/\d+/);
return match ? match[0] : 'No number found';
}
return 'No map segment found';
});
onBeforeMount(() => {
setCurrentGraphId(numberBeforeMapInRoute);
});
// Data
const processMapData = ref({
startId: 0,
endId: 1,
nodes: [],
edges: [],
});
const bpmnData = ref({
startId: 0,
endId: 1,
nodes: [],
edges: [],
});
const cytoscapeGraph = ref(null);
const curveStyle = ref('unbundled-bezier');
const mapType = ref('processMap');
const dataLayerType = ref('freq');
const dataLayerOption = ref('total');
const rank = ref('LR');
const localTraceId = ref(1);
const sidebarView = ref(false);
const sidebarState = ref(false);
const sidebarTraces = ref(false);
const sidebarFilter = ref(false);
const infiniteFirstCases = ref(null);
const tracesViewRef = ref(null);
const sidebarFilterRefComp = ref(null);
const tooltip = {
sidebarView: {
value: 'Visualization Setting',
class: 'ml-1',
pt: {
text: 'text-[10px] p-1'
}
},
sidebarTraces: {
value: 'Trace',
class: 'ml-1',
pt: {
text: 'text-[10px] p-1'
}
},
sidebarFilter: {
value: 'Filter',
class: 'ml-1',
pt: {
text: 'text-[10px] p-1'
}
},
sidebarState: {
value: 'Summary',
class: 'ml-1',
pt: {
text: 'text-[10px] p-1'
}
},
};
// Computed
const sidebarLeftValue = computed(() => {
return sidebarView.value === true || sidebarTraces.value === true || sidebarFilter.value === true;
});
// Watch
watch(sidebarView, (newValue) => {
if(newValue) {
sidebarFilter.value = false;
sidebarTraces.value = false;
}
});
watch(sidebarFilter, (newValue) => {
if(newValue) {
sidebarView.value = false;
sidebarState.value = false;
sidebarTraces.value = false;
sidebarState.value = false;
}
});
watch(sidebarTraces, (newValue) => {
if(newValue) {
sidebarView.value = false;
sidebarState.value = false;
sidebarFilter.value = false;
sidebarState.value = false;
}
});
watch(sidebarState, (newValue) => {
if(newValue) {
sidebarFilter.value = false;
sidebarTraces.value = false;
}
});
// Methods
async function switchMapType(type) {
mapType.value = type;
createCy(type);
}
async function switchCurveStyles(style) {
curveStyle.value = style;
createCy(mapType.value);
}
async function switchRank(rankValue) {
rank.value = rankValue;
createCy(mapType.value);
}
async function switchDataLayerType(type, option){
dataLayerType.value = type;
dataLayerOption.value = option;
createCy(mapType.value);
}
async function switchTraceId(e) {
if(e.id == traceId.value) return;
isLoading.value = true;
traceId.value = e.id;
await allMapDataStore.getTraceDetail();
tracesViewRef.value.createCy();
isLoading.value = false;
}
function setNodesData(mapData) {
const mapTypeVal = mapType.value;
const logFreq = {
"total": "",
"rel_freq": "",
"average": "",
"median": "",
"max": "",
"min": "",
"cases": ""
};
const logDuration = {
"total": "",
"rel_duration": "",
"average": "",
"median": "",
"max": "",
"min": "",
};
const gateway = {
parallel: "+",
exclusive: "x",
inclusive: "o",
};
mapData.nodes = [];
const mapSource = mapTypeVal === 'processMap' ? processMap.value : bpmn.value;
mapSource.vertices.forEach(node => {
switch (node.type) {
case 'gateway':
mapData.nodes.push({
data:{
id:node.id,
type:node.type,
label:gateway[node.gateway_type],
height:60,
width:60,
backgroundColor:'#FFF',
bordercolor:'#003366',
shape:"diamond",
freq:logFreq,
duration:logDuration,
}
})
break;
case 'event':
if(node.event_type === 'start') mapData.startId = node.id;
else if(node.event_type === 'end') mapData.endId = node.id;
mapData.nodes.push({
data:{
id:node.id,
type:node.type,
label:node.event_type,
height: 48,
width: 48,
backgroundColor:'#FFFFFF',
bordercolor:'#0F172A',
textColor: '#FF3366',
shape:"ellipse",
freq:logFreq,
duration:logDuration,
}
});
break;
default:
mapData.nodes.push({
data:{
id:node.id,
type:node.type,
label:node.label,
height: 48,
width: 216,
textColor: '#0F172A',
backgroundColor:'rgba(0, 0, 0, 0)',
borderradius: 999,
shape:"round-rectangle",
freq:node.freq,
duration:node.duration,
backgroundOpacity: 0,
borderOpacity: 0,
}
})
break;
}
});
}
function setEdgesData(mapData) {
const mapTypeVal = mapType.value;
const logDuration = {
"total": "",
"rel_duration": "",
"average": "",
"median": "",
"max": "",
"min": "",
"cases": ""
};
mapData.edges = [];
const mapSource = mapTypeVal === 'processMap' ? processMap.value : bpmn.value;
mapSource.edges.forEach(edge => {
mapData.edges.push({
data: {
source:edge.tail,
target:edge.head,
freq:edge.freq,
duration:edge.duration === null ? logDuration : edge.duration,
style:'dotted',
lineWidth:1,
},
});
});
}
async function createCy(type) {
const graphId = document.getElementById('cy');
const mapData = type === 'processMap'? processMapData.value: bpmnData.value;
const mapSource = type === 'processMap' ? processMap.value : bpmn.value;
if(mapSource.vertices.length !== 0){
setNodesData(mapData);
setEdgesData(mapData);
setActivityBgImage(mapData);
cytoscapeGraph.value = await cytoscapeMap(mapData, dataLayerType.value, dataLayerOption.value, curveStyle.value, rank.value, graphId);
const processOrBPMN = mapType.value === 'processMap' ? 'process' : 'bpmn';
const curveType = curveStyle.value === 'taxi' ? 'elbow' : 'curved';
const directionType = rank.value === 'LR' ? 'horizontal' : 'vertical';
await mapPathStore.setCytoscape(cytoscapeGraph.value, processOrBPMN, curveType, directionType);
};
}
function setActivityBgImage(mapData) {
const nodes = mapData.nodes;
const groupSize = Math.floor(nodes.length / ImgCapsules.length);
let nodeOptionArr = [];
const leveledGroups = [];
const activityNodeArray = nodes.filter(node => node.data.type === 'activity');
activityNodeArray.forEach(node => nodeOptionArr.push(node.data[dataLayerType.value][dataLayerOption.value]));
nodeOptionArr = nodeOptionArr.sort((a, b) => a - b);
for(let i = 0; i < ImgCapsules.length; i++) {
const startIdx = i * groupSize;
const endIdx = (i === ImgCapsules.length - 1) ? activityNodeArray.length : startIdx + groupSize;
leveledGroups.push(nodeOptionArr.slice(startIdx, endIdx));
}
for(let level = 0; level < leveledGroups.length; level++) {
leveledGroups[level].forEach(option => {
const curNodes = activityNodeArray.filter(activityNode => activityNode.data[dataLayerType.value][dataLayerOption.value] === option);
curNodes.forEach(curNode => {
curNode.data = {
...curNode.data,
nodeImageUrl: ImgCapsules[level],
level,
};
});
});
}
}
// Created logic
(async () => {
const routeParams = route.params;
const file = route.meta.file;
const isCheckPage = route.name.includes('Check');
isLoading.value = true;
switch (routeParams.type) {
case 'log':
if(!isCheckPage) {
logId.value = await routeParams.fileId;
baseLogId.value = await routeParams.fileId;
} else {
logId.value = await file.parent.id;
baseLogId.value = await file.parent.id;
}
break;
case 'filter':
if(!isCheckPage) {
createFilterId.value = await routeParams.fileId;
} else {
createFilterId.value = await file.parent.id;
}
await allMapDataStore.fetchFunnel(createFilterId.value);
isRuleData.value = await Array.from(temporaryData.value);
ruleData.value = await isRuleData.value.map(e => sidebarFilterRefComp.value.setRule(e));
break;
}
await allMapDataStore.getAllMapData();
await allMapDataStore.getAllTrace();
traceId.value = await traces.value[0]?.id;
baseTraceId.value = await baseTraces.value[0]?.id;
await createCy(mapType.value);
await allMapDataStore.getFilterParams();
await allMapDataStore.getTraceDetail();
isLoading.value = false;
emitter.on('saveModal', boolean => {
sidebarView.value = boolean;
sidebarFilter.value = boolean;
sidebarTraces.value = boolean;
sidebarState.value = boolean;
});
emitter.on('leaveFilter', boolean => {
sidebarView.value = boolean;
sidebarFilter.value = boolean;
sidebarTraces.value = boolean;
sidebarState.value = boolean;
});
})();
onBeforeUnmount(() => {
logId.value = null;
createFilterId.value = null;
temporaryData.value = [];
postRuleData.value = [];
ruleData.value = [];
});
</script>

View File

@@ -2,7 +2,7 @@
<Chart type="line" :data="primeVueSetDataState" :options="primeVueSetOptionsState" class="h-96" /> <Chart type="line" :data="primeVueSetDataState" :options="primeVueSetOptionsState" class="h-96" />
</template> </template>
<script> <script setup>
import { ref, onMounted } from 'vue'; import { ref, onMounted } from 'vue';
import { import {
setTimeStringFormatBaseOnTimeDifference, setTimeStringFormatBaseOnTimeDifference,
@@ -65,220 +65,208 @@ y: {
}, },
}; };
// 試著把 chart 獨立成一個 vue component const props = defineProps({
// 企圖防止 PrimeVue 誤用其他圖表 option 值的 bug chartData: {
export default { type: Object,
props: {
chartData: {
type: Object,
},
content: {
type: Object,
},
yUnit: {
type: String,
},
pageName: {
type: String,
},
}, },
setup(props) { content: {
type: Object,
},
yUnit: {
type: String,
},
pageName: {
type: String,
},
});
const primeVueSetDataState = ref(null); const primeVueSetDataState = ref(null);
const primeVueSetOptionsState = ref(null); const primeVueSetOptionsState = ref(null);
const colorPrimary = ref('#0099FF'); const colorPrimary = ref('#0099FF');
const colorSecondary = ref('#FFAA44'); const colorSecondary = ref('#FFAA44');
/** /**
* Compare page and Performance have this same function. * Compare page and Performance have this same function.
* @param whichScaleObj PrimeVue scale option object to reference to * @param whichScaleObj PrimeVue scale option object to reference to
* @param customizeOptions * @param customizeOptions
* @param customizeOptions.content * @param customizeOptions.content
* @param customizeOptions.ticksOfXAxis * @param customizeOptions.ticksOfXAxis
*/ */
const getCustomizedScaleOption = (whichScaleObj, {customizeOptions: { const getCustomizedScaleOption = (whichScaleObj, {customizeOptions: {
content, content,
ticksOfXAxis, ticksOfXAxis,
}, },
}) => { }) => {
let resultScaleObj; let resultScaleObj;
resultScaleObj = customizeScaleChartOptionTitleByContent(whichScaleObj, content); resultScaleObj = customizeScaleChartOptionTitleByContent(whichScaleObj, content);
resultScaleObj = customizeScaleChartOptionTicks(resultScaleObj, ticksOfXAxis); resultScaleObj = customizeScaleChartOptionTicks(resultScaleObj, ticksOfXAxis);
return resultScaleObj; return resultScaleObj;
};
/**
* Compare page and Performance have this same function.
* @param {object} scaleObjectToAlter this object follows the format of prive vue chart
* @param {Array<string>} ticksOfXAxis For example, ['05/06', '05,07', '05/08']
* or ['08:03:01', '08:11:18', '09:03:41', ], and so on.
*/
const customizeScaleChartOptionTicks = (scaleObjectToAlter, ticksOfXAxis) => {
return {
...scaleObjectToAlter,
x: {
...scaleObjectToAlter.x,
ticks: {
...scaleObjectToAlter.x.ticks,
callback: function(value, index) {
// 根據不同的級距客製化 x 軸的時間刻度
return ticksOfXAxis[index];
},
},
},
};
};
/** Compare page and Performance have this same function.
* 在一個基本的物件上加以客製化這個物件,客製化的參照來源是 content 的內容
* 之所以有辦法這樣撰寫,是因為我們知道物件的順序是先 x 再 title 再 text
* This function alters the title property of known scales object of Chart option
* This is based on the fact that we know the order must be x -> title -> text.
* @param {object} whichScaleObj PrimeVue scale option object to reference to
* @param content whose property includes x and y and stand for titles
*
* @returns { object } an object modified with two titles
*/
const customizeScaleChartOptionTitleByContent = (whichScaleObj, content) => {
if (!content) {
// Early return
return whichScaleObj;
}
return {
...whichScaleObj,
x: {
...whichScaleObj.x,
title: {
...whichScaleObj.x.title,
text: content.x
}
},
y: {
...whichScaleObj.y,
title: {
...whichScaleObj.y.title,
text: content.y
}
}
};
};
const getLineChartPrimeVueSetting = (chartData, content, pageName) => {
let datasetsArr;
let datasets;
let datasetsPrimary; // For Compare page case
let datasetsSecondary; // For Compare page case
const minX = chartData?.x_axis?.min;
const maxX = chartData?.x_axis?.max;
let xData;
let primeVueSetData = {};
let primeVueSetOption = {};
// 考慮 chartData.data 的dimension
// 當我們遇到了 Compare 頁面的案例
if(pageName === "Compare"){
datasetsPrimary = chartData.data[0].data;
datasetsSecondary = chartData.data[1].data;
datasetsArr = [
{
label: chartData.data[0].label,
data: datasetsPrimary,
fill: false,
tension: 0, // 貝茲曲線張力
borderColor: colorPrimary,
pointBackgroundColor: colorPrimary,
},
{
label: chartData.data[1].label,
data: datasetsSecondary,
fill: false,
tension: 0, // 貝茲曲線張力
borderColor: colorSecondary,
pointBackgroundColor: colorSecondary,
}
];
xData = chartData.data[0].data.map(item => new Date(item.x).getTime());
} else {
datasets = chartData.data;
datasetsArr = [
{
label: content.title,
data: datasets,
fill: false,
tension: 0, // 貝茲曲線張力
borderColor: '#0099FF',
}
];
xData = chartData.data.map(item => new Date(item.x).getTime());
}
// Customize X axis ticks due to different differences between min and max of data group
// Compare page and Performance page share the same logic
const formatToSet = setTimeStringFormatBaseOnTimeDifference(minX, maxX);
const ticksOfXAxis = mapTimestampToAxisTicksByFormat(xData, formatToSet);
const customizedScaleOption = getCustomizedScaleOption(
knownScaleLineChartOptions, {
customizeOptions: {
content, ticksOfXAxis,
}
});
primeVueSetData = {
labels: xData,
datasets: datasetsArr,
};
primeVueSetOption = {
responsive: true,
maintainAspectRatio: false,
layout: {
padding: {
top: 16,
left: 8,
right: 8,
}
},
plugins: {
legend: false, // 圖例
tooltip: {
displayColors: true,
titleFont: {weight: 'normal'},
callbacks: {
label: function(tooltipItem) {
// 取得數據
const label = tooltipItem.dataset.label || '';
// 建立一個小方塊顯示顏色
return `${label}: ${tooltipItem.parsed.y}`; // 使用 Unicode 方塊表示顏色
},
},
},
title: {
display: false,
},
},
scales: customizedScaleOption,
};
primeVueSetOption.scales.y.ticks.precision = 0; // y 軸顯示小數點後 0 位
primeVueSetOption.scales.y.ticks.callback = function (value, index, ticks) {
return value; //這裡的Y軸刻度沒有後綴代表時間的英文字母
};
primeVueSetDataState.value = primeVueSetData;
primeVueSetOptionsState.value = primeVueSetOption;
};
onMounted(() => {
getLineChartPrimeVueSetting(props.chartData, props.content, props.pageName);
});
return {
...props,
primeVueSetDataState,
primeVueSetOptionsState,
};
}
}; };
/**
* Compare page and Performance have this same function.
* @param {object} scaleObjectToAlter this object follows the format of prive vue chart
* @param {Array<string>} ticksOfXAxis For example, ['05/06', '05,07', '05/08']
* or ['08:03:01', '08:11:18', '09:03:41', ], and so on.
*/
const customizeScaleChartOptionTicks = (scaleObjectToAlter, ticksOfXAxis) => {
return {
...scaleObjectToAlter,
x: {
...scaleObjectToAlter.x,
ticks: {
...scaleObjectToAlter.x.ticks,
callback: function(value, index) {
// 根據不同的級距客製化 x 軸的時間刻度
return ticksOfXAxis[index];
},
},
},
};
};
/** Compare page and Performance have this same function.
* 在一個基本的物件上加以客製化這個物件,客製化的參照來源是 content 的內容
* 之所以有辦法這樣撰寫,是因為我們知道物件的順序是先 x 再 title 再 text
* This function alters the title property of known scales object of Chart option
* This is based on the fact that we know the order must be x -> title -> text.
* @param {object} whichScaleObj PrimeVue scale option object to reference to
* @param content whose property includes x and y and stand for titles
*
* @returns { object } an object modified with two titles
*/
const customizeScaleChartOptionTitleByContent = (whichScaleObj, content) => {
if (!content) {
// Early return
return whichScaleObj;
}
return {
...whichScaleObj,
x: {
...whichScaleObj.x,
title: {
...whichScaleObj.x.title,
text: content.x
}
},
y: {
...whichScaleObj.y,
title: {
...whichScaleObj.y.title,
text: content.y
}
}
};
};
const getLineChartPrimeVueSetting = (chartData, content, pageName) => {
let datasetsArr;
let datasets;
let datasetsPrimary; // For Compare page case
let datasetsSecondary; // For Compare page case
const minX = chartData?.x_axis?.min;
const maxX = chartData?.x_axis?.max;
let xData;
let primeVueSetData = {};
let primeVueSetOption = {};
// 考慮 chartData.data 的dimension
// 當我們遇到了 Compare 頁面的案例
if(pageName === "Compare"){
datasetsPrimary = chartData.data[0].data;
datasetsSecondary = chartData.data[1].data;
datasetsArr = [
{
label: chartData.data[0].label,
data: datasetsPrimary,
fill: false,
tension: 0, // 貝茲曲線張力
borderColor: colorPrimary,
pointBackgroundColor: colorPrimary,
},
{
label: chartData.data[1].label,
data: datasetsSecondary,
fill: false,
tension: 0, // 貝茲曲線張力
borderColor: colorSecondary,
pointBackgroundColor: colorSecondary,
}
];
xData = chartData.data[0].data.map(item => new Date(item.x).getTime());
} else {
datasets = chartData.data;
datasetsArr = [
{
label: content.title,
data: datasets,
fill: false,
tension: 0, // 貝茲曲線張力
borderColor: '#0099FF',
}
];
xData = chartData.data.map(item => new Date(item.x).getTime());
}
// Customize X axis ticks due to different differences between min and max of data group
// Compare page and Performance page share the same logic
const formatToSet = setTimeStringFormatBaseOnTimeDifference(minX, maxX);
const ticksOfXAxis = mapTimestampToAxisTicksByFormat(xData, formatToSet);
const customizedScaleOption = getCustomizedScaleOption(
knownScaleLineChartOptions, {
customizeOptions: {
content, ticksOfXAxis,
}
});
primeVueSetData = {
labels: xData,
datasets: datasetsArr,
};
primeVueSetOption = {
responsive: true,
maintainAspectRatio: false,
layout: {
padding: {
top: 16,
left: 8,
right: 8,
}
},
plugins: {
legend: false, // 圖例
tooltip: {
displayColors: true,
titleFont: {weight: 'normal'},
callbacks: {
label: function(tooltipItem) {
// 取得數據
const label = tooltipItem.dataset.label || '';
// 建立一個小方塊顯示顏色
return `${label}: ${tooltipItem.parsed.y}`; // 使用 Unicode 方塊表示顏色
},
},
},
title: {
display: false,
},
},
scales: customizedScaleOption,
};
primeVueSetOption.scales.y.ticks.precision = 0; // y 軸顯示小數點後 0 位
primeVueSetOption.scales.y.ticks.callback = function (value, index, ticks) {
return value; //這裡的Y軸刻度沒有後綴代表時間的英文字母
};
primeVueSetDataState.value = primeVueSetData;
primeVueSetOptionsState.value = primeVueSetOption;
};
onMounted(() => {
getLineChartPrimeVueSetting(props.chartData, props.content, props.pageName);
});
</script> </script>

File diff suppressed because it is too large Load Diff

View File

@@ -71,7 +71,7 @@
<span v-show="secondaryDragData.length > 0" class="material-symbols-outlined material-fill bg-neutral-10 text-neutral-500 block rounded-full absolute -top-[5%] -right-[5%] cursor-pointer hover:text-danger" @click="secondaryDragDelete <span v-show="secondaryDragData.length > 0" class="material-symbols-outlined material-fill bg-neutral-10 text-neutral-500 block rounded-full absolute -top-[5%] -right-[5%] cursor-pointer hover:text-danger" @click="secondaryDragDelete
">do_not_disturb_on</span> ">do_not_disturb_on</span>
</div> </div>
<button class="btn btn-sm" :class="this.isCompareDisabledButton ? 'btn-disable' : 'btn-c-primary'" :disabled="isCompareDisabledButton" @click="compareSubmit">Compare</button> <button class="btn btn-sm" :class="isCompareDisabledButton ? 'btn-disable' : 'btn-c-primary'" :disabled="isCompareDisabledButton" @click="compareSubmit">Compare</button>
</div> </div>
</section> </section>
<!-- Recently Used --> <!-- Recently Used -->
@@ -209,7 +209,7 @@
</section> </section>
</div> </div>
<!-- ContextMenu --> <!-- ContextMenu -->
<ContextMenu ref="fileRightMenu" :model="items" @hide="selectedFile = null" class="cursor-pointer"> <ContextMenu ref="fileRightMenuRef" :model="items" @hide="selectedFile = null" class="cursor-pointer">
<template #item="{ item }"> <template #item="{ item }">
<a class="flex align-items-center px-4 py-2 duration-300 hover:bg-primary/20"> <a class="flex align-items-center px-4 py-2 duration-300 hover:bg-primary/20">
<span class="material-symbols-outlined">{{ item.icon }}</span> <span class="material-symbols-outlined">{{ item.icon }}</span>
@@ -220,8 +220,10 @@
</ContextMenu> </ContextMenu>
</div> </div>
</template> </template>
<script> <script setup>
import { storeToRefs, mapActions, } from 'pinia'; import { ref, computed, watch, onMounted } from 'vue';
import { useRouter } from 'vue-router';
import { storeToRefs } from 'pinia';
import { useMapCompareStore } from '@/stores/mapCompareStore'; import { useMapCompareStore } from '@/stores/mapCompareStore';
import { useLoginStore } from '@/stores/login'; import { useLoginStore } from '@/stores/login';
import { useFilesStore } from '@/stores/files'; import { useFilesStore } from '@/stores/files';
@@ -237,390 +239,388 @@
import IconGrid from '@/components/icons/IconGrid.vue'; import IconGrid from '@/components/icons/IconGrid.vue';
import { renameModal, deleteFileModal, reallyDeleteInformation } from '@/module/alertModal.js'; import { renameModal, deleteFileModal, reallyDeleteInformation } from '@/module/alertModal.js';
export default { const router = useRouter();
data() {
return {
mapCompareStore: useMapCompareStore(),
isActive: null,
isHover: null,
switchListOrGrid: false,
selectedTableFile: null, // table 右鍵選單 item
selectedFile: null, // 右鍵選單 item
selectedType: null,
selectedId: null,
selectedName: null,
items: [
{
label: 'Rename',
icon: 'edit_square',
command: this.rename,
},
{
label: 'Download',
icon: 'download',
command: this.download,
},
{
separator: true // 分隔符號
},
{
label: 'Delete',
icon: 'delete',
command: this.deleteFile,
},
],
compareData: null,
primaryDragData: [],
secondaryDragData: [],
gridSort: null,
columnType: [
{ name: 'By File Name (A to Z)', code: 'nameAscending'},
{ name: 'By File Name (Z to A)', code: 'nameDescending'},
{ name: 'By Dependency (A to Z)', code: 'parentLogAscending'},
{ name: 'By Dependency (Z to A)', code: 'parentLogDescending'},
{ name: 'By File Type (A to Z)', code: 'fileAscending'},
{ name: 'By File Type (Z to A)', code: 'fileDescending'},
{ name: 'By Last Update (A to Z)', code: 'updatedAscending'},
{ name: 'By Last Update (Z to A)', code: 'updatedDescending'},
],
}
},
setup() {
const loginStore = useLoginStore();
const store = useFilesStore();
const allMapDataStore = useAllMapDataStore();
const loadingStore = useLoadingStore();
const { dependentsData, filesTag } = storeToRefs(store);
const { createFilterId, baseLogId } = storeToRefs(allMapDataStore);
const { isLoading } = storeToRefs(loadingStore);
return { loginStore, store, dependentsData, filesTag, allMapDataStore, createFilterId, baseLogId, isLoading } // Stores
}, const mapCompareStore = useMapCompareStore();
components: { const loginStore = useLoginStore();
IconDataFormat, const store = useFilesStore();
IconRule, const allMapDataStore = useAllMapDataStore();
IconsFilter, const pageAdminStore = usePageAdminStore();
IconFlowChart, const loadingStore = useLoadingStore();
IconVector,
IconList,
IconGrid
},
computed: {
/**
* Read allFiles
*/
allFiles: function() {
if(this.store.allFiles.length !== 0){
const sortFiles = Array.from(this.store.allFiles);
sortFiles.sort((x,y) => new Date(y.updated_base) - new Date(x.updated_base));
return sortFiles;
}
},
/**
* 時間排序,如果沒有 accessed_at 就不加入 data
*/
recentlyUsedFiles: function() {
let recentlyUsedFiles = Array.from(this.store.allFiles);
recentlyUsedFiles = recentlyUsedFiles.filter(item => item.accessed_at !== null);
recentlyUsedFiles.sort((x, y) => new Date(y.accessed_base) - new Date(x.accessed_base));
return recentlyUsedFiles;
},
/**
* Compare Submit button disabled
*/
isCompareDisabledButton: function() {
const result = this.primaryDragData.length === 0 || this.secondaryDragData.length === 0;
return result;
},
/**
* Really deleted information
*/
reallyDeleteData: function() {
let result = [];
if(this.store.allFiles.length !== 0){ const { dependentsData, filesTag } = storeToRefs(store);
result = JSON.parse(JSON.stringify(this.store.allFiles)); const { createFilterId, baseLogId } = storeToRefs(allMapDataStore);
result = result.filter(file => file.is_deleted === true); const { isLoading } = storeToRefs(loadingStore);
}
return result // Data
} const isActive = ref(null);
const isHover = ref(null);
const switchListOrGrid = ref(false);
const selectedTableFile = ref(null);
const selectedFile = ref(null);
const selectedType = ref(null);
const selectedId = ref(null);
const selectedName = ref(null);
const compareData = ref(null);
const primaryDragData = ref([]);
const secondaryDragData = ref([]);
const gridSort = ref(null);
const fileRightMenuRef = ref(null);
const items = [
{
label: 'Rename',
icon: 'edit_square',
command: rename,
}, },
watch: { {
filesTag: { label: 'Download',
handler(newValue) { icon: 'download',
if(newValue !== 'COMPARE'){ command: download,
this.primaryDragData = [];
this.secondaryDragData = [];
}
}
},
allFiles: {
handler(newValue) {
if(newValue !== null) this.compareData = JSON.parse(JSON.stringify(newValue));
}
},
reallyDeleteData: {
handler(newValue, oldValue) {
if(newValue.length !== 0 && oldValue.length === 0){
this.showReallyDelete();
}
},
immediate: true
}
}, },
methods: { {
/** separator: true
* Set Row Style },
*/ {
setRowClass() { label: 'Delete',
return ['group'] icon: 'delete',
}, command: deleteFile,
/** },
* Set Compare Row Style ];
*/
setCompareRowClass() {
return ['leading-6']
},
/**
* 選擇該 files 進入 Discover/Compare/Design 頁面
* @param {object} file 該 file 的詳細資料
*/
enterDiscover(file){
let type;
let fileId;
let params;
this.setCurrentMapFile(file.name); const columnType = [
{ name: 'By File Name (A to Z)', code: 'nameAscending'},
{ name: 'By File Name (Z to A)', code: 'nameDescending'},
{ name: 'By Dependency (A to Z)', code: 'parentLogAscending'},
{ name: 'By Dependency (Z to A)', code: 'parentLogDescending'},
{ name: 'By File Type (A to Z)', code: 'fileAscending'},
{ name: 'By File Type (Z to A)', code: 'fileDescending'},
{ name: 'By Last Update (A to Z)', code: 'updatedAscending'},
{ name: 'By Last Update (Z to A)', code: 'updatedDescending'},
];
switch (file.type) { // Computed
case 'log': /**
this.createFilterId = null; * Read allFiles
this.baseLogId = file.id; */
fileId = file.id; const allFiles = computed(() => {
type = file.type; if(store.allFiles.length !== 0){
params = { type: type, fileId: fileId }; const sortFiles = Array.from(store.allFiles);
this.$router.push({name: 'Map', params: params}); sortFiles.sort((x,y) => new Date(y.updated_base) - new Date(x.updated_base));
break; return sortFiles;
case 'filter': }
this.createFilterId = file.id; });
this.baseLogId = file.parent.id;
fileId = file.id; /**
type = file.type; * 時間排序,如果沒有 accessed_at 就不加入 data
params = { type: type, fileId: fileId }; */
this.$router.push({name: 'Map', params: params}); const recentlyUsedFiles = computed(() => {
break; let recentlyUsed = Array.from(store.allFiles);
recentlyUsed = recentlyUsed.filter(item => item.accessed_at !== null);
recentlyUsed.sort((x, y) => new Date(y.accessed_base) - new Date(x.accessed_base));
return recentlyUsed;
});
/**
* Compare Submit button disabled
*/
const isCompareDisabledButton = computed(() => {
return primaryDragData.value.length === 0 || secondaryDragData.value.length === 0;
});
/**
* Really deleted information
*/
const reallyDeleteData = computed(() => {
let result = [];
if(store.allFiles.length !== 0){
result = JSON.parse(JSON.stringify(store.allFiles));
result = result.filter(file => file.is_deleted === true);
}
return result;
});
// Watch
watch(filesTag, (newValue) => {
if(newValue !== 'COMPARE'){
primaryDragData.value = [];
secondaryDragData.value = [];
}
});
watch(allFiles, (newValue) => {
if(newValue !== null) compareData.value = JSON.parse(JSON.stringify(newValue));
});
watch(reallyDeleteData, (newValue, oldValue) => {
if(newValue.length !== 0 && oldValue.length === 0){
showReallyDelete();
}
}, { immediate: true });
// Methods
/**
* Set Row Style
*/
function setRowClass() {
return ['group'];
}
/**
* Set Compare Row Style
*/
function setCompareRowClass() {
return ['leading-6'];
}
/**
* 選擇該 files 進入 Discover/Compare/Design 頁面
* @param {object} file 該 file 的詳細資料
*/
function enterDiscover(file){
let type;
let fileId;
let params;
pageAdminStore.setCurrentMapFile(file.name);
switch (file.type) {
case 'log':
createFilterId.value = null;
baseLogId.value = file.id;
fileId = file.id;
type = file.type;
params = { type: type, fileId: fileId };
router.push({name: 'Map', params: params});
break;
case 'filter':
createFilterId.value = file.id;
baseLogId.value = file.parent.id;
fileId = file.id;
type = file.type;
params = { type: type, fileId: fileId };
router.push({name: 'Map', params: params});
break;
case 'log-check':
case 'filter-check':
fileId = file.id;
type = file.parent.type;
params = { type: type, fileId: fileId };
router.push({name: 'CheckConformance', params: params});
break;
default:
break;
}
}
/**
* Right Click DOM Event
* @param {event} event 該 file 的詳細資料
* @param {string} file file's name
*/
function onRightClick(event, file) {
selectedType.value = file.type;
selectedId.value = file.id;
selectedName.value = file.name;
fileRightMenuRef.value.show(event);
}
/**
* Right Click Table DOM Event
* @param {event} event 該 file 的詳細資料
*/
function onRightClickTable(event) {
selectedType.value = event.data.type;
selectedId.value = event.data.id;
selectedName.value = event.data.name;
fileRightMenuRef.value.show(event.originalEvent);
}
/**
* Right Click Gride Card DOM Event
* @param {event} event 該 file 的詳細資料
* @param {number} index 該 file 的 index
*/
function onGridCardClick(file, index) {
selectedType.value = file.type;
selectedId.value = file.id;
selectedName.value = file.name;
isActive.value = index;
}
/**
* File's Rename
* @param {string} type 該檔案的 type
* @param {number} id 該檔案的 id
* @param {string} source hover icon 該檔案的 icon
* @param {string} fileName file's name
*/
function rename(type, id, source, fileName) {
if(type && id && source === 'list-hover') {
selectedType.value = type;
selectedId.value = id;
selectedName.value = fileName;
}
renameModal(store.rename, selectedType.value, selectedId.value, selectedName.value);
}
/**
* Delete file
* @param {string} type 該檔案的 type
* @param {number} id 該檔案的 id
* @param {string} source hover icon 該檔案的 icon
*/
async function deleteFile(type, id, name, source) {
let srt = '';
let data = [];
// 判斷是否來自 hover icon 選單
if(type && id && name && source === 'list-hover') {
selectedType.value = type;
selectedId.value = id;
selectedName.value = name;
}
// 取得相依性檔案
await store.getDependents(selectedType.value, selectedId.value);
if(dependentsData.value.length !== 0) {
data = [...dependentsData.value];
data.forEach(i => {
switch (i.type) {
case 'log-check': case 'log-check':
i.type = 'rule';
break;
case 'filter-check': case 'filter-check':
fileId = file.id; i.type = 'rule';
type = file.parent.type;
params = { type: type, fileId: fileId };
this.$router.push({name: 'CheckConformance', params: params});
break; break;
default: default:
break; break;
} }
}, const content = `<li>[${i.type}] ${i.name}</li>`;
/** srt += content;
* Right Click DOM Event });
* @param {event} event 該 file 的詳細資料 }
* @param {string} file file's name deleteFileModal(srt, selectedType.value, selectedId.value, selectedName.value);
*/ srt = '';
onRightClick(event, file) {
this.selectedType = file.type;
this.selectedId = file.id;
this.selectedName = file.name;
this.$refs.fileRightMenu.show(event)
},
/**
* Right Click Table DOM Event
* @param {event} event 該 file 的詳細資料
*/
onRightClickTable(event) {
this.selectedType = event.data.type;
this.selectedId = event.data.id;
this.selectedName = event.data.name;
this.$refs.fileRightMenu.show(event.originalEvent)
},
/**
* Right Click Gride Card DOM Event
* @param {event} event 該 file 的詳細資料
* @param {number} index 該 file 的 index
*/
onGridCardClick(file, index) {
this.selectedType = file.type;
this.selectedId = file.id;
this.selectedName = file.name;
this.isActive = index;
},
/**
* File's Rename
* @param {string} type 該檔案的 type
* @param {number} id 該檔案的 id
* @param {string} source hover icon 該檔案的 icon
* @param {string} fileName file's name
*/
rename(type, id, source, fileName) {
if(type && id && source === 'list-hover') {
this.selectedType = type;
this.selectedId = id;
this.selectedName = fileName;
}
renameModal(this.store.rename, this.selectedType, this.selectedId, this.selectedName);
},
/**
* Delete file
* @param {string} type 該檔案的 type
* @param {number} id 該檔案的 id
* @param {string} source hover icon 該檔案的 icon
*/
async deleteFile(type, id, name, source) {
let srt = '';
let data = [];
// 判斷是否來自 hover icon 選單
if(type && id && name && source === 'list-hover') {
this.selectedType = type;
this.selectedId = id;
this.selectedName = name;
}
// 取得相依性檔案
await this.store.getDependents(this.selectedType, this.selectedId);
if(this.dependentsData.length !== 0) {
data = [...this.dependentsData];
data.forEach(i => {
switch (i.type) {
case 'log-check':
i.type = 'rule';
break;
case 'filter-check':
i.type = 'rule';
break;
default:
break;
}
const content = `<li>[${i.type}] ${i.name}</li>`;
srt += content;
});
}
deleteFileModal(srt, this.selectedType, this.selectedId, this.selectedName);
srt = '';
},
/**
* 顯示被 Admin 或被其他帳號刪除的檔案
*/
showReallyDelete(){
let srt = '';
if(this.reallyDeleteData.length !== 0) {
this.reallyDeleteData.forEach(file => {
switch (file.type) {
case 'log-check':
case 'filter-check':
default:
file.type = 'rule';
break;
}
const content = `<li>[${file.type}] ${file.name}</li>`;
srt += content;
});
}
reallyDeleteInformation(srt, this.reallyDeleteData);
srt = '';
},
/**
* Download file as CSV
* @param {string} type 該檔案的 type
* @param {number} id 該檔案的 id
* @param {string} source hover icon 該檔案的 icon
*/
download(type, id, source, name) {
if(type && id && source === 'list-hover' && name) {
this.selectedType = type;
this.selectedId = id;
this.selectedName = name;
}
this.store.downloadFileCSV(this.selectedType, this.selectedId, this.selectedName);
},
/**
* Delete Compare Primary log
*/
primaryDragDelete() {
this.compareData.unshift(this.primaryDragData[0]);
this.primaryDragData.length = 0;
},
/**
* Delete Compare Secondary log
*/
secondaryDragDelete() {
this.compareData.unshift(this.secondaryDragData[0]);
this.secondaryDragData.length = 0;
},
/**
* Enter the Compare page
*/
compareSubmit() {
const primaryType = this.primaryDragData[0].type;
const secondaryType = this.secondaryDragData[0].type;
const primaryId = this.primaryDragData[0].id;
const secondaryId = this.secondaryDragData[0].id;
const params = { primaryType: primaryType, primaryId: primaryId, secondaryType: secondaryType, secondaryId: secondaryId };
this.mapCompareStore.setCompareRouteParam(primaryType, primaryId, secondaryType, secondaryId);
this.$router.push({name: 'CompareDashboard', params: params});
},
/**
* Grid 模板時的篩選器
* @param {event} event choose columnType item
*/
getGridSortData(event) {
const code = event.value.code;
// 文字排序: 將 name 字段轉換為小寫進行比較,使用 localeCompare() 方法進行字母順序比較
switch (code) {
case 'nameAscending':
this.compareData = this.compareData.sort((a, b) => a.name.toLowerCase().localeCompare(b.name.toLowerCase()));
break;
case 'nameDescending':
this.compareData = this.compareData.sort((a, b) => a.name.toLowerCase().localeCompare(b.name.toLowerCase())).reverse();
break;
case 'parentLogAscending':
this.compareData = this.compareData.sort((a, b) => a.parentLog.toLowerCase().localeCompare(b.parentLog.toLowerCase()));
break;
case 'parentLogDescending':
this.compareData = this.compareData.sort((a, b) => a.parentLog.toLowerCase().localeCompare(b.parentLog.toLowerCase())).reverse();
break;
case 'fileAscending':
this.compareData = this.compareData.sort((a, b) => a.fileType.toLowerCase().localeCompare(b.fileType.toLowerCase()));
break;
case 'fileDescending':
this.compareData = this.compareData.sort((a, b) => a.fileType.toLowerCase().localeCompare(b.fileType.toLowerCase())).reverse();
break;
case 'updatedAscending':
this.compareData = this.compareData.sort((a, b) => new Date(a.updated_base) - new Date(b.updated_base));
break;
case 'updatedDescending':
this.compareData = this.compareData.sort((a, b) => new Date(a.updated_base) - new Date(b.updated_base)).reverse();
break;
}
},
...mapActions(
usePageAdminStore, ['setCurrentMapFile',],
)
},
mounted() {
this.isLoading = true;
this.store.fetchAllFiles();
window.addEventListener('click', (e) => {
const clickedLi = e.target.closest('li');
if(!clickedLi || !clickedLi.id.startsWith('li')) this.isActive = null;
})
// 為 DataTable tbody 加入 .scrollbar 選擇器
const tbodyElement = document.querySelector('.p-datatable-tbody');
tbodyElement.classList.add('scrollbar');
this.isLoading = false;
},
} }
/**
* 顯示被 Admin 或被其他帳號刪除的檔案
*/
function showReallyDelete(){
let srt = '';
if(reallyDeleteData.value.length !== 0) {
reallyDeleteData.value.forEach(file => {
switch (file.type) {
case 'log-check':
case 'filter-check':
default:
file.type = 'rule';
break;
}
const content = `<li>[${file.type}] ${file.name}</li>`;
srt += content;
});
}
reallyDeleteInformation(srt, reallyDeleteData.value);
srt = '';
}
/**
* Download file as CSV
* @param {string} type 該檔案的 type
* @param {number} id 該檔案的 id
* @param {string} source hover icon 該檔案的 icon
*/
function download(type, id, source, name) {
if(type && id && source === 'list-hover' && name) {
selectedType.value = type;
selectedId.value = id;
selectedName.value = name;
}
store.downloadFileCSV(selectedType.value, selectedId.value, selectedName.value);
}
/**
* Delete Compare Primary log
*/
function primaryDragDelete() {
compareData.value.unshift(primaryDragData.value[0]);
primaryDragData.value.length = 0;
}
/**
* Delete Compare Secondary log
*/
function secondaryDragDelete() {
compareData.value.unshift(secondaryDragData.value[0]);
secondaryDragData.value.length = 0;
}
/**
* Enter the Compare page
*/
function compareSubmit() {
const primaryType = primaryDragData.value[0].type;
const secondaryType = secondaryDragData.value[0].type;
const primaryId = primaryDragData.value[0].id;
const secondaryId = secondaryDragData.value[0].id;
const params = { primaryType: primaryType, primaryId: primaryId, secondaryType: secondaryType, secondaryId: secondaryId };
mapCompareStore.setCompareRouteParam(primaryType, primaryId, secondaryType, secondaryId);
router.push({name: 'CompareDashboard', params: params});
}
/**
* Grid 模板時的篩選器
* @param {event} event choose columnType item
*/
function getGridSortData(event) {
const code = event.value.code;
// 文字排序: 將 name 字段轉換為小寫進行比較,使用 localeCompare() 方法進行字母順序比較
switch (code) {
case 'nameAscending':
compareData.value = compareData.value.sort((a, b) => a.name.toLowerCase().localeCompare(b.name.toLowerCase()));
break;
case 'nameDescending':
compareData.value = compareData.value.sort((a, b) => a.name.toLowerCase().localeCompare(b.name.toLowerCase())).reverse();
break;
case 'parentLogAscending':
compareData.value = compareData.value.sort((a, b) => a.parentLog.toLowerCase().localeCompare(b.parentLog.toLowerCase()));
break;
case 'parentLogDescending':
compareData.value = compareData.value.sort((a, b) => a.parentLog.toLowerCase().localeCompare(b.parentLog.toLowerCase())).reverse();
break;
case 'fileAscending':
compareData.value = compareData.value.sort((a, b) => a.fileType.toLowerCase().localeCompare(b.fileType.toLowerCase()));
break;
case 'fileDescending':
compareData.value = compareData.value.sort((a, b) => a.fileType.toLowerCase().localeCompare(b.fileType.toLowerCase())).reverse();
break;
case 'updatedAscending':
compareData.value = compareData.value.sort((a, b) => new Date(a.updated_base) - new Date(b.updated_base));
break;
case 'updatedDescending':
compareData.value = compareData.value.sort((a, b) => new Date(a.updated_base) - new Date(b.updated_base)).reverse();
break;
}
}
// Mounted
onMounted(() => {
isLoading.value = true;
store.fetchAllFiles();
window.addEventListener('click', (e) => {
const clickedLi = e.target.closest('li');
if(!clickedLi || !clickedLi.id.startsWith('li')) isActive.value = null;
});
// 為 DataTable tbody 加入 .scrollbar 選擇器
const tbodyElement = document.querySelector('.p-datatable-tbody');
tbodyElement.classList.add('scrollbar');
isLoading.value = false;
});
</script> </script>
<style scoped> <style scoped>
@reference "../../assets/tailwind.css"; @reference "../../assets/tailwind.css";

View File

@@ -46,9 +46,10 @@
</div> </div>
</template> </template>
<script> <script setup>
import { ref, } from 'vue'; import { ref, computed } from 'vue';
import { storeToRefs, mapActions } from 'pinia'; import { useRoute } from 'vue-router';
import { storeToRefs } from 'pinia';
import { useLoginStore } from '@/stores/login'; import { useLoginStore } from '@/stores/login';
import IconMember from '@/components/icons/IconMember.vue'; import IconMember from '@/components/icons/IconMember.vue';
import IconLockKey from '@/components/icons/IconLockKey.vue'; import IconLockKey from '@/components/icons/IconLockKey.vue';
@@ -56,69 +57,47 @@ import IconEyeOpen from '@/components/icons/IconEyeOpen.vue';
import IconEyeClose from '@/components/icons/IconEyeClose.vue'; import IconEyeClose from '@/components/icons/IconEyeClose.vue';
import IconWarnTriangle from '@/components/icons/IconWarnTriangle.vue'; import IconWarnTriangle from '@/components/icons/IconWarnTriangle.vue';
export default { const route = useRoute();
data(){
return {
isDisabled: true,
showPassword: false,
}
},
setup() {
// 調用函數,獲取 Store
const store = useLoginStore();
// 調用 store 裡的 state
const { auth, isInvalid } = storeToRefs(store);
// 調用 store 裡的 action
const { signIn } = store;
const isJustFocus = ref(true);
return { // Store
auth, const store = useLoginStore();
isInvalid, const { auth, isInvalid } = storeToRefs(store);
signIn, const { signIn, setRememberedReturnToUrl } = store;
isJustFocus,
} // Data
}, const isDisabled = ref(true);
components: { const showPassword = ref(false);
IconMember, const isJustFocus = ref(true);
IconLockKey,
IconEyeOpen, // Computed
IconEyeClose, const isDisabledButton = computed(() => {
IconWarnTriangle return auth.value.username === '' || auth.value.password === '' || isInvalid.value;
}, });
computed: {
/** // Methods
* if input no value , disabled. /**
*/ * when input onChange value , isInvalid === false.
isDisabledButton() { * @param {event} event input 傳入的事件
return this.auth.username === '' || this.auth.password === '' || this.isInvalid; */
}, function changeHandler(event) {
}, const inputValue = event.target.value;
methods: { if(inputValue !== '') {
/** isInvalid.value = false;
* when input onChange value , isInvalid === false. }
* @param {event} event input 傳入的事件 }
*/
changeHandler(event) { function onInputAccountFocus(){
const inputValue = event.target.value; }
if(inputValue !== '') {
this.isInvalid = false; function onInputPwdFocus(){
} }
},
onInputAccountFocus(){ // Created logic
}, // 考慮到使用者可能在未登入的情況下貼入一個頁面網址連結過來瀏覽器
onInputPwdFocus(){ // btoa: 對字串進行 Base64 編碼
}, if(route.query['return-to']) {
...mapActions(useLoginStore, ['setRememberedReturnToUrl']), setRememberedReturnToUrl(route.query['return-to']);
}, }
created() {
// 考慮到使用者可能在未登入的情況下貼入一個頁面網址連結過來瀏覽器
// btoa: 對字串進行 Base64 編碼
if(this.$route.query['return-to']) {
this.setRememberedReturnToUrl(this.$route.query['return-to']);
}
},
};
</script> </script>
<style scoped> <style scoped>

View File

@@ -11,80 +11,15 @@
</template> </template>
<script lang='ts'> <script lang='ts'>
import { onBeforeMount, } from 'vue';
import { useRouter } from 'vue-router';
import { storeToRefs, mapActions, mapState, } from 'pinia';
import { useLoadingStore } from '@/stores/loading';
import { useAllMapDataStore } from '@/stores/allMapData';
import { useConformanceStore } from '@/stores/conformance';
import Header from "@/components/Header.vue";
import Navbar from "@/components/Navbar.vue";
import Loading from '@/components/Loading.vue';
import { leaveFilter, leaveConformance } from '@/module/alertModal.js';
import { usePageAdminStore } from '@/stores/pageAdmin';
import { useLoginStore } from "@/stores/login"; import { useLoginStore } from "@/stores/login";
import { usePageAdminStore } from "@/stores/pageAdmin";
import { useAllMapDataStore } from "@/stores/allMapData";
import { useConformanceStore } from "@/stores/conformance";
import { getCookie, setCookie } from "@/utils/cookieUtil.js"; import { getCookie, setCookie } from "@/utils/cookieUtil.js";
import ModalContainer from './AccountManagement/ModalContainer.vue'; import { leaveFilter, leaveConformance } from "@/module/alertModal.js";
import emitter from "@/utils/emitter";
export default { export default {
name: 'MainContainer',
setup() {
const loadingStore = useLoadingStore();
const allMapDataStore = useAllMapDataStore();
const conformanceStore = useConformanceStore();
const pageAdminStore = usePageAdminStore();
const { tempFilterId, createFilterId, temporaryData, postRuleData, ruleData } = storeToRefs(allMapDataStore);
const { conformanceLogTempCheckId, conformanceFilterTempCheckId } = storeToRefs(conformanceStore);
const router = useRouter();
const setHighlightedNavItemOnLanding = () => {
const currentPath = router.currentRoute.value.path;
const pathSegments: string[] = currentPath.split('/').filter(segment => segment !== '');
if(pathSegments.length === 1) {
if(pathSegments[0] === 'files') {
pageAdminStore.setActivePage('ALL');
}
} else if (pathSegments.length > 1){
pageAdminStore.setActivePage(pathSegments[1].toUpperCase());
}
};
onBeforeMount(() => {
setHighlightedNavItemOnLanding();
});
return {
loadingStore, temporaryData, tempFilterId,
createFilterId, postRuleData, ruleData,
conformanceLogTempCheckId, conformanceFilterTempCheckId,
allMapDataStore, conformanceStore,
};
},
components: {
Header,
Navbar,
Loading,
ModalContainer,
},
computed: {
...mapState(usePageAdminStore, [
'shouldKeepPreviousPage',
'activePageComputedByRoute'
]),
...mapState(useLoginStore, [
'isLoggedIn',
'auth',
])
},
methods: {
...mapActions(usePageAdminStore, [
'copyPendingPageToActivePage',
'setPreviousPage',
'clearShouldKeepPreviousPageBoolean',
'setActivePageComputedByRoute',
],),
...mapActions(useLoginStore, [
'refreshToken',
],),
},
// 重新整理畫面以及第一次進入網頁時beforeRouteEnter這個hook會被執行然而beforeRouteUpdate不會被執行 // 重新整理畫面以及第一次進入網頁時beforeRouteEnter這個hook會被執行然而beforeRouteUpdate不會被執行
// PSEUDOCODE // PSEUDOCODE
// if (not logged in) { // if (not logged in) {
@@ -102,7 +37,7 @@ export default {
async beforeRouteEnter(to, from, next) { async beforeRouteEnter(to, from, next) {
const loginStore = useLoginStore(); const loginStore = useLoginStore();
if (!getCookie("isLuciaLoggedIn")) { //這裡不要用pinia的isLoggedIn來檢查因為會有重新整理時撈不到Persisted value的值的bug if (!getCookie("isLuciaLoggedIn")) {
if (getCookie('luciaRefreshToken')) { if (getCookie('luciaRefreshToken')) {
try { try {
await loginStore.refreshToken(); await loginStore.refreshToken();
@@ -121,7 +56,6 @@ export default {
next({ next({
path: '/login', path: '/login',
query: { query: {
// 記憶未來登入後要進入的網址且記憶的時候要用base64編碼包裹住
'return-to': btoa(window.location.href), 'return-to': btoa(window.location.href),
} }
}); });
@@ -132,31 +66,69 @@ export default {
}, },
// Remember, Swal modal handling is called before beforeRouteUpdate // Remember, Swal modal handling is called before beforeRouteUpdate
beforeRouteUpdate(to, from, next) { beforeRouteUpdate(to, from, next) {
this.setPreviousPage(from.name); const pageAdminStore = usePageAdminStore();
const allMapDataStore = useAllMapDataStore();
const conformanceStore = useConformanceStore();
pageAdminStore.setPreviousPage(from.name);
// 離開 Map 頁時判斷是否有無資料和需要存檔 // 離開 Map 頁時判斷是否有無資料和需要存檔
if ((from.name === 'Map' || from.name === 'CheckMap') && this.tempFilterId) { if ((from.name === 'Map' || from.name === 'CheckMap') && allMapDataStore.tempFilterId) {
// 傳給 Map通知 Sidebar 要關閉。 // 傳給 Map通知 Sidebar 要關閉。
this.$emitter.emit('leaveFilter', false); emitter.emit('leaveFilter', false);
leaveFilter(next, this.allMapDataStore.addFilterId, to.path) leaveFilter(next, allMapDataStore.addFilterId, to.path)
} else if((this.$route.name === 'Conformance' || this.$route.name === 'CheckConformance') } else if((from.name === 'Conformance' || from.name === 'CheckConformance')
&& (this.conformanceLogTempCheckId || this.conformanceFilterTempCheckId)) { && (conformanceStore.conformanceLogTempCheckId || conformanceStore.conformanceFilterTempCheckId)) {
leaveConformance(next, this.conformanceStore.addConformanceCreateCheckId, to.path); leaveConformance(next, conformanceStore.addConformanceCreateCheckId, to.path);
} else if(this.shouldKeepPreviousPage) { } else if(pageAdminStore.shouldKeepPreviousPage) {
// pass on and reset boolean for future use pageAdminStore.clearShouldKeepPreviousPageBoolean();
this.clearShouldKeepPreviousPageBoolean();
} else { } else {
// most cases go this road pageAdminStore.copyPendingPageToActivePage();
// In this else block:
// for those pages who don't need popup modals, we handle page administration right now.
// By calling the following code, we decide the next visiting page.
// 在這個 else 區塊中:
// 對於那些不需要彈窗的頁面,我們現在就處理頁面管理。
// 透過呼叫以下代碼,我們決定出下一個將要走訪的頁面。
this.copyPendingPageToActivePage();
next(); next();
} }
}, },
}; };
</script> </script>
<script setup lang='ts'>
import { onBeforeMount } from 'vue';
import { useRouter } from 'vue-router';
import { storeToRefs } from 'pinia';
import { useLoadingStore } from '@/stores/loading';
import { useAllMapDataStore } from '@/stores/allMapData';
import { useConformanceStore } from '@/stores/conformance';
import Header from "@/components/Header.vue";
import Navbar from "@/components/Navbar.vue";
import Loading from '@/components/Loading.vue';
import { leaveFilter, leaveConformance } from '@/module/alertModal.js';
import { usePageAdminStore } from '@/stores/pageAdmin';
import { useLoginStore } from "@/stores/login";
import emitter from '@/utils/emitter';
import ModalContainer from './AccountManagement/ModalContainer.vue';
const loadingStore = useLoadingStore();
const allMapDataStore = useAllMapDataStore();
const conformanceStore = useConformanceStore();
const pageAdminStore = usePageAdminStore();
const loginStore = useLoginStore();
const router = useRouter();
const { tempFilterId, createFilterId, temporaryData, postRuleData, ruleData } = storeToRefs(allMapDataStore);
const { conformanceLogTempCheckId, conformanceFilterTempCheckId } = storeToRefs(conformanceStore);
const setHighlightedNavItemOnLanding = () => {
const currentPath = router.currentRoute.value.path;
const pathSegments: string[] = currentPath.split('/').filter(segment => segment !== '');
if(pathSegments.length === 1) {
if(pathSegments[0] === 'files') {
pageAdminStore.setActivePage('ALL');
}
} else if (pathSegments.length > 1){
pageAdminStore.setActivePage(pathSegments[1].toUpperCase());
}
};
onBeforeMount(() => {
setHighlightedNavItemOnLanding();
});
</script>

View File

@@ -10,24 +10,15 @@
</div> </div>
</template> </template>
<script> <script setup>
import { onMounted } from 'vue';
import { storeToRefs } from 'pinia'; import { storeToRefs } from 'pinia';
import { useLoginStore } from '@/stores/login'; import { useLoginStore } from '@/stores/login';
export default { const store = useLoginStore();
setup() { const { userData } = storeToRefs(store);
const store = useLoginStore();
const { userData } = storeToRefs(store);
const { getUserData } = store;
return {
userData,
getUserData,
}
},
mounted() {
this.getUserData();
}
};
onMounted(() => {
store.getUserData();
});
</script> </script>

View File

@@ -13,13 +13,7 @@
</main> </main>
</template> </template>
<script> <script setup>
import Header from "@/components/Header.vue"; import Header from "@/components/Header.vue";
import Navbar from "@/components/Navbar.vue"; import Navbar from "@/components/Navbar.vue";
export default {
components: {
Header,
Navbar,
},
};
</script> </script>

View File

@@ -78,248 +78,14 @@
</section> </section>
</template> </template>
<script> <script>
import { storeToRefs } from 'pinia';
import { useLoadingStore } from '@/stores/loading';
import { useFilesStore } from '@/stores/files'; import { useFilesStore } from '@/stores/files';
import { uploadFailedFirst, uploadSuccess, uploadConfirm } from '@/module/alertModal.js'
export default { export default {
setup() {
const loadingStore = useLoadingStore();
const filesStore = useFilesStore();
const { isLoading } = storeToRefs(loadingStore);
const { uploadDetail, uploadId, uploadFileName } = storeToRefs(filesStore);
return { isLoading, filesStore, uploadDetail, uploadId, uploadFileName }
},
data() {
return {
tooltipUpload: {
value: `1. Case ID: A unique identifier for each case.
2. Activity: A process step executed by either a system (automated) or humans (manual).
3. Activity Instance ID: A unique identifier for a single occurrence of an activity.
4. Timestamp: The time of occurrence of a particular event, such as the start or end of an activity.
5. Status: Activity status, such as Start or Complete.
6. Attribute: A property that can be associated with a case to provide additional information about that case.`,
// 暫時沒有 Resource
// 7. Resource: A resource refers to any entity that is required to carry out a business process. This can include people, equipment, software, or any other type of asset.
class: '!max-w-[400px] !text-[10px] !opacity-80',
autoHide: false,
},
columnType: [
{ name: 'Case ID*', code: 'case_id', color: '!text-secondary', value: '', label: 'Case ID', required: true },
{ name: 'Timestamp*', code: 'timestamp', color: '!text-secondary', value: '', label: 'Timestamp', required: true },
{ name: 'Status*', code: 'status', color: '!text-secondary', value: '', label: 'Status', required: true },
{ name: 'Activity*', code: 'name', color: '!text-secondary', value: '', label: 'Activity', required: true },
{ name: 'Activity Instance ID*', code: 'instance', color: '!text-secondary', value: '', label: 'Activity Instance ID', required: true },
{ name: 'Case Attribute', code: 'case_attributes', color: '!text-primary', value: '', label: 'Case Attribute', required: false },
// { name: 'Resource', code: '', color: '', value: '', label: 'Resource', required: false }, // 現階段沒有,未來可能有
{ name: 'Not Assigned', code: '', color: '!text-neutral-700', value: '', label: 'Not Assigned', required: false },
],
selectedColumns: [],
informData: [], // 藍字提示,尚未選擇的 type
repeatedData: [], // 紅字提示,重複選擇的 type
fileName: this.uploadFileName,
};
},
computed: {
isDisabled: function() {
// 1. 長度一樣,強制每一個都要選
// 2. 不為 null undefind
const hasValue = !this.selectedColumns.includes(undefined);
const result = !(this.selectedColumns.length === this.uploadDetail?.columns.length
&& this.informData.length === 0 && this.repeatedData.length === 0 && hasValue);
return result
},
},
watch: {
selectedColumns: {
deep: true, // 監聽陣列內部的變化
handler(newVal, oldVal) {
this.updateValidationData(newVal);
},
}
},
methods: {
uploadFailedFirst,
uploadSuccess,
uploadConfirm,
/**
* Rename 離開 input 的行為
* @param {Event} e input 傳入的事件
*/
onBlur(e) {
const baseWidth = 20;
if(e.target.value === '') {
e.target.value = this.uploadFileName;
const textWidth = this.getTextWidth(e.target.value, e.target);
e.target.style.width = baseWidth + textWidth + 'px';
}else if(e.target.value !== e.target.value.trim()) {
e.target.value = e.target.value.trim();
const textWidth = this.getTextWidth(e.target.value, e.target);
e.target.style.width = baseWidth + textWidth + 'px';
}
},
/**
* Rename 輸入 input 的行為
* @param {Event} e input 傳入的事件
*/
onInput(e) {
const baseWidth = 20;
const textWidth = this.getTextWidth(e.target.value, e.target);
e.target.style.width = baseWidth + textWidth + 'px';
},
/**
* input 寬度隨著 value 響應式改變
* @param {String} text file's name
* @param {Event} e input 傳入的事件
*/
getTextWidth(text, e) {
// 替換空格為不斷行的空格
const processedText = text.replace(/ /g, '\u00a0');
const hiddenSpan = document.createElement('span');
hiddenSpan.innerHTML = processedText;
hiddenSpan.style.font = window.getComputedStyle(e).font;
hiddenSpan.style.visibility = 'hidden';
document.body.appendChild(hiddenSpan);
const width = hiddenSpan.getBoundingClientRect().width;
document.body.removeChild(hiddenSpan);
return width;
},
/**
* 驗證,根據新的 selectedColumns 更新 informData 和 repeatedData
* @param {Array} data 已選擇的 type 的 data
*/
updateValidationData(data) {
const nameOccurrences = {};
const noSortedRepeatedData = []; // 未排序的重複選擇的 data
const selectedData = [] // 已經選擇的 data
this.informData = []; // 尚未選擇的 data
this.repeatedData = []; // 重複選擇的 data
data.forEach(item => {
const { name, code } = item;
if(nameOccurrences[name]) {
// 'Not Assigned'、'Case Attribute' 不列入驗證
if(!code || code === 'case_attributes') return;
nameOccurrences[name]++;
// 重複的選項只出現一次
if(nameOccurrences[name] === 2){
noSortedRepeatedData.push(item)
}
// 要按照選單的順序排序
this.repeatedData = this.columnType.filter(column => noSortedRepeatedData.includes(column));
}else {
nameOccurrences[name] = 1;
selectedData.push(name);
this.informData = this.columnType.filter(item => item.required ? !selectedData.includes(item.name) : false);
}
});
},
/**
* Reset Button
*/
reset() {
// 路徑不列入歷史紀錄
this.selectedColumns = [];
},
/**
* Cancel Button
*/
cancel() {
// 路徑不列入歷史紀錄
this.$router.push({name: 'Files', replace: true});
},
/**
* Upload Button
*/
async submit() {
// Post API Data
const fetchData = {
timestamp: '',
case_id: '',
name: '',
instance: '',
status: '',
case_attributes: []
};
// 給值
const haveValueData = this.selectedColumns.map((column, i) => {
if (column && this.uploadDetail.columns[i]) {
return {
name: column.name,
code: column.code,
color: column.color,
value: this.uploadDetail.columns[i]
}
}
});
// 取得欲更改的檔名,
this.uploadFileName = this.fileName;
// 設定第二階段上傳的 data
haveValueData.forEach(column => {
if(column !== undefined) {
switch (column.code) {
case 'timestamp':
fetchData.timestamp = column.value;
break;
case 'case_id':
fetchData.case_id = column.value;
break;
case 'name':
fetchData.name = column.value;
break;
case 'instance':
fetchData.instance = column.value;
break;
case 'status':
fetchData.status = column.value;
break;
case 'case_attributes':
fetchData.case_attributes.push(column.value);
break;
default:
break;
}
}
});
this.uploadConfirm(fetchData);
},
},
async mounted() {
// 只監聽第一次
const unwatch = this.$watch('fileName', (newValue) => {
if (newValue) {
const inputElement = document.getElementById('fileNameInput');
const baseWidth = 20;
const textWidth = this.getTextWidth(this.fileName, inputElement);
inputElement.style.width = baseWidth + textWidth + 'px';
}
},
{ immediate: true }
);
this.showEdit = true;
if(this.uploadId) await this.filesStore.getUploadDetail();
this.selectedColumns = await Array.from({ length: this.uploadDetail.columns.length }, () => this.columnType[this.columnType.length - 1]); // 預設選 Not Assigned
unwatch();
this.isLoading = false;
},
beforeUnmount() {
// 離開頁面要刪 uploadID
this.uploadId = null;
this.uploadFileName = null;
},
beforeRouteEnter(to, from, next){ beforeRouteEnter(to, from, next){
// 要有 uploadID 才能進來 // 要有 uploadID 才能進來
next(vm => { next(vm => {
if(vm.uploadId === null) { const filesStore = useFilesStore();
if(filesStore.uploadId === null) {
vm.$router.push({name: 'Files', replace: true}); vm.$router.push({name: 'Files', replace: true});
vm.$toast.default('Please upload your file.', {position: 'bottom'}); vm.$toast.default('Please upload your file.', {position: 'bottom'});
} }
@@ -327,3 +93,246 @@ export default {
}, },
} }
</script> </script>
<script setup>
import { ref, computed, watch, onMounted, onBeforeUnmount } from 'vue';
import { useRouter } from 'vue-router';
import { storeToRefs } from 'pinia';
import { useLoadingStore } from '@/stores/loading';
import { uploadFailedFirst, uploadSuccess, uploadConfirm } from '@/module/alertModal.js'
const router = useRouter();
// Stores
const loadingStore = useLoadingStore();
const filesStore = useFilesStore();
const { isLoading } = storeToRefs(loadingStore);
const { uploadDetail, uploadId, uploadFileName } = storeToRefs(filesStore);
// Data
const tooltipUpload = {
value: `1. Case ID: A unique identifier for each case.
2. Activity: A process step executed by either a system (automated) or humans (manual).
3. Activity Instance ID: A unique identifier for a single occurrence of an activity.
4. Timestamp: The time of occurrence of a particular event, such as the start or end of an activity.
5. Status: Activity status, such as Start or Complete.
6. Attribute: A property that can be associated with a case to provide additional information about that case.`,
// 暫時沒有 Resource
// 7. Resource: A resource refers to any entity that is required to carry out a business process. This can include people, equipment, software, or any other type of asset.
class: '!max-w-[400px] !text-[10px] !opacity-80',
autoHide: false,
};
const columnType = [
{ name: 'Case ID*', code: 'case_id', color: '!text-secondary', value: '', label: 'Case ID', required: true },
{ name: 'Timestamp*', code: 'timestamp', color: '!text-secondary', value: '', label: 'Timestamp', required: true },
{ name: 'Status*', code: 'status', color: '!text-secondary', value: '', label: 'Status', required: true },
{ name: 'Activity*', code: 'name', color: '!text-secondary', value: '', label: 'Activity', required: true },
{ name: 'Activity Instance ID*', code: 'instance', color: '!text-secondary', value: '', label: 'Activity Instance ID', required: true },
{ name: 'Case Attribute', code: 'case_attributes', color: '!text-primary', value: '', label: 'Case Attribute', required: false },
// { name: 'Resource', code: '', color: '', value: '', label: 'Resource', required: false }, // 現階段沒有,未來可能有
{ name: 'Not Assigned', code: '', color: '!text-neutral-700', value: '', label: 'Not Assigned', required: false },
];
const selectedColumns = ref([]);
const informData = ref([]);
const repeatedData = ref([]);
const fileName = ref(uploadFileName.value);
const showEdit = ref(false);
// Computed
const isDisabled = computed(() => {
// 1. 長度一樣,強制每一個都要選
// 2. 不為 null undefind
const hasValue = !selectedColumns.value.includes(undefined);
const result = !(selectedColumns.value.length === uploadDetail.value?.columns.length
&& informData.value.length === 0 && repeatedData.value.length === 0 && hasValue);
return result;
});
// Watch
watch(selectedColumns, (newVal) => {
updateValidationData(newVal);
}, { deep: true });
// Methods
/**
* Rename 離開 input 的行為
* @param {Event} e input 傳入的事件
*/
function onBlur(e) {
const baseWidth = 20;
if(e.target.value === '') {
e.target.value = uploadFileName.value;
const textWidth = getTextWidth(e.target.value, e.target);
e.target.style.width = baseWidth + textWidth + 'px';
}else if(e.target.value !== e.target.value.trim()) {
e.target.value = e.target.value.trim();
const textWidth = getTextWidth(e.target.value, e.target);
e.target.style.width = baseWidth + textWidth + 'px';
}
}
/**
* Rename 輸入 input 的行為
* @param {Event} e input 傳入的事件
*/
function onInput(e) {
const baseWidth = 20;
const textWidth = getTextWidth(e.target.value, e.target);
e.target.style.width = baseWidth + textWidth + 'px';
}
/**
* input 寬度隨著 value 響應式改變
* @param {String} text file's name
* @param {Event} e input 傳入的事件
*/
function getTextWidth(text, e) {
// 替換空格為不斷行的空格
const processedText = text.replace(/ /g, '\u00a0');
const hiddenSpan = document.createElement('span');
hiddenSpan.innerHTML = processedText;
hiddenSpan.style.font = window.getComputedStyle(e).font;
hiddenSpan.style.visibility = 'hidden';
document.body.appendChild(hiddenSpan);
const width = hiddenSpan.getBoundingClientRect().width;
document.body.removeChild(hiddenSpan);
return width;
}
/**
* 驗證,根據新的 selectedColumns 更新 informData 和 repeatedData
* @param {Array} data 已選擇的 type 的 data
*/
function updateValidationData(data) {
const nameOccurrences = {};
const noSortedRepeatedData = []; // 未排序的重複選擇的 data
const selectedData = [] // 已經選擇的 data
informData.value = []; // 尚未選擇的 data
repeatedData.value = []; // 重複選擇的 data
data.forEach(item => {
const { name, code } = item;
if(nameOccurrences[name]) {
// 'Not Assigned'、'Case Attribute' 不列入驗證
if(!code || code === 'case_attributes') return;
nameOccurrences[name]++;
// 重複的選項只出現一次
if(nameOccurrences[name] === 2){
noSortedRepeatedData.push(item)
}
// 要按照選單的順序排序
repeatedData.value = columnType.filter(column => noSortedRepeatedData.includes(column));
}else {
nameOccurrences[name] = 1;
selectedData.push(name);
informData.value = columnType.filter(item => item.required ? !selectedData.includes(item.name) : false);
}
});
}
/**
* Reset Button
*/
function reset() {
// 路徑不列入歷史紀錄
selectedColumns.value = [];
}
/**
* Cancel Button
*/
function cancel() {
// 路徑不列入歷史紀錄
router.push({name: 'Files', replace: true});
}
/**
* Upload Button
*/
async function submit() {
// Post API Data
const fetchData = {
timestamp: '',
case_id: '',
name: '',
instance: '',
status: '',
case_attributes: []
};
// 給值
const haveValueData = selectedColumns.value.map((column, i) => {
if (column && uploadDetail.value.columns[i]) {
return {
name: column.name,
code: column.code,
color: column.color,
value: uploadDetail.value.columns[i]
}
}
});
// 取得欲更改的檔名,
uploadFileName.value = fileName.value;
// 設定第二階段上傳的 data
haveValueData.forEach(column => {
if(column !== undefined) {
switch (column.code) {
case 'timestamp':
fetchData.timestamp = column.value;
break;
case 'case_id':
fetchData.case_id = column.value;
break;
case 'name':
fetchData.name = column.value;
break;
case 'instance':
fetchData.instance = column.value;
break;
case 'status':
fetchData.status = column.value;
break;
case 'case_attributes':
fetchData.case_attributes.push(column.value);
break;
default:
break;
}
}
});
uploadConfirm(fetchData);
}
// Mounted
onMounted(async () => {
// 只監聯第一次
const unwatch = watch(fileName, (newValue) => {
if (newValue) {
const inputElement = document.getElementById('fileNameInput');
const baseWidth = 20;
const textWidth = getTextWidth(fileName.value, inputElement);
inputElement.style.width = baseWidth + textWidth + 'px';
}
},
{ immediate: true }
);
showEdit.value = true;
if(uploadId.value) await filesStore.getUploadDetail();
selectedColumns.value = await Array.from({ length: uploadDetail.value.columns.length }, () => columnType[columnType.length - 1]); // 預設選 Not Assigned
unwatch();
isLoading.value = false;
});
onBeforeUnmount(() => {
// 離開頁面要刪 uploadID
uploadId.value = null;
uploadFileName.value = null;
});
</script>

View File

@@ -6,6 +6,14 @@ vi.mock('@/module/apiError.js', () => ({
default: vi.fn(), default: vi.fn(),
})); }));
const mockRoute = vi.hoisted(() => ({
query: {},
}));
vi.mock('vue-router', () => ({
useRoute: () => mockRoute,
}));
import Login from '@/views/Login/Login.vue'; import Login from '@/views/Login/Login.vue';
import { useLoginStore } from '@/stores/login'; import { useLoginStore } from '@/stores/login';
@@ -15,18 +23,16 @@ describe('Login', () => {
beforeEach(() => { beforeEach(() => {
pinia = createPinia(); pinia = createPinia();
setActivePinia(pinia); setActivePinia(pinia);
mockRoute.query = {};
}); });
const mountLogin = (options = {}) => { const mountLogin = (options = {}) => {
if (options.route?.query) {
Object.assign(mockRoute.query, options.route.query);
}
return mount(Login, { return mount(Login, {
global: { global: {
plugins: [pinia], plugins: [pinia],
mocks: {
$route: {
query: {},
...options.route,
},
},
}, },
}); });
}; };