319 lines
9.2 KiB
Vue
319 lines
9.2 KiB
Vue
<!-- This example requires Tailwind CSS v2.0+ -->
|
|
<template>
|
|
<div class="pb-8 px-4 sm:px-6 lg:px-8">
|
|
<div class="sm:flex sm:items-center">
|
|
<div class="sm:flex-auto">
|
|
<h1 class="text-xl font-semibold text-gray-900">
|
|
API 사용량 통계 상세 보기
|
|
</h1>
|
|
<p class="mt-2 text-sm text-gray-700">
|
|
API 키별 사용량 통계를 보여 줍니다. 구분 항목으로 시간별,
|
|
날짜별, 월별 구분이 가능합니다.
|
|
</p>
|
|
</div>
|
|
<div class="mt-4 sm:mt-0 sm:ml-16 sm:flex-none">
|
|
<div>
|
|
<label
|
|
for="location"
|
|
class="block text-sm font-medium text-gray-700"
|
|
>API Key</label
|
|
>
|
|
<select
|
|
id="targetKey"
|
|
v-model="targetKey"
|
|
name="targetKey"
|
|
class="mt-1 block w-full pl-3 pr-10 py-2 text-base border-gray-300 focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm rounded-md"
|
|
@change="onChange($event)"
|
|
>
|
|
<option
|
|
v-for="item in keys"
|
|
:key="item.key"
|
|
:selected="item.current"
|
|
:value="item.key"
|
|
>
|
|
<span class="truncate">
|
|
{{ item.name }}
|
|
</span>
|
|
</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<BaseList1
|
|
:headings="listHeadings"
|
|
:actions="listActions"
|
|
:keys="listKeys"
|
|
:data="listData"
|
|
:action-key="actionKey"
|
|
:column-filter="columnFilter"
|
|
:do-action="doAction"
|
|
/>
|
|
|
|
<BasePagination1
|
|
:total-page-count="totalPageCount"
|
|
:current-page-number="currentPageNumber"
|
|
:page-size="pageSize"
|
|
:records-total="recordsTotal"
|
|
:page-move="pageMove"
|
|
/>
|
|
|
|
<div class="p-0 rounded-bl-2xl rounded-br-2xl md:px-0">
|
|
<a
|
|
href="javascript:void(0)"
|
|
class="text-base font-medium text-indigo-700 hover:text-indigo-600"
|
|
@click="$router.back()"
|
|
>←이전 화면으로<span aria-hidden="true"> </span
|
|
></a>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import HeroVue from '~~/base/pages/support/inquiry/view/[hero].vue';
|
|
|
|
const router = useRouter();
|
|
|
|
definePageMeta({
|
|
middleware: 'check-auth-op',
|
|
});
|
|
|
|
const listHeadings = [
|
|
{
|
|
title: '구분',
|
|
class: 'py-3.5 pl-4 pr-3 text-left text-sm font-semibold text-gray-900 sm:pl-6',
|
|
key: 'date_tag',
|
|
hiddenInfo: {
|
|
headClass: 'font-normal lg:hidden',
|
|
dts: [],
|
|
dds: [],
|
|
},
|
|
subClass:
|
|
'w-full max-w-0 py-4 pl-4 pr-3 text-sm font-medium text-gray-900 sm:w-auto sm:max-w-none sm:pl-6',
|
|
},
|
|
{
|
|
title: 'total',
|
|
class: 'hidden px-3 py-3.5 text-left text-sm font-semibold text-gray-900 lg:table-cell',
|
|
key: 'total',
|
|
hiddenInfo: {
|
|
headClass: '',
|
|
dts: [],
|
|
dds: [],
|
|
},
|
|
subClass: 'hidden px-3 py-4 text-sm text-gray-500 lg:table-cell',
|
|
},
|
|
{
|
|
title: 'hit',
|
|
class: 'hidden px-3 py-3.5 text-left text-sm font-semibold text-gray-900 sm:table-cell',
|
|
key: 'hit',
|
|
hiddenInfo: {
|
|
headClass: '',
|
|
dts: [],
|
|
dds: [],
|
|
},
|
|
subClass: 'hidden px-3 py-4 text-sm text-gray-500 sm:table-cell',
|
|
},
|
|
{
|
|
title: 'hit_ratio',
|
|
class: 'hidden px-3 py-3.5 text-left text-sm font-semibold text-gray-900 sm:table-cell',
|
|
key: 'hit_ratio',
|
|
hiddenInfo: {
|
|
headClass: '',
|
|
dts: [],
|
|
dds: [],
|
|
},
|
|
subClass: 'hidden px-3 py-4 text-sm text-gray-500 sm:table-cell',
|
|
},
|
|
|
|
{
|
|
title: 'size',
|
|
class: 'hidden px-3 py-3.5 text-left text-sm font-semibold text-gray-900 sm:table-cell',
|
|
key: 'size',
|
|
hiddenInfo: {
|
|
headClass: '',
|
|
dts: [],
|
|
dds: [],
|
|
},
|
|
subClass: 'hidden px-3 py-4 text-sm text-gray-500 sm:table-cell',
|
|
},
|
|
{
|
|
title: 'size_avg',
|
|
class: 'hidden px-3 py-3.5 text-left text-sm font-semibold text-gray-900 sm:table-cell',
|
|
key: 'size_avg',
|
|
hiddenInfo: {
|
|
headClass: '',
|
|
dts: [],
|
|
dds: [],
|
|
},
|
|
subClass: 'hidden px-3 py-4 text-sm text-gray-500 sm:table-cell',
|
|
},
|
|
|
|
{
|
|
title: 'ip',
|
|
class: 'hidden px-3 py-3.5 text-left text-sm font-semibold text-gray-900 sm:table-cell',
|
|
key: 'uniq_ip',
|
|
hiddenInfo: {
|
|
headClass: '',
|
|
dts: [],
|
|
dds: [],
|
|
},
|
|
subClass: 'hidden px-3 py-4 text-sm text-gray-500 sm:table-cell',
|
|
},
|
|
{
|
|
title: 'referrer',
|
|
class: 'hidden px-3 py-3.5 text-left text-sm font-semibold text-gray-900 sm:table-cell',
|
|
key: 'uniq_referrer',
|
|
hiddenInfo: {
|
|
headClass: '',
|
|
dts: [],
|
|
dds: [],
|
|
},
|
|
subClass: 'hidden px-3 py-4 text-sm text-gray-500 sm:table-cell',
|
|
},
|
|
|
|
{
|
|
title: '갱신일',
|
|
class: 'px-3 py-3.5 text-left text-sm font-semibold text-gray-900',
|
|
key: 'updated',
|
|
hiddenInfo: {
|
|
headClass: '',
|
|
dts: [],
|
|
dds: [],
|
|
},
|
|
subClass: 'px-3 py-4 text-sm text-gray-500',
|
|
},
|
|
];
|
|
const listActions = [];
|
|
const actionKey = 'serial';
|
|
const listKeys = [
|
|
'serial',
|
|
'date_tag',
|
|
'total',
|
|
'hit',
|
|
'size',
|
|
'uniq_ip',
|
|
'uniq_referrer',
|
|
'updated',
|
|
];
|
|
const listData = ref([]);
|
|
|
|
const totalPageCount = ref(0);
|
|
const currentPageNumber = ref(1);
|
|
const pageSize = ref(26);
|
|
const recordsTotal = ref(0);
|
|
// const order = [{ column: 'serial', dir: 'desc' }];
|
|
// const columns = { serial: { data: 'serial' } };
|
|
const { $dayjs } = useNuxtApp();
|
|
function columnFilter(key, val) {
|
|
// console.log('columnFilter(), key = ', key, ', val = ', val);
|
|
|
|
if (key == 'updated' || key == 'created') {
|
|
return $dayjs(val).format('YY/MM/DD A h:mm:ss');
|
|
// return $dayjs(val).format('YY/MM/DD');
|
|
} else if (key == 'size') {
|
|
return _utils.formatBytes(val, 2);
|
|
} else {
|
|
return val;
|
|
}
|
|
}
|
|
|
|
function doAction(tag, target) {
|
|
console.log('on doAction(), tag=', tag, ', target=', target);
|
|
router.push({
|
|
name: 'key-edit',
|
|
params: { target: target },
|
|
});
|
|
}
|
|
|
|
function pageMove(targetPageIdex) {
|
|
console.log('on pageMove(), targetPageIdex=', targetPageIdex);
|
|
currentPageNumber.value = targetPageIdex;
|
|
refresh();
|
|
}
|
|
|
|
async function refresh() {
|
|
const responseJson = await _crossCtl.doComm(
|
|
'local/list',
|
|
'admin:statistics',
|
|
{
|
|
start: (currentPageNumber.value - 1) * pageSize.value,
|
|
length: pageSize.value,
|
|
hero: targetKey.value,
|
|
term: _term,
|
|
termPrefix: '2022',
|
|
}
|
|
);
|
|
|
|
currentPageNumber.value = responseJson['currentPageNumber'];
|
|
totalPageCount.value = responseJson['totalPageCount'];
|
|
pageSize.value = parseInt(responseJson['pageSize']);
|
|
recordsTotal.value = responseJson['recordsTotal'];
|
|
|
|
for (let i = 0; i < responseJson['data'].length; i++) {
|
|
responseJson['data'][i]['hit_ratio'] =
|
|
(
|
|
(responseJson['data'][i]['hit'] /
|
|
responseJson['data'][i]['total']) *
|
|
100
|
|
).toFixed(2) + '%';
|
|
responseJson['data'][i]['size_avg'] = _utils.formatBytes(
|
|
responseJson['data'][i]['size'] / responseJson['data'][i]['total'],
|
|
2
|
|
);
|
|
}
|
|
|
|
listData.value = responseJson['data'];
|
|
|
|
console.log('listData.value=', listData.value);
|
|
}
|
|
|
|
const targetKey = ref('');
|
|
|
|
const keys = ref([]);
|
|
|
|
const route = useRoute();
|
|
const hero = route.params.hero;
|
|
|
|
const _term = route.params._term;
|
|
|
|
console.log('hero = ', hero);
|
|
console.log('_term = ', _term);
|
|
|
|
const responseJson = await _crossCtl.doComm('local/select', 'admin:key', {
|
|
hero: hero,
|
|
});
|
|
|
|
if (responseJson['data'].length == 0) {
|
|
_crossCtl.openModal(
|
|
'error',
|
|
'잘못된 파라메타',
|
|
'키 정보를 읽어올 수 없습니다.\n확인 버튼을 누르면 메인 화면으로 돌아갑니다.',
|
|
['확인'],
|
|
(btnIdx) => {
|
|
navigateTo('/');
|
|
}
|
|
);
|
|
} else {
|
|
const tmpKeys = [];
|
|
for (let i = 0; i < responseJson['data'].length; i++) {
|
|
if (i == 0) {
|
|
targetKey.value = responseJson['data'][i]['api_key'];
|
|
}
|
|
|
|
tmpKeys.push({
|
|
current: i == 0,
|
|
name: responseJson['data'][i]['name'],
|
|
key: responseJson['data'][i]['api_key'],
|
|
});
|
|
}
|
|
keys.value = tmpKeys;
|
|
}
|
|
|
|
function onChange(e) {
|
|
console.log('targetKey.value=', targetKey.value);
|
|
refresh();
|
|
}
|
|
|
|
refresh();
|
|
</script>
|