mirror of
https://github.com/earthjasonlin/zzz-signal-search-export.git
synced 2026-04-02 07:30:07 +08:00
feat: hide standard banner
This commit is contained in:
@@ -51,7 +51,7 @@
|
||||
"ui.setting.logTypeHint": "Choose which server generated logs to be used first when acquiring URL from game logs",
|
||||
"ui.setting.dataManagerHint": "Unnecessary data can be deleted",
|
||||
"ui.setting.autoUpdate": "Auto update",
|
||||
"ui.setting.hideNovice": "Hide Starter Warp",
|
||||
"ui.setting.hideStandard": "Hide Standard Banner",
|
||||
"ui.setting.proxyMode": "Proxy mode",
|
||||
"ui.setting.proxyModeHint": "When we fail to get the URL from system logs, use the system proxy",
|
||||
"ui.setting.fetchFullHistory": "Get complete data",
|
||||
|
||||
@@ -51,6 +51,7 @@
|
||||
"ui.setting.logTypeHint": "使用游戏日志获取URL时,优先选择哪种服务器生成的日志文件。",
|
||||
"ui.setting.dataManagerHint": "可以删除不需要的数据。",
|
||||
"ui.setting.autoUpdate": "自动更新",
|
||||
"ui.setting.hideStandard": "隐藏常驻池",
|
||||
"ui.setting.proxyMode": "代理模式",
|
||||
"ui.setting.proxyModeHint": "通过设置系统代理来获取URL,无法从日志中获取到有效的URL时才会启动代理服务器。",
|
||||
"ui.setting.fetchFullHistory": "获取完整数据",
|
||||
|
||||
@@ -50,6 +50,7 @@
|
||||
"ui.setting.logTypeHint": "使用遊戲日誌獲取URL時,優先選擇哪種服務器生成的日誌文件。",
|
||||
"ui.setting.dataManagerHint": "可以刪除不需要的數據。",
|
||||
"ui.setting.autoUpdate": "自動更新",
|
||||
"ui.setting.hideStandard": "隱藏常駐池",
|
||||
"ui.setting.proxyMode": "代理模式",
|
||||
"ui.setting.proxyModeHint": "通過設置系統代理來獲取URL,無法從日誌中獲取到有效的URL時才會啟動代理服務器。",
|
||||
"ui.setting.fetchFullHistory": "獲取完整數據",
|
||||
|
||||
@@ -9,7 +9,7 @@ const config = {
|
||||
proxyMode: false,
|
||||
autoUpdate: true,
|
||||
fetchFullHistory: false,
|
||||
hideNovice: false
|
||||
hideStandard: false
|
||||
}
|
||||
|
||||
const getLocalConfig = async () => {
|
||||
|
||||
@@ -12,7 +12,6 @@ const { mergeData } = require('./utils/mergeData')
|
||||
const gachaTypeRaw = require('../gachaType.json')
|
||||
|
||||
const dataMap = new Map()
|
||||
const order = ['2', '3', '1', '5']
|
||||
let apiDomain = 'https://public-operation-nap.mihoyo.com'
|
||||
|
||||
const saveData = async (data, url) => {
|
||||
|
||||
@@ -139,7 +139,7 @@
|
||||
class="gap-4 grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 2xl:grid-cols-4"
|
||||
>
|
||||
<div class="mb-4" v-for="(item, i) of detail" :key="i">
|
||||
<div :class="{ hidden: state.config.hideNovice && item[0] === '2' }">
|
||||
<div :class="{ hidden: state.config.hideStandard && item[0] === '1' }">
|
||||
<p class="text-center text-gray-600 my-2">
|
||||
{{ typeMap.get(item[0]) }}
|
||||
</p>
|
||||
|
||||
@@ -29,6 +29,12 @@
|
||||
v-model="settingForm.autoUpdate">
|
||||
</el-switch>
|
||||
</el-form-item>
|
||||
<el-form-item :label="text.hideStandard">
|
||||
<el-switch
|
||||
@change="saveSetting"
|
||||
v-model="settingForm.hideStandard">
|
||||
</el-switch>
|
||||
</el-form-item>
|
||||
<el-form-item :label="text.fetchFullHistory">
|
||||
<el-switch
|
||||
@change="saveSetting"
|
||||
@@ -103,6 +109,7 @@ const settingForm = reactive({
|
||||
proxyMode: true,
|
||||
autoUpdate: true,
|
||||
fetchFullHistory: false,
|
||||
hideStandard: true
|
||||
})
|
||||
|
||||
const state = reactive({
|
||||
@@ -115,7 +122,7 @@ const text = computed(() => props.i18n.ui.setting)
|
||||
const about = computed(() => props.i18n.ui.about)
|
||||
|
||||
const saveSetting = async () => {
|
||||
const keys = ['lang', 'logType', 'proxyMode', 'autoUpdate', 'fetchFullHistory']
|
||||
const keys = ['lang', 'logType', 'proxyMode', 'autoUpdate', 'fetchFullHistory', 'hideStandard']
|
||||
for (let key of keys) {
|
||||
await ipcRenderer.invoke('SAVE_CONFIG', [key, settingForm[key]])
|
||||
}
|
||||
|
||||
@@ -8,9 +8,13 @@ const itemCount = (map, name) => {
|
||||
}
|
||||
}
|
||||
|
||||
const order = ['2', '3', '5', '102', '103', '1']
|
||||
|
||||
const gachaDetail = (data) => {
|
||||
const detailMap = new Map()
|
||||
for (let [key, value] of data) {
|
||||
for (let key of order) {
|
||||
if (!data.has(key)) continue
|
||||
let value = data.get(key)
|
||||
let detail = {
|
||||
count2: 0, count3: 0, count4: 0,
|
||||
count2w: 0, count3w: 0, count4w: 0, count3c: 0, count4c: 0, count3b: 0, count4b: 0,
|
||||
|
||||
Reference in New Issue
Block a user