-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.js
194 lines (175 loc) · 6.06 KB
/
options.js
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
const $ = document.querySelector.bind(document);
const $$ = document.querySelectorAll.bind(document);
const CONTENT_TYPES = {
FILM: 'FILM',
SERIES: 'SERIES',
};
const SORT_FUNCTIONS = {
YEAR: (a, b) => b.year - a.year || a.title.localeCompare(b.title),
TITLE: (a, b) => a.title.localeCompare(b.title) || b.year - a.year,
BEST: (a, b) => {
const aFloor = Math.min(a.rewatchability, a.artisticMerit);
const bFloor = Math.min(b.rewatchability, b.artisticMerit);
const aTotal = a.rewatchability + a.artisticMerit;
const bTotal = b.rewatchability + b.artisticMerit;
return bFloor - aFloor
|| bTotal - aTotal
|| b.rewatchability - a.rewatchability
|| b.artisticMerit - a.artisticMerit
|| a.title.localeCompare(b.title);
},
WORST: (a, b) => {
const aFloor = Math.min(a.rewatchability, a.artisticMerit);
const bFloor = Math.min(b.rewatchability, b.artisticMerit);
const aTotal = a.rewatchability + a.artisticMerit;
const bTotal = b.rewatchability + b.artisticMerit;
return aFloor - bFloor
|| aTotal - bTotal
|| a.rewatchability - b.rewatchability
|| a.artisticMerit - b.artisticMerit
// It is correct that a and b are not reversed here.
|| a.title.localeCompare(b.title);
},
};
let SYNC_DATA, PARSED_DATA;
function decodeSyncData (syncData) {
const itemsToMetadata = (type, items=[]) => {
return items.map((item) => {
const [year, title, rewatchability, artisticMerit] = item;
return {type, year, title, rewatchability, artisticMerit};
});
};
return {
FILM: itemsToMetadata(CONTENT_TYPES.FILM, syncData.FILM),
SERIES: itemsToMetadata(CONTENT_TYPES.SERIES, syncData.SERIES),
};
}
function sortItems (items) {
const sortFn = SORT_FUNCTIONS[$('#sort').value];
return [...items].sort(sortFn);
}
// this is the most yolo shit ever TRY AND STOP ME
function filterItems (query) {
$('#yolo').innerHTML = !query ? '' : `
tbody tr { display: none; }
tbody tr[data-filter*="${query}"] { display: table-row; }
`;
}
function renderTable (tab, items) {
const node = $(`.tab-pane[data-tab="${tab}"]`);
const ratedItems = items.filter((item) => {
return item.rewatchability + item.artisticMerit > 0;
});
node.innerHTML = `
<p>
Total seent: ${items.length}
<!-- yolo -->
Total rated: ${ratedItems.length}
</p>
<table>
<thead>
<tr>
<td>Year</td>
<td>Title</td>
<td>Rewatchability</td>
<td>Artistic Merit</td>
</tr>
</thead>
<tbody>
${sortItems(items).map((item) => {
return `
<tr data-filter="${(item.year + item.title).toLowerCase()}">
<td>${item.year}</td>
<td>${item.title}</td>
<td>${item.rewatchability || 'N/A'}</td>
<td>${item.artisticMerit || 'N/A'}</td>
</tr>
`;
}).join('')}
</tbody>
</table>
`;
}
function renderTables () {
renderTable('film', PARSED_DATA.FILM);
renderTable('series', PARSED_DATA.SERIES);
}
$('.tabs').addEventListener('click', (e) => {
if (!e.target.dataset.tab) return;
$$('.tab').forEach((tab) => tab.classList.remove('active'));
$$('.tab-pane').forEach((pane) => pane.classList.remove('active'));
$(`.tab[data-tab=${e.target.dataset.tab}]`).classList.add('active');
$(`.tab-pane[data-tab=${e.target.dataset.tab}]`).classList.add('active');
});
$('#sort').addEventListener('change', renderTables);
$('#filter').addEventListener('keyup', (e) => {
filterItems(e.target.value.toLowerCase().trim());
});
$('.btn-export').addEventListener('click', () => {
const syncItemsToCsv = (type, items) => {
return items.map((item) => {
const year = item[0];
const title = item[1];
const rewatchability = item[2] || 0;
const artisticMerit = item[3] || 0;
const _title = `"${title.replace(/"/g, '\\"')}"`;
return [type, year, _title, rewatchability, artisticMerit].join(',');
});
};
const rows = syncItemsToCsv(CONTENT_TYPES.FILM, SYNC_DATA.FILM)
.concat(syncItemsToCsv(CONTENT_TYPES.FILM.SERIES, SYNC_DATA.SERIES));
rows.unshift('Type,Year,Title,Rewatchability,Artistic Merit');
const csv = rows.join('\n');
const YYYYMMDD = new Date().toISOString().split('T')[0];
const link = document.createElement('a');
link.setAttribute('hidden', true);
link.setAttribute('href', 'data:text/csv;charset=utf-8,' + encodeURI(csv));
link.setAttribute('download', `iseentit-export-${YYYYMMDD}.csv`);
document.body.appendChild(link);
link.click();
});
$('#file').addEventListener('change', async (e) => {
const raw = await e.target.files[0].text();
const rows = raw.split('\n');
const toImport = rows.reduce((memo, row) => {
const data = row.split(/,(?=[\d"])/);
// Filters out the header row and obviously invalid rows.
const shouldImport = !!data[0].match(/["']?(FILM|SERIES)/);
if (shouldImport) {
memo.push(
data.map((cell) => {
// how is babby formed?
return cell.match(/^\d+$/)
? parseInt(cell, 10)
: cell.replace(/(^"|"$)/g, '').replace(/\\/g, '');
})
);
}
return memo;
}, []);
toImport.forEach((row) => {
const [type, year, title, rewatchability, artisticMerit] = row;
SYNC_DATA[type].push(
[year, title, rewatchability || 0, artisticMerit || 0]
);
});
await chrome.storage.sync.set({ 'iseentit': SYNC_DATA });
window.location.reload();
});
$('.btn-import').addEventListener('click', () => {
$('#file').click();
});
$('.btn-clear').addEventListener('click', () => {
const shouldClear = window.confirm(
'Your I SEENT IT! data is synced to your Chrome profile. Deleting this ' +
'data will delete it from all of your devices. Are you sure you want to ' +
'do this?'
);
if (!shouldClear) return;
chrome.storage.sync.clear(() => window.location.reload());
});
chrome.storage.sync.get('iseentit', function (data) {
SYNC_DATA = data.iseentit || { FILM: [], SERIES: [] };
PARSED_DATA = decodeSyncData(SYNC_DATA);
renderTables();
});