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
|
import {withEntries} from '#sugar';
const urlSpec = {
data: {
prefix: 'data/',
paths: {
root: '',
path: '<>',
album: 'album/<>',
artist: 'artist/<>',
track: 'track/<>',
},
},
localized: {
// TODO: Implement this.
// prefix: '_languageCode',
paths: {
root: '',
path: '<>',
page: '<>/',
home: '',
album: 'album/<>/',
albumCommentary: 'commentary/album/<>/',
albumGallery: 'album/<>/gallery/',
artist: 'artist/<>/',
artistGallery: 'artist/<>/gallery/',
commentaryIndex: 'commentary/',
flashIndex: 'flash/',
flash: 'flash/<>/',
flashActGallery: 'flash-act/<>/',
groupInfo: 'group/<>/',
groupGallery: 'group/<>/gallery/',
listingIndex: 'list/',
listing: 'list/<>/',
newsIndex: 'news/',
newsEntry: 'news/<>/',
staticPage: '<>/',
tag: 'tag/<>/',
track: 'track/<>/',
},
},
shared: {
paths: {
root: '',
path: '<>',
utilityRoot: 'util',
staticRoot: 'static',
utilityFile: 'util/<>',
staticFile: 'static/<>?<>',
staticIcon: 'static/icons.svg#icon-<>',
},
},
media: {
prefix: 'media/',
paths: {
root: '',
path: '<>',
albumAdditionalFile: 'album-additional/<>/<>',
albumBanner: 'album-art/<>/banner.<>',
albumCover: 'album-art/<>/cover.<>',
albumWallpaper: 'album-art/<>/bg.<>',
artistAvatar: 'artist-avatar/<>.<>',
flashArt: 'flash-art/<>.<>',
trackCover: 'album-art/<>/<>.<>',
},
},
thumb: {
prefix: 'thumb/',
paths: {
root: '',
path: '<>',
},
},
};
// This gets automatically switched in place when working from a baseDirectory,
// so it should never be referenced manually.
urlSpec.localizedWithBaseDirectory = {
paths: withEntries(urlSpec.localized.paths, (entries) =>
entries.map(([key, path]) => [key, '<>/' + path])),
};
export default urlSpec;
|