mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-06-29 11:07:36 +00:00
add duration
This commit is contained in:
parent
f93a21a0ec
commit
2698c30474
53
src/hooks/useDuration.ts
Normal file
53
src/hooks/useDuration.ts
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
import { appStore } from "./../store/modules/app";
|
||||||
|
/**
|
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
|
* contributor license agreements. See the NOTICE file distributed with
|
||||||
|
* this work for additional information regarding copyright ownership.
|
||||||
|
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||||
|
* (the "License"); you may not use this file except in compliance with
|
||||||
|
* the License. You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
import { useAppStoreWithOut, InitializationDurationRow } from "@/store/modules/app";
|
||||||
|
import type { Duration, DurationTime } from "@/types/app";
|
||||||
|
import getLocalTime from "@/utils/localtime";
|
||||||
|
import dateFormatStep from "@/utils/dateFormat";
|
||||||
|
|
||||||
|
export function useDuration() {
|
||||||
|
const appStore = useAppStoreWithOut();
|
||||||
|
let durationRow: Duration = InitializationDurationRow;
|
||||||
|
|
||||||
|
function getDuration() {
|
||||||
|
return {
|
||||||
|
start: getLocalTime(appStore.utc, durationRow.start),
|
||||||
|
end: getLocalTime(appStore.utc, durationRow.end),
|
||||||
|
step: durationRow.step,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
function getDurationTime(): DurationTime {
|
||||||
|
const { start, step, end } = getDuration();
|
||||||
|
return {
|
||||||
|
start: dateFormatStep(start, step, true),
|
||||||
|
end: dateFormatStep(end, step, true),
|
||||||
|
step: step,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
function setDurationRow(data: Duration) {
|
||||||
|
durationRow = data;
|
||||||
|
}
|
||||||
|
function getMaxRange(day: number) {
|
||||||
|
const gap = (day + 1) * 24 * 60 * 60 * 1000;
|
||||||
|
const dates: Date[] = [new Date(new Date().getTime() - gap), new Date()];
|
||||||
|
|
||||||
|
return dates;
|
||||||
|
}
|
||||||
|
|
||||||
|
return { setDurationRow, getDurationTime, getMaxRange };
|
||||||
|
}
|
@ -74,10 +74,11 @@ limitations under the License. -->
|
|||||||
<div>
|
<div>
|
||||||
<span class="sm b grey mr-5">{{ t("timeRange") }}:</span>
|
<span class="sm b grey mr-5">{{ t("timeRange") }}:</span>
|
||||||
<TimePicker
|
<TimePicker
|
||||||
:value="[appStore.durationRow.start, appStore.durationRow.end]"
|
:value="[durationRow.start, durationRow.end]"
|
||||||
|
:maxRange="maxRange"
|
||||||
position="bottom"
|
position="bottom"
|
||||||
format="YYYY-MM-DD HH:mm"
|
format="YYYY-MM-DD HH:mm"
|
||||||
@input="changeTimeRange"
|
@input="changeDuration"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -86,18 +87,20 @@ limitations under the License. -->
|
|||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { ref, reactive, watch, onUnmounted } from "vue";
|
import { ref, reactive, watch, onUnmounted, computed } from "vue";
|
||||||
import type { PropType } from "vue";
|
import type { PropType } from "vue";
|
||||||
import { useI18n } from "vue-i18n";
|
import { useI18n } from "vue-i18n";
|
||||||
import type { Option, DurationTime } from "@/types/app";
|
import type { Option, DurationTime, Duration } from "@/types/app";
|
||||||
import { useTraceStore } from "@/store/modules/trace";
|
import { useTraceStore } from "@/store/modules/trace";
|
||||||
import { useDashboardStore } from "@/store/modules/dashboard";
|
import { useDashboardStore } from "@/store/modules/dashboard";
|
||||||
import { useAppStoreWithOut } from "@/store/modules/app";
|
import { useAppStoreWithOut, InitializationDurationRow } from "@/store/modules/app";
|
||||||
import { useSelectorStore } from "@/store/modules/selectors";
|
import { useSelectorStore } from "@/store/modules/selectors";
|
||||||
|
import timeFormat from "@/utils/timeFormat";
|
||||||
import ConditionTags from "@/views/components/ConditionTags.vue";
|
import ConditionTags from "@/views/components/ConditionTags.vue";
|
||||||
import { ElMessage } from "element-plus";
|
import { ElMessage } from "element-plus";
|
||||||
import { EntityType, QueryOrders, Status } from "../../data";
|
import { EntityType, QueryOrders, Status } from "../../data";
|
||||||
import type { LayoutConfig } from "@/types/dashboard";
|
import type { LayoutConfig } from "@/types/dashboard";
|
||||||
|
import { useDuration } from "@/hooks/useDuration";
|
||||||
|
|
||||||
/*global defineProps, defineEmits, Recordable */
|
/*global defineProps, defineEmits, Recordable */
|
||||||
const emits = defineEmits(["get", "search"]);
|
const emits = defineEmits(["get", "search"]);
|
||||||
@ -108,13 +111,14 @@ limitations under the License. -->
|
|||||||
default: () => ({ graph: {} }),
|
default: () => ({ graph: {} }),
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
const filters = reactive<Recordable>(props.data.filters || {});
|
|
||||||
const traceId = ref<string>(filters.traceId || "");
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const appStore = useAppStoreWithOut();
|
const appStore = useAppStoreWithOut();
|
||||||
const selectorStore = useSelectorStore();
|
const selectorStore = useSelectorStore();
|
||||||
const dashboardStore = useDashboardStore();
|
const dashboardStore = useDashboardStore();
|
||||||
const traceStore = useTraceStore();
|
const traceStore = useTraceStore();
|
||||||
|
const { setDurationRow, getDurationTime, getMaxRange } = useDuration();
|
||||||
|
const filters = reactive<Recordable>(props.data.filters || {});
|
||||||
|
const traceId = ref<string>(filters.traceId || "");
|
||||||
const duration = ref<DurationTime>(filters.duration || appStore.durationTime);
|
const duration = ref<DurationTime>(filters.duration || appStore.durationTime);
|
||||||
const minTraceDuration = ref<number>();
|
const minTraceDuration = ref<number>();
|
||||||
const maxTraceDuration = ref<number>();
|
const maxTraceDuration = ref<number>();
|
||||||
@ -126,6 +130,10 @@ limitations under the License. -->
|
|||||||
endpoint: { value: "0", label: "All" },
|
endpoint: { value: "0", label: "All" },
|
||||||
service: { value: "", label: "" },
|
service: { value: "", label: "" },
|
||||||
});
|
});
|
||||||
|
const durationRow = ref<Duration>(InitializationDurationRow);
|
||||||
|
const maxRange = computed(() =>
|
||||||
|
getMaxRange(appStore.coldStageMode ? appStore.recordsTTL.coldSuperDataset : appStore.recordsTTL.superDataset),
|
||||||
|
);
|
||||||
if (filters.queryOrder) {
|
if (filters.queryOrder) {
|
||||||
traceStore.setTraceCondition({
|
traceStore.setTraceCondition({
|
||||||
queryOrder: filters.queryOrder,
|
queryOrder: filters.queryOrder,
|
||||||
@ -264,8 +272,10 @@ limitations under the License. -->
|
|||||||
ElMessage.error(resp.errors);
|
ElMessage.error(resp.errors);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
function changeTimeRange() {
|
function changeDuration(val: Date[]) {
|
||||||
// duration.value = timeFormat(val);
|
durationRow.value = timeFormat(val);
|
||||||
|
setDurationRow(durationRow.value);
|
||||||
|
duration.value = getDurationTime();
|
||||||
}
|
}
|
||||||
onUnmounted(() => {
|
onUnmounted(() => {
|
||||||
traceStore.resetState();
|
traceStore.resetState();
|
||||||
|
Loading…
Reference in New Issue
Block a user