-
-
Notifications
You must be signed in to change notification settings - Fork 10.7k
/
Copy pathmain.hbs
220 lines (211 loc) · 11 KB
/
main.hbs
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
<div class="flex flex-column h-100" {{css-transition (unless @firstRender "gh-nav-main" )}} data-test-nav-menu="main"
...attributes>
<div class="gh-toggle-nav-menu">
<button type="button" class="gh-btn-toggle-menu" {{on "click" (fn this.navigation.toggleMenu)}} title="Toggle sidebar">
<div class="segment-1"></div>
<div class="segment-2"></div>
</button>
</div>
{{#unless this.session.user.isContributor}}
<header class="gh-nav-menu">
<div class="gh-nav-menu-details">
<div class="gh-nav-menu-icon {{this.iconClass}}" style={{this.iconStyle}}></div>
<div class="gh-nav-menu-details-sitetitle">{{this.config.blogTitle}}</div>
</div>
<div class="gh-nav-menu-search">
<button class="gh-nav-btn-search" title="Search site (Ctrl/⌘ + K)" type="button" {{on "click"
(action "openSearchModal" )}} data-test-button="search"><span>{{svg-jar "search"}}</span></button>
</div>
</header>
{{/unless}}
<section class="gh-nav-body">
{{#unless this.session.user.isContributor}}
<div class="gh-nav-top">
<ul class="gh-nav-list gh-nav-main">
{{#if (and (feature "ActivityPub") this.session.user.isAdmin)}}
<li>
<LinkTo @route="activitypub-x" @current-when="activitypub-x">{{svg-jar "house"}}Home</LinkTo>
</li>
{{/if}}
{{#if (gh-user-can-admin this.session.user)}}
<li class="relative gh-nav-list-home">
<LinkTo @route="dashboard" @alt="Dashboard" data-test-nav="dashboard">
{{#if (and (feature "ActivityPub") this.session.user.isAdmin)}}
{{svg-jar "gauge"}}
{{else}}
{{svg-jar "house"}}
{{/if}}
Dashboard
</LinkTo>
</li>
{{/if}}
<li class="relative">
<span {{action "transitionToOrRefreshSite" on="click" }} class="{{if this.isOnSite "active"}}">
<LinkTo @route="site" data-test-nav="site" @current-when={{this.isOnSite}}
@preventDefault={{false}}>
{{svg-jar "view-site"}} View site
</LinkTo>
</span>
<a href="{{this.config.blogUrl}}/" class="gh-secondary-action" title="Open site in new tab"
target="_blank" rel="noopener noreferrer">
<span>{{svg-jar "external"}}</span>
</a>
</li>
{{#if (and (gh-user-can-admin this.session.user) this.config.stats)}}
<li class="relative">
<LinkTo @route="stats">{{svg-jar "stats-outline"}}Stats</LinkTo>
</li>
{{/if}}
{{#if (gh-user-can-admin this.session.user)}}
{{#if (not (and (feature "ActivityPub") this.session.user.isAdmin))}}
<li class="relative">
<a href="javascript:void(0)" class={{if this.explore.exploreWindowOpen "active" }} {{on "click" (fn
this.toggleExploreWindow "" )}} data-test-nav="explore">
{{svg-jar "globe-simple"}} Explore
</a>
</li>
{{/if}}
{{/if}}
</ul>
<ul class="gh-nav-list gh-nav-manage">
<li class="gh-nav-list-new gh-nav-list-posts relative">
<GhLinkToCustomViewsIndex @route="posts" @query={{reset-query-params "posts" }}
data-test-nav="posts">{{svg-jar "posts" class="gh-nav-posts-icon"}}Posts</GhLinkToCustomViewsIndex>
<LinkTo @route="lexical-editor.new" @model="post" class="gh-secondary-action gh-nav-new-post"
@alt="New post" title="New post" data-test-nav="new-story"><span>{{svg-jar "plus"}}</span>
</LinkTo>
{{#if this.session.user.isAuthorOrContributor}}
{{#if this.customViews.forPosts}}
<ul class="gh-nav-view-list">
{{#each this.customViews.forPosts as |view|}}
<li>
<LinkTo @route="posts" @query={{reset-query-params "posts" view.filter}}
data-test-nav-custom="{{view.route}}-{{view.name}}" title="{{view.name}}">
<span class="gh-nav-viewname">{{view.name}}</span>
<span class="flex items-center svg-{{view.color}}">
{{#unless view.icon}}
<span class="absolute circle"></span>
{{/unless}}
</span>
</LinkTo>
</li>
{{/each}}
</ul>
{{/if}}
{{else}}
{{#if this.customViews.forPosts}}
<button type="button" class="gh-nav-button-expand {{if this.navigation.settings.expanded.posts "
expanded"}}" {{on "click" (fn this.navigation.toggleExpansion "posts" )}}
aria-label="{{if this.navigation.settings.expanded.posts " Collapse custom post
types" "Expand custom post types" }}">
{{svg-jar (if this.navigation.settings.expanded.posts "arrow-down-stroke"
"arrow-right-stroke")}}
</button>
{{#liquid-if this.navigation.settings.expanded.posts}}
<ul class="gh-nav-view-list">
{{#each this.customViews.forPosts as |view|}}
<li>
<LinkTo @route="posts" @query={{reset-query-params "posts" view.filter}}
data-test-nav-custom="{{view.route}}-{{view.name}}" title="{{view.name}}">
<span class="gh-nav-viewname">{{view.name}}</span>
<span class="flex items-center svg-{{view.color}}">
{{#unless view.icon}}
<span class="absolute circle"></span>
{{/unless}}
</span>
</LinkTo>
</li>
{{/each}}
</ul>
{{/liquid-if}}
{{/if}}
{{/if}}
</li>
<li>
{{!-- clicking the Content link whilst on the content screen should reset the filter --}}
{{#if (eq this.router.currentRouteName "pages")}}
<LinkTo @route="pages" @query={{reset-query-params "pages" }} class="active" data-test-nav="pages">
{{svg-jar "page"}}Pages</LinkTo>
{{else}}
<LinkTo @route="pages" data-test-nav="pages">{{svg-jar "page"}}Pages</LinkTo>
{{/if}}
</li>
{{#if this.showTagsNavigation}}
<li>
<LinkTo @route="tags" @current-when="tags tag tag.new" data-test-nav="tags">{{svg-jar "tag"}}Tags
</LinkTo>
</li>
{{/if}}
{{#if (gh-user-can-manage-members this.session.user)}}
<li class="relative">
{{#if (eq this.router.currentRouteName "members.index")}}
<LinkTo @route="members" @current-when="members member member.new"
@query={{reset-query-params "members.index" }} data-test-nav="members">{{svg-jar
"members"}}Members
{{#let (members-count-fetcher) as |count|}}
{{#unless count.isLoading}}
<span class="gh-nav-member-count">{{format-number count.count}}</span>
{{/unless}}
{{/let}}
</LinkTo>
{{else}}
<LinkTo @route="members" @current-when="members member member.new" data-test-nav="members">{{svg-jar
"members"}}Members
{{#let (members-count-fetcher) as |count|}}
{{#unless count.isLoading}}
<span class="gh-nav-member-count">{{format-number count.count}}</span>
{{/unless}}
{{/let}}
</LinkTo>
{{/if}}
</li>
{{/if}}
{{#if (feature "adminXDemo")}}
<li>
<LinkTo @route="demo-x" @current-when="demo-x">{{svg-jar "star"}}AdminX Demo</LinkTo>
</li>
{{/if}}
{{#if (feature "postsX")}}
<li>
<LinkTo @route="posts-x" @current-when="posts-x">{{svg-jar "chart"}}Post analytics</LinkTo>
</li>
{{/if}}
{{#if (and (gh-user-can-admin this.session.user) this.config.stats (feature "statsX"))}}
<li class="relative">
<LinkTo @route="stats-x">{{svg-jar "stats-outline"}}Stats X</LinkTo>
</li>
{{/if}}
</ul>
{{#if this.session.user.isOwnerOnly}}
<ul class="gh-nav-list">
{{#if this.showBilling}}
<li class="relative">
<a href="javascript:void(0)" class={{if this.billing.billingWindowOpen "active" }}
{{action "toggleBillingModal" }} data-test-nav="billing">
{{svg-jar "credit-card"}} Ghost(Pro)
</a>
</li>
<li class="relative gh-nav-pro">
<GhBillingUpdateButton />
</li>
{{/if}}
</ul>
{{/if}}
{{#if this.showMenuExtension}}
<ul class="gh-nav-list gh-nav-settings">
{{#if this.config.clientExtensions.menu.title}}
<li class="gh-nav-list-h">{{this.config.clientExtensions.menu.title}}</li>
{{/if}}
{{#each this.config.clientExtensions.menu.items as |menuItem| }}
<li>
<a href="{{menuItem.href}}" target="_blank" rel="noopener noreferrer">{{svg-jar
menuItem.icon}}{{menuItem.text}}</a>
</li>
{{/each}}
</ul>
{{/if}}
</div>
{{/unless}}
<GhNavMenu::Footer />
</section>
</div>