Package Exports
- koishi-plugin-mark
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (koishi-plugin-mark) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
koishi plugin mark
这是 koishi 插件的打卡插件,该插件依赖数据库(mysql、mongodb),当然更依赖 koishi 框架。
如何使用
安装
yarn add koishi-plugin-mark
# or
npm i --save koishi-plugin-mark// koishi.js
import * as mark from 'koishi-plugin-mark'
app.plugin(manager, {})配置与事件
配置
设置打卡指令别名
markAliases
string[]打卡间隔时间限制
markRangeLimit
number当天打卡次数限制
markCountLimit
number配置提示信息
msgs
Record<string, string>- overflowMarkCountLimit
string
- overflowMarkCountLimit
事件
- mark/user-mark
(msg: string, mark: MarkTable, data: Mark.StatisticalData): Promise<string>param msg上一个触发该事件插件返回的字符串param mark本次打卡成功的新打卡记录实例param data统计数据 Proxy 对象,你可以通过该对象访问用户的一些统计数据
简单示例
// 用户打卡时返回用户已连续打卡天数,与总共打卡次数
app.on('mark/user-mark', async (_, mark, data) => {
return `已连续打卡 ${
await data.users[mark.uid].all.continuous
} 天, 共打卡 ${
await data.users[mark.uid].all.count
} 次。`
})指令
mark打卡、签到打卡mark.list打卡记录获取打卡的 contributor graph。