mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
58 lines
1.8 KiB
TypeScript
58 lines
1.8 KiB
TypeScript
import { escapeHtml } from '../../string-utils';
|
|
import { ColumnName, ListRendererItemValueTemplates, NoteListColumns, RenderNoteView } from '../plugins/api/noteListType';
|
|
import * as Mustache from 'mustache';
|
|
import { objectValueFromPath } from '@joplin/utils/object';
|
|
|
|
interface Cell {
|
|
name: ColumnName;
|
|
styleHtml: string;
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
|
value: any;
|
|
contentHtml: ()=> string;
|
|
}
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
|
const valueToString = (value: any) => {
|
|
if (value === undefined || value === null) return '';
|
|
return value.toString();
|
|
};
|
|
|
|
export default (columns: NoteListColumns, itemTemplate: string, itemValueTemplates: ListRendererItemValueTemplates, view: RenderNoteView) => {
|
|
// `note.title` is special and has already been rendered to HTML at this point, so we need
|
|
// to ensure the string is not going to be escaped.
|
|
itemTemplate = itemTemplate.replace(/\{\{note.title\}\}/g, '{{{note.title}}}');
|
|
if (!columns || !columns.length) return Mustache.render(itemTemplate, view);
|
|
|
|
const cells: Cell[] = [];
|
|
|
|
for (const column of columns) {
|
|
const styleHtml: string[] = [];
|
|
|
|
if (column.width) {
|
|
styleHtml.push(`width: ${column.width}px`);
|
|
} else {
|
|
styleHtml.push('flex: 1');
|
|
}
|
|
|
|
cells.push({
|
|
name: column.name,
|
|
styleHtml: styleHtml.join('; '),
|
|
value: objectValueFromPath(view, column.name) || '',
|
|
contentHtml: function() {
|
|
const name = this.name as ColumnName;
|
|
if (itemValueTemplates[name]) {
|
|
return Mustache.render(itemValueTemplates[name], view);
|
|
}
|
|
return ['note.titleHtml', 'note.title'].includes(name) ? this.value : escapeHtml(valueToString(this.value));
|
|
},
|
|
});
|
|
}
|
|
|
|
const finalView = {
|
|
cells,
|
|
...view,
|
|
};
|
|
|
|
return Mustache.render(itemTemplate, finalView);
|
|
};
|