forked from zadam/trilium
-
Notifications
You must be signed in to change notification settings - Fork 29
体重追踪器
baddate edited this page Feb 3, 2022
·
2 revisions
Weight Tracker是演示文档中提供的脚本API用例。
日志笔记显示(除其他外)我们如何在日志模板中设置"weight"提升属性。然后汇总数据并显示一个很好的重量时间变化图表。
在Weight Tracker的链接图中,有一个笔记“Button”。打开它并删除或注释掉它的内容。重启应用程序后,体重追踪器按钮将消失。
注意上面的屏幕快照中的"Weight Tracker"类型为"Render HTML note"。这样的笔记本身没有任何有用的内容,它的唯一目的是提供一些脚本可以渲染某些输出的地方。该脚本是根据关系 定义的renderNote
- 恰巧它是Weight Tracker的子Implementation
。
然后,此实现代码笔记包含一些HTML和JavaScript,这些HTML和JavaScript会加载所有具有"weight"属性的笔记并将它们显示在图表中。为了实际渲染图表,我们使用第三方库chart.js作为附件导入(它不内置于Trilium中)。
想要了解脚本,这里是"JS code" 笔记内容:
async function getChartData() {
const days = await api.runOnServer(async () => {
const notes = await api.getNotesWithLabel('weight');
const days = [];
for (const note of notes) {
const date = await note.getLabelValue('dateNote');
const weight = parseFloat(await note.getLabelValue('weight'));
if (date && weight) {
days.push({ date, weight });
}
}
days.sort((a, b) => a.date > b.date ? 1 : -1);
return days;
});
const datasets = [
{
label: "Weight (kg)",
backgroundColor: 'red',
borderColor: 'red',
data: days.map(day => day.weight),
fill: false,
spanGaps: true,
datalabels: {
display: false
}
}
];
return {
datasets: datasets,
labels: days.map(day => day.date)
};
}
const ctx = $("#canvas")[0].getContext("2d");
new chartjs.Chart(ctx, {
type: 'line',
data: await getChartData()
});
返回 概览