12 lines
512 B
JavaScript
12 lines
512 B
JavaScript
'use strict';
|
|
|
|
// Subject types in the order the sync iterates them.
|
|
const SUBJECT_TYPES = [2, 1, 4, 3, 6];
|
|
// Collection types: 1 想看 / 2 看过 / 3 在看 / 4 搁置 / 5 抛弃.
|
|
const COLLECTION_TYPES = [1, 2, 3, 4, 5];
|
|
|
|
const STATUS = { 0: '全部', 1: '想看', 2: '看过', 3: '在看', 4: '搁置', 5: '抛弃', 99: '安全箱' };
|
|
const SUBJECT_LABEL = { 1: '书籍', 2: '动画', 3: '音乐', 4: '游戏', 6: '三次元' };
|
|
|
|
module.exports = { SUBJECT_TYPES, COLLECTION_TYPES, STATUS, SUBJECT_LABEL };
|