diff --git a/nonebot_plugin_dialectlist/__init__.py b/nonebot_plugin_dialectlist/__init__.py index 54b6d1e..58e4887 100644 --- a/nonebot_plugin_dialectlist/__init__.py +++ b/nonebot_plugin_dialectlist/__init__.py @@ -267,36 +267,38 @@ async def handle_rank( t1 = t.time() rank2 = await get_user_infos(bot, event, rank) logger.debug(f"获取用户信息花费时间:{t.time() - t1}") - + string: str = "" + if plugin_config.show_text_rank: - if keyword: - string += f"关于{keyword}的话痨榜结果:\n" - else: - string += "话痨榜:\n" - - for i in rank2: - logger.debug(i.user_name) - for i in range(len(rank2)): - str_example = plugin_config.string_format.format( - index=rank2[i].user_index, - nickname=rank2[i].user_nickname, - chatdatanum=rank2[i].user_bnum, - ) - string += str_example + if keyword: + string += f"关于{keyword}的话痨榜结果:\n" + else: + string += "话痨榜:\n" + + for i in rank2: + logger.debug(i.user_name) + for i in range(len(rank2)): + str_example = plugin_config.string_format.format( + index=rank2[i].user_index, + nickname=rank2[i].user_nickname, + chatdatanum=rank2[i].user_bnum, + ) + string += str_example msg = saa.Text(string) - t1 = t.time() if plugin_config.visualization: + t1 = t.time() image = await get_rank_image(rank2) msg += saa.Image(image) + logger.debug(f"群聊消息渲染图片花费时间:{t.time() - t1}") if plugin_config.suffix: timecost = t.time() - state["t1"] suffix = saa.Text(plugin_config.string_suffix.format(timecost=timecost)) msg += suffix - - logger.debug(f"群聊消息渲染图片花费时间:{t.time() - t1}") + if not msg: + await saa.Text("你把可视化都关了哪来的排行榜?").finish() await msg.finish(reply=True) diff --git a/nonebot_plugin_dialectlist/config.py b/nonebot_plugin_dialectlist/config.py index d2f68b3..e93d528 100644 --- a/nonebot_plugin_dialectlist/config.py +++ b/nonebot_plugin_dialectlist/config.py @@ -9,6 +9,7 @@ class ScopedConfig(BaseModel): suffix: bool = True # 是否显示后缀 excluded_self: bool = True # 是否排除自己 visualization: bool = True # 是否可视化 + show_text_rank:bool = True # 是否显示文本排名 counting_cache: bool = False # 计数缓存(能够提高回复速度) excluded_people: List[str] = [] # 排除的人的QQ号 use_user_info_cache: bool = False # 是否使用用户信息缓存 diff --git a/pyproject.toml b/pyproject.toml index a0b0b14..ff5ca2e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "nonebot-plugin-dialectlist" -version = "2.4.3" +version = "2.4.4" description = "看看你群群友有多能说" authors = [ {name = "Chen_Xu233", email = "woyerpa@outlook.com"},