miao-plugin/apps/character/ProfileList.js

92 lines
2.3 KiB
JavaScript
Raw Normal View History

import lodash from 'lodash'
2022-10-06 22:20:46 +00:00
import { autoRefresh, getTargetUid } from './ProfileCommon.js'
2022-11-07 20:08:24 +00:00
import { ProfileRank } from '../../models/index.js'
import { Common, Profile, Data } from '../../components/index.js'
export async function profileList (e) {
let uid = await getTargetUid(e)
if (!uid) {
return true
}
2022-11-13 20:43:59 +00:00
let isSelfUid = false
if (e.runtime) {
let uids = e.runtime?.user?.ckUids || []
isSelfUid = uids.join(',').split(',').includes(uid + '')
}
2022-11-07 20:08:24 +00:00
let rank = false
let servName = Profile.getServName(uid)
let hasNew = false
let newCount = 0
let chars = []
let msg = ''
let newChar = {}
if (e.newChar) {
msg = '获取角色面板数据成功'
newChar = e.newChar
}
2022-11-07 20:08:24 +00:00
const cfg = await Data.importCfg('cfg')
// 获取面板数据
let profiles = Profile.getAll(uid)
// 检测标志位
let qq = (e.at && !e.atBot) ? e.at : e.qq
await ProfileRank.setUidInfo({ uid, profiles, qq, uidType: isSelfUid ? 'ck' : 'bind' })
let groupId = e.group_id
if (groupId) {
rank = await ProfileRank.create({ groupId, uid, qq: e.user_id })
}
const groupRank = rank && (cfg?.diyCfg?.groupRank || false)
const rankCfg = await ProfileRank.getGroupCfg(groupId)
2022-11-07 20:08:24 +00:00
await Profile.forEach(uid, async function (profile) {
2022-08-18 10:13:42 +00:00
if (!profile.hasData) {
return true
}
2022-08-18 10:13:42 +00:00
let char = profile.char
let tmp = char.getData('id,face,name,abbr,element,star')
tmp.face = char.getImgs(profile.costume).face
2022-08-18 10:13:42 +00:00
tmp.source = profile.dataSource
tmp.level = profile.level || 1
tmp.cons = profile.cons
tmp.isNew = 0
if (newChar[char.name]) {
tmp.isNew = 1
newCount++
}
if (rank) {
tmp.groupRank = await rank.getRank(profile, !!tmp.isNew)
}
chars.push(tmp)
})
if (chars.length === 0) {
if (await autoRefresh(e)) {
await profileList(e)
return true
} else {
2022-12-03 21:17:07 +00:00
e.reply(`本地暂无uid${uid}的面板数据...`)
}
return true
}
if (newCount > 0) {
hasNew = newCount <= 8
}
chars = lodash.sortBy(chars, ['isNew', 'star', 'level', 'id'])
chars = chars.reverse()
// 渲染图像
return await Common.render('character/profile-list', {
save_id: uid,
uid,
chars,
servName,
hasNew,
2022-11-07 20:08:24 +00:00
msg,
groupRank,
allowRank: rank && rank.allowRank,
rankCfg
}, { e, scale: 1.6 })
}