miao-plugin/apps/character/profile-artis.js

94 lines
2.1 KiB
JavaScript
Raw Normal View History

/*
* 角色圣遗物评分详情
*
* */
import lodash from 'lodash'
2022-08-18 10:13:42 +00:00
import { Profile, Common } from '../../components/index.js'
import { getTargetUid, profileHelp, autoGetProfile } from './profile-common.js'
2022-08-18 10:13:42 +00:00
import { Artifact } from '../../models/index.js'
/*
* 角色圣遗物面板
* */
export async function profileArtis (e, { render }) {
let { uid, avatar } = e
let { profile, char, err } = await autoGetProfile(e, uid, avatar, async () => {
await profileArtis(e, { render })
})
if (err) {
return
}
2022-08-18 10:13:42 +00:00
if (!profile.hasArtis()) {
e.reply('未能获得圣遗物详情,请重新获取面板信息后查看')
return true
}
2022-08-18 10:13:42 +00:00
let charCfg = profile.getCharCfg()
let { artis, mark: totalMark, markClass: totalMarkClass, usefulMark } = profile.getArtisMark()
let { attrMap } = Artifact.getMeta()
// 渲染图像
return await Common.render('character/artis-mark', {
uid,
elem: char.elem,
data: profile,
artis,
totalMark,
totalMarkClass,
usefulMark,
attrMap,
charCfg
}, { e, render, scale: 1.3 })
}
/*
* 圣遗物列表
* */
export async function profileArtisList (e, { render }) {
let uid = await getTargetUid(e)
if (!uid) {
return true
}
let artis = []
let profiles = Profile.getAll(uid) || {}
if (!profiles || profiles.length === 0) {
e.reply('暂无角色圣遗物详情')
return true
}
2022-08-18 10:13:42 +00:00
lodash.forEach(profiles || [], (profile) => {
let name = profile.name
if (!profile.hasData || !profile.hasArtis()) {
return
}
2022-08-18 10:13:42 +00:00
let profileArtis = profile.getArtisMark()
lodash.forEach(profileArtis.artis, (arti, idx) => {
arti.usefulMark = profileArtis.usefulMark
arti.avatar = name
artis.push(arti)
})
})
if (artis.length === 0) {
e.reply('请先获取角色面板数据后再查看圣遗物列表...')
await profileHelp(e)
return true
}
artis = lodash.sortBy(artis, '_mark')
artis = artis.reverse()
artis = artis.slice(0, 28)
// 渲染图像
return await Common.render('character/artis', {
save_id: uid,
uid,
artis
}, { e, render, scale: 1.4 })
}