更新
This commit is contained in:
parent
ccf30c5dca
commit
0c6ab02e8d
4
.gitignore
vendored
4
.gitignore
vendored
@ -2,3 +2,7 @@
|
||||
/.fleet
|
||||
/src/dist/bundle.min.js
|
||||
/src/dist/bundle.js
|
||||
/dist
|
||||
auto-imports.d.ts
|
||||
components.d.ts
|
||||
aws.xml
|
||||
@ -5,6 +5,14 @@
|
||||
|
||||
# CHANGE
|
||||
|
||||
## 0.9.9
|
||||
|
||||
2023年06月07日
|
||||
|
||||
### 修改
|
||||
|
||||
- 购物助手错误修复及样式调整
|
||||
|
||||
## 0.9.8
|
||||
|
||||
2023年06月06日
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "wuhu-torn-helper",
|
||||
"version": "0.9.8",
|
||||
"version": "0.9.9",
|
||||
"description": "芜湖助手",
|
||||
"scripts": {
|
||||
"release": "cross-env NODE_ENV=production rollup -c && node build.mjs",
|
||||
|
||||
File diff suppressed because one or more lines are too long
@ -1,54 +1,53 @@
|
||||
<template>
|
||||
<el-row>
|
||||
<el-col :span="20">
|
||||
<el-select-v2
|
||||
v-model="itemName"
|
||||
:options="itemNameList"
|
||||
clearable
|
||||
filterable
|
||||
placeholder="物品名"
|
||||
style="width: 99%"
|
||||
/>
|
||||
<el-col :span="22">
|
||||
<el-select-v2 v-model="itemName" :options="itemNameList" clearable filterable placeholder="物品名"
|
||||
style="width: 99%"/>
|
||||
</el-col>
|
||||
<el-col :span="4">
|
||||
<el-button style="width: 100%" type="primary" @click="doGetIMarketList(itemName2IdMap[itemName])">查询
|
||||
<el-col :span="2">
|
||||
<el-button :disabled="!itemName" :icon="Search" :loading="listLoading"
|
||||
@click="doGetIMarketList(itemName2IdMap[itemName])">查询
|
||||
</el-button>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<div v-if="itemOnList.length > 0">
|
||||
<span :style="{backgroundImage: 'url(/images/items/' + itemName2IdMap[itemName] + '/small.png)'}"
|
||||
style="display:inline-block;width:38px;height:19px;"/>
|
||||
<el-table :data="itemOnList" style="width: 100%" table-layout="auto">
|
||||
<el-skeleton :loading="listLoading" :rows="5" animated style="margin-top: 1em">
|
||||
<template #default>
|
||||
<el-table :data="itemOnList" empty-text="暂无数据" style="width: 100%" table-layout="auto">
|
||||
<el-table-column label="卖家">
|
||||
<template #default="scope">
|
||||
<el-link
|
||||
:href="'/bazaar.php?userId=' + scope.row.playerId" :underline="false"
|
||||
target="_blank"
|
||||
type="primary"
|
||||
v-text="scope.row.playerName + `[${scope.row.playerId}]`"
|
||||
/>
|
||||
<el-link :href="'/bazaar.php?userId=' + scope.row.playerId" :underline="false" target="_blank"
|
||||
type="primary" v-text="scope.row.playerName + `[${scope.row.playerId}]`"/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="单价">
|
||||
<template #default="scope">
|
||||
<div style="display: flex; align-items: center" v-text="'$' + toThousands(scope.row.price)"></div>
|
||||
<div style="display: flex; align-items: center"
|
||||
v-text="'$' + toThousands(scope.row.price)"></div>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="在售" prop="amount"/>
|
||||
<el-table-column label="批量购买">
|
||||
<el-table-column label="">
|
||||
<template #default="scope">
|
||||
<el-input v-model="scope.row.inputAmount" style="width: 12em">
|
||||
<template #append>
|
||||
<el-button :loading="scope.row.onBuying"
|
||||
type="primary" @click="buy(itemName, itemName2IdMap[itemName], scope.row)">购买
|
||||
<el-button :icon="ShoppingCart" :loading="scope.row.onBuying" type="primary"
|
||||
@click="buy(scope.row)">购买
|
||||
</el-button>
|
||||
</template>
|
||||
</el-input>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
</div>
|
||||
<el-skeleton v-if="listLoading" animated count="5" style="margin-top: 1em"/>
|
||||
<el-row v-if="queryTs">
|
||||
<el-col :span="2"><span><el-icon><Timer/></el-icon>{{ timePastFormat(currentTs - queryTs) }}</span>
|
||||
</el-col>
|
||||
<el-col :span="3">
|
||||
<span :style="{ backgroundImage: 'url(/images/items/' + itemId + '/small.png)' }"
|
||||
style="display:inline-block;width:38px;height:19px;"></span>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</template>
|
||||
</el-skeleton>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
@ -59,12 +58,13 @@ export default {
|
||||
|
||||
<script lang="ts" setup>
|
||||
|
||||
import { inject, onMounted, ref } from "vue";
|
||||
import { Search, ShoppingCart, Timer } from '@element-plus/icons-vue';
|
||||
import { ElMessage } from "element-plus";
|
||||
import { inject, onBeforeUnmount, onMounted, ref } from "vue";
|
||||
import { LoggerKey } from "../ts/class/Logger";
|
||||
import { ItemHelperKey } from "../ts/class/utils/ItemHelper";
|
||||
import { itemNameDict } from "../ts/dictionary/translation";
|
||||
import toThousands from "../ts/func/utils/toThousands";
|
||||
import { ElMessage } from "element-plus";
|
||||
|
||||
const logger = inject(LoggerKey);
|
||||
const itemHelper = inject(ItemHelperKey);
|
||||
@ -72,7 +72,8 @@ const itemHelper = inject(ItemHelperKey);
|
||||
let itemName2IdMap: { [p: string]: number } = null;
|
||||
const itemName = ref<string>('');
|
||||
const itemNameList = ref<{ value: string, label: string }[]>([]);
|
||||
const html = ref<string>('');
|
||||
const itemId = ref<number>();
|
||||
const queryTs = ref<number>(0);
|
||||
type ItemInfo = {
|
||||
playerId: string,
|
||||
playerName: string,
|
||||
@ -81,13 +82,36 @@ type ItemInfo = {
|
||||
inputAmount: number,
|
||||
// index: number,
|
||||
onBuying: boolean,
|
||||
itemId: string,
|
||||
};
|
||||
const itemOnList = ref<ItemInfo[]>([]);
|
||||
const listLoading = ref<boolean>(false);
|
||||
const currentTs = ref<number>(Date.now());
|
||||
|
||||
const doGetIMarketList = async (id) => {
|
||||
const timePastFormat = (ts: number): string => {
|
||||
// 毫秒
|
||||
if (ts < 1000) {
|
||||
return ts + 'ms';
|
||||
}
|
||||
// 秒
|
||||
else if (ts < 60000) {
|
||||
return (ts / 1000 | 0) + 's';
|
||||
}
|
||||
// 分
|
||||
else if (ts < 3600000) {
|
||||
return (ts / 60000 | 0) + 'm';
|
||||
}
|
||||
// 时
|
||||
else {
|
||||
return (ts / 3600000 | 0) + 'h';
|
||||
}
|
||||
};
|
||||
|
||||
const doGetIMarketList = async (id: number) => {
|
||||
itemOnList.value = [];
|
||||
listLoading.value = true;
|
||||
queryTs.value = 0;
|
||||
itemId.value = id;
|
||||
const queryItemListHtml = await (await fetch(window.addRFC("https://www.torn.com/imarket.php"), {
|
||||
"headers": {
|
||||
"accept": "*/*",
|
||||
@ -105,8 +129,22 @@ const doGetIMarketList = async (id) => {
|
||||
"mode": "cors",
|
||||
"credentials": "include"
|
||||
})).text();
|
||||
queryTs.value = Date.now();
|
||||
let resError = '';
|
||||
try {
|
||||
const res = JSON.parse(queryItemListHtml);
|
||||
if (!res.success) {
|
||||
resError = res.error || res.text;
|
||||
ElMessage.error(resError);
|
||||
}
|
||||
} catch (e) {
|
||||
}
|
||||
listLoading.value = false;
|
||||
|
||||
// 无法获取bazaar html内容
|
||||
if (resError) {
|
||||
throw new Error(resError);
|
||||
}
|
||||
let container = document.createElement('div');
|
||||
container.innerHTML = queryItemListHtml;
|
||||
const list = container.querySelectorAll('ul.items li.private-bazaar');
|
||||
@ -119,22 +157,24 @@ const doGetIMarketList = async (id) => {
|
||||
amount: null,
|
||||
inputAmount: null,
|
||||
index,
|
||||
onBuying: false
|
||||
onBuying: false,
|
||||
itemId: null,
|
||||
};
|
||||
item.playerId = li.querySelector("a.user.name").getAttribute('href').trim().split('XID=')[1];
|
||||
item.playerName = li.querySelector("a.user.name span").innerText.trim();
|
||||
item.price = Number(li.querySelector("span.cost-price").innerText.trim().replace('$', '').replaceAll(',', ''));
|
||||
item.amount = Number(li.querySelector("span.cost-amount").innerText.trim().split(' ')[0].replace('(', ""))
|
||||
item.amount = Number(li.querySelector("span.cost-amount").innerText.trim().split(' ')[0].replace('(', "").replaceAll(',', ''));
|
||||
item.inputAmount = item.amount;
|
||||
item.itemId = id;
|
||||
itemOnList.value.push(item);
|
||||
});
|
||||
container = null;
|
||||
};
|
||||
const buy = async (itemName: string, itemId: number, itemInfo: ItemInfo) => {
|
||||
const buy = async (itemInfo: ItemInfo) => {
|
||||
itemInfo.onBuying = true;
|
||||
try {
|
||||
// 获取玩家id bazaar信息
|
||||
let bazaarId;
|
||||
let bazaarId: string;
|
||||
const bazaarItemList: { list: { bazaarID: string, itemID: string }[] } = await (await fetch(
|
||||
`https://www.torn.com/bazaar.php?sid=bazaarData&step=getBazaarItems&start=0&ID=${ itemInfo.playerId }&order=default&by=asc&categorised=0&limit=1000&searchname=`,
|
||||
{
|
||||
@ -154,14 +194,14 @@ const buy = async (itemName: string, itemId: number, itemInfo: ItemInfo) => {
|
||||
"credentials": "include"
|
||||
})).json();
|
||||
for (let i = 0; i < bazaarItemList.list.length; i++) {
|
||||
if (bazaarItemList.list[i].itemID === itemId.toString()) {
|
||||
if (bazaarItemList.list[i].itemID === itemInfo.itemId.toString()) {
|
||||
bazaarId = bazaarItemList.list[i].bazaarID;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (!bazaarId) {
|
||||
ElMessage.error('上架商品未找到');
|
||||
logger.error('物品id未找到对应bazaar项目', bazaarItemList, itemId);
|
||||
logger.error('物品id未找到对应bazaar项目', bazaarItemList, itemInfo.itemId);
|
||||
(() => {
|
||||
throw new Error('bazaarId为空')
|
||||
})();
|
||||
@ -183,7 +223,7 @@ const buy = async (itemName: string, itemId: number, itemInfo: ItemInfo) => {
|
||||
const data = new FormData();
|
||||
data.append('userID', itemInfo.playerId);
|
||||
data.append('id', bazaarId);
|
||||
data.append('itemID', itemId.toString());
|
||||
data.append('itemID', itemInfo.itemId.toString());
|
||||
data.append('amount', itemInfo.inputAmount.toString());
|
||||
data.append('price', itemInfo.price.toString());
|
||||
data.append('beforeval', (itemInfo.price * itemInfo.inputAmount).toString());
|
||||
@ -203,7 +243,9 @@ const buy = async (itemName: string, itemId: number, itemInfo: ItemInfo) => {
|
||||
itemInfo.onBuying = false;
|
||||
};
|
||||
|
||||
let intervalId = 0;
|
||||
onMounted(async () => {
|
||||
intervalId = window.setInterval(() => currentTs.value = Date.now(), 100);
|
||||
let map = itemHelper.getItemNameMap();
|
||||
if (map.data) {
|
||||
itemName2IdMap = map.data;
|
||||
@ -217,8 +259,8 @@ onMounted(async () => {
|
||||
})
|
||||
});
|
||||
});
|
||||
|
||||
onBeforeUnmount(() => window.clearInterval(intervalId));
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
||||
<style scoped></style>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user