|
|
@@ -21,6 +21,10 @@ aside.sidebar
|
|
21
|
21
|
li(v-for="option in sortOptions")
|
|
22
|
22
|
router-link(:to="`/${type}/${sortTypes[option]}`")
|
|
23
|
23
|
p {{ option }}
|
|
|
24
|
+ //- temporary reminder
|
|
|
25
|
+ p
|
|
|
26
|
+ router-link(:to="`/exhibitions`")
|
|
|
27
|
+ p by all
|
|
24
|
28
|
|
|
25
|
29
|
//- if not single layout Events sorting
|
|
26
|
30
|
.shadow(v-if="type === 'events' && layout === 'list'")
|
|
|
@@ -29,6 +33,10 @@ aside.sidebar
|
|
29
|
33
|
li(v-for="option in sortOptions")
|
|
30
|
34
|
router-link(:to="`/${type}/${sortTypes[option]}`")
|
|
31
|
35
|
p {{ option }}
|
|
|
36
|
+ //- temporary reminder
|
|
|
37
|
+ p
|
|
|
38
|
+ router-link(:to="`/events`")
|
|
|
39
|
+ p by all
|
|
32
|
40
|
|
|
33
|
41
|
//- p2p types and related posts
|
|
34
|
42
|
.shadow(v-if="layout === 'single' && Object.keys(related).length" v-for="p2pPostType in Object.keys(related)")
|
|
|
@@ -91,6 +99,10 @@ export default {
|
|
91
|
99
|
'by material': `${sortTypes.material}`,
|
|
92
|
100
|
'by artist': `${sortTypes.artist}`,
|
|
93
|
101
|
'by episode': `${sortTypes.episode}`,
|
|
|
102
|
+ 'by artist type': `${sortTypes.artisttypes}`,
|
|
|
103
|
+ // 'by event type': `${sortTypes.eventtypes}`,
|
|
|
104
|
+ // 'by exhibition type': `${sortTypes.exhibitiontypes}`,
|
|
|
105
|
+
|
|
94
|
106
|
}
|
|
95
|
107
|
}
|
|
96
|
108
|
},
|
|
|
@@ -102,6 +114,8 @@ export default {
|
|
102
|
114
|
opts = [
|
|
103
|
115
|
Object.keys(this.sortTypes)[0],
|
|
104
|
116
|
Object.keys(this.sortTypes)[1],
|
|
|
117
|
+ Object.keys(this.sortTypes)[4],
|
|
|
118
|
+
|
|
105
|
119
|
]
|
|
106
|
120
|
break
|
|
107
|
121
|
case 'shorts':
|