-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcolumns.tsx
48 lines (47 loc) · 1.63 KB
/
columns.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import { config } from '../../../package.json';
import HistoryAnalyzer from './history/analyzer';
import { toTimeString } from './utils';
import { React } from './global';
export default function addItemColumns() {
Zotero.ItemTreeManager.registerColumn({
dataKey: 'totalSeconds',
label: addon.locale.totalTime,
iconLabel: (
<>
<span
className="icon icon-bg"
style={{
backgroundImage: `url(
chrome://${config.addonName}/content/icons/icon.svg
)`,
}}
/>
<span>{addon.locale.totalTime}</span>
</>
),
columnPickerSubMenu: true,
pluginID: config.addonID,
disabledIn: ['feed', 'feeds'],
zoteroPersist: ['width', 'hidden', 'sortDirection'],
minWidth: 24,
dataProvider: (item: Zotero.Item) => {
try {
if (!addon.history.cacheLoaded) return '';
return new HistoryAnalyzer(item).totalS.toString();
} catch (e) {
addon.log(e);
return '';
}
},
renderCell: (_, data, column) => {
const doc = Zotero.getMainWindow().document;
return addon.ui.createElement(doc, 'span', {
properties: { textContent: toTimeString(data) },
classList: ['cell', ...column.className.split(' ')],
enableElementDOMLog: false,
enableElementRecord: false,
});
},
});
}