Skip to content

Commit 60ffefa

Browse files
authored
Merge pull request #86 from epochtalk/anonymous-user
Post Anonymous User
2 parents 8f7398b + a318ac4 commit 60ffefa

File tree

2 files changed

+52
-31
lines changed

2 files changed

+52
-31
lines changed

src/views/Posts.vue

+25-20
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126
<div v-if="!post._deleted && !post.user.ignored" class="post-block-grid">
127127
<!-- Post Profile Section -->
128128
<div class="post-user">
129-
<router-link :to="{ path: '/profile/' + post.user.username.toLowerCase(), query: { id: post.user.id }}">
129+
<router-link v-if="post.user.username" :to="{ path: '/profile/' + post.user.username.toLowerCase(), query: { id: post.user.id }}">
130130
<div class="user-avatar" :class="defaultAvatarShape">
131131
<span v-if="post.user.online" class="online green" :data-balloon="post.user.username + ' is online'">
132132
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48">
@@ -141,10 +141,15 @@
141141
<router-link class="hide-mobile" :to="{ path: '/profile/' + post.user.username.toLowerCase(), query: { id: post.user.id } }">
142142
<div class="original-poster" v-if="post.user.original_poster">OP</div>
143143
<div v-if="post.user.title" :title="('Title: ' + post.user.title)" class="user-activity"><span class="user-activity-value">{{post.user.title}}</span></div>
144-
<div v-if="post.user.activity > -1" :title="('Activity: ' + post.user.activity)" class="user-activity">Activity: <span class="user-activity-value">{{post.user.activity}}</span></div>
145-
<div v-if="post.user.merit > -1" :title="('Merit: ' + post.user.merit)" class="user-activity">Merit: <span class="user-activity-value">{{post.user.merit}}</span></div>
144+
<div v-if="post.user.activity > -1" :title="('Activity: ' + post.user.activity)" class="user-activity">Activity: <span class="user-activity-value">{{post.user.activity || 0}}</span></div>
145+
<div v-if="post.user.merit > -1" :title="('Merit: ' + post.user.merit)" class="user-activity">Merit: <span class="user-activity-value">{{post.user.merit || 0}}</span></div>
146146
</router-link>
147147
</router-link>
148+
<div v-if="!post.user.username">
149+
<div class="user-avatar" :class="defaultAvatarShape">
150+
<img :src="post.avatar || defaultAvatar" @error="$event.target.src=defaultAvatar" />
151+
</div>
152+
</div>
148153

149154
<div class="user-trust" v-if="loggedIn && postData.data.thread.trust_visible">
150155
<trust-display :user="post.user" />
@@ -160,20 +165,23 @@
160165
<div class="show-mobile">
161166
<div class="post-title-mobile">
162167
<div class="post-title-user">
163-
<span class="username" :data-balloon="post.user.role_name || 'User'"><router-link :to="{ path: '/profile/' + post.user.username.toLowerCase() }">
164-
<span v-html="post.user.username"></span>
165-
</router-link></span>
168+
<span class="username" :data-balloon="post.user.role_name || 'User'">
169+
<router-link v-if="post.user.username" :to="{ path: '/profile/' + post.user.username.toLowerCase() }">
170+
<span v-html="post.user.username"></span>
171+
</router-link>
172+
<span v-if="!post.user.username">Anonymous</span>
173+
</span>
166174
<div :title="post.user.name" v-if="post.user.name" class="display-name">
167175
<span>{{truncate(post.user.name, 33)}}</span>
168176
<span class="hide-mobile">&nbsp;&mdash;&nbsp;</span>
169177
</div>
170-
<div :title="post.user.role_name || 'user'" class="user-role" :style="userRoleHighlight(post.user.highlight_color)">{{post.user.role_name || 'user'}}</div>
178+
<div v-if="post.user.id != 0" :title="post.user.role_name || 'user'" class="user-role" :style="userRoleHighlight(post.user.highlight_color)">{{post.user.role_name || 'user'}}</div>
171179
</div>
172-
<router-link :to="{ path: '/profile/' + post.user.username.toLowerCase() }" class="user-activity-mobile">
180+
<router-link v-if="post.user.username" :to="{ path: '/profile/' + post.user.username.toLowerCase() }" class="user-activity-mobile">
173181
<div class="original-poster" v-if="post.user.original_poster">OP</div>
174182
<div v-if="post.user.title" :title="('Title: ' + post.user.title)" class="user-activity"><span class="user-activity-value">{{post.user.title}}</span></div>
175-
<div v-if="post.user.activity > -1" :title="('Activity: ' + post.user.activity)" class="user-activity">Activity: <span class="user-activity-value">{{post.user.activity}}</span></div>
176-
<div v-if="post.user.merit > -1" :title="('Merit: ' + post.user.merit)" class="user-activity">Merit: <span class="user-activity-value">{{post.user.merit}}</span></div>
183+
<div v-if="post.user.activity > -1" :title="('Activity: ' + post.user.activity)" class="user-activity">Activity: <span class="user-activity-value">{{post.user.activity || 0}}</span></div>
184+
<div v-if="post.user.merit > -1" :title="('Merit: ' + post.user.merit)" class="user-activity">Merit: <span class="user-activity-value">{{post.user.merit || 0}}</span></div>
177185
</router-link>
178186
<div class="timestamp">
179187
<span>{{humanDate(post.created_at)}}</span>
@@ -191,14 +199,17 @@
191199
<!-- Post Title -->
192200
<div class="hide-mobile post-title">
193201
<div class="post-title-user">
194-
<span class="username" :data-balloon="post.user.role_name || 'User'"><router-link :to="{ path: '/profile/' + post.user.username.toLowerCase(), query: { id: post.user.id } }">
195-
<span v-html="post.user.username"></span>
196-
</router-link></span>
202+
<span class="username" :data-balloon="post.user.role_name || 'User'">
203+
<router-link v-if="post.user.username" :to="{ path: '/profile/' + post.user.username.toLowerCase(), query: { id: post.user.id } }">
204+
<span v-html="post.user.username"></span>
205+
</router-link>
206+
<span v-if="!post.user.username">Anonymous</span>
207+
</span>
197208
<div :title="post.user.name" v-if="post.user.name" class="display-name">
198209
<span>{{truncate(post.user.name, 33)}}</span>
199210
<span class="hide-mobile">&nbsp;&mdash;&nbsp;</span>
200211
</div>
201-
<div :title="post.user.role_name || 'user'" class="user-role" :style="userRoleHighlight(post.user.highlight_color)">{{post.user.role_name || 'user'}}</div>
212+
<div v-if="post.user.id != 0" :title="post.user.role_name || 'user'" class="user-role" :style="userRoleHighlight(post.user.highlight_color)">{{post.user.role_name || 'user'}}</div>
202213
<div class="timestamp">
203214
<span>{{humanDate(post.created_at)}}</span>
204215
<span v-if="showEditDate(post) && post.metadata?.edited_by_username">{{'&nbsp;&mdash;&nbsp;Edited ' + humanDate(post.updated_at) + ' by '}}</span><a v-if="showEditDate(post) && post.metadata?.edited_by_username" href="#">{{post.metadata.edited_by_username}}</a>
@@ -1538,9 +1549,6 @@ ad-viewer {
15381549
color: $base-font-color;
15391550
font-size: $font-size-sm;
15401551
font-weight: 600;
1541-
&:hover {
1542-
color: $color-primary;
1543-
}
15441552
}
15451553
15461554
.user-role {
@@ -1605,9 +1613,6 @@ ad-viewer {
16051613
margin-right: 0.25rem;
16061614
color: $base-font-color;
16071615
font-weight: 600;
1608-
&:hover {
1609-
color: $color-primary;
1610-
}
16111616
}
16121617
16131618
.user-role {

src/views/Threads.vue

+27-11
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,10 @@
132132
<div class="started-by">
133133
Started by
134134
<span v-if="thread.user.deleted">deleted</span>
135-
<router-link v-if="!thread.user.deleted" :to="{ path: '/profile/' + thread?.user?.username.toLowerCase(), query: { id: thread?.user?.id } }">
135+
<router-link v-if="!thread.user.deleted && thread.user.username" :to="{ path: '/profile/' + thread?.user?.username.toLowerCase(), query: { id: thread?.user?.id } }">
136136
<span v-html="thread.user.username"></span>
137137
</router-link>
138+
<span v-if="!thread.user.username">Anonymous</span>
138139
<span> on {{humanDate(thread.created_at)}}</span>
139140
</div>
140141
</td>
@@ -146,17 +147,22 @@
146147

147148
<td class="last-post">
148149
<span v-if="thread.last_deleted">deleted</span>
149-
<router-link v-if="!thread.last_deleted" :to="{ path: '/profile/' + thread.last_post_username.toLowerCase(), query: { id: thread.last_post_user_id } }"><img class="avatar-small" :class="defaultAvatarShape" :src="thread.last_post_avatar || defaultAvatar" @error="$event.target.src=defaultAvatar" /></router-link>
150-
<router-link v-if="!thread.last_deleted" :to="{ path: '/profile/' + thread.last_post_username.toLowerCase(), query: { id: thread.last_post_user_id } }">
150+
<router-link v-if="!thread.last_deleted && thread.last_post_username" :to="{ path: '/profile/' + thread.last_post_username.toLowerCase(), query: { id: thread.last_post_user_id } }">
151+
<img class="avatar-small" :class="defaultAvatarShape" :src="thread.last_post_avatar || defaultAvatar" @error="$event.target.src=defaultAvatar" />
152+
</router-link>
153+
<router-link v-if="!thread.last_deleted && thread.last_post_username" :to="{ path: '/profile/' + thread.last_post_username.toLowerCase(), query: { id: thread.last_post_user_id } }">
151154
<span v-html="thread.last_post_username"></span>
152-
</router-link> posted on
155+
</router-link>
156+
<img v-if="!thread.last_deleted && !thread.last_post_username" class="avatar-small" :class="defaultAvatarShape" :src="thread.last_post_avatar || defaultAvatar" @error="$event.target.src=defaultAvatar" />
157+
<span v-if="!thread.last_deleted && !thread.last_post_username">Anonymous</span>
158+
posted on
153159
<router-link :to="{ name: 'Posts', params: { threadSlug: thread.slug }, query: { start: thread.last_post_position }, hash: '#' + thread.last_post_id }"><span>{{humanDate(thread.last_post_created_at)}}</span>.</router-link>
154160
<router-link v-if="thread.has_new_post" :to="{ name: 'Posts', params: { threadSlug: thread.slug, start: thread.latest_unread_position}, hash: '#' + thread.latest_unread_post_id }">(Last unread post)</router-link>
155161
</td>
156162
</tr>
157163

158164
<tr class="threads-data" v-for="thread in threadData.data.normal" :key="thread.id">
159-
<td class="subject" v-if="thread.user.username">
165+
<td class="subject">
160166
<div class="title">
161167
<div class="thread-state">
162168
<svg class="is-unread" v-if="thread.has_new_post" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" data-balloon="Unread">
@@ -185,9 +191,10 @@
185191
<div class="started-by">
186192
Started by
187193
<span v-if="thread.user.deleted">deleted</span>
188-
<router-link v-if="!thread.user.deleted" :to="{ path: '/profile/' + thread.user.username.toLowerCase(), query: { id: thread.user.id } }">
194+
<router-link v-if="!thread.user.deleted && thread.user.username" :to="{ path: '/profile/' + thread.user.username.toLowerCase(), query: { id: thread.user.id } }">
189195
<span v-html="thread.user.username"></span>
190196
</router-link>
197+
<span v-if="!thread.user.username">Anonymous</span>
191198
<span> on {{ humanDate(thread.created_at)}}</span>
192199
</div>
193200

@@ -196,16 +203,25 @@
196203
</div>
197204
</td>
198205

199-
<td class="views-replies" v-if="thread.user.username">
206+
<td class="views-replies">
200207
<span class="replies">{{ thread.is_proxy ? thread.post_count.toLocaleString() : (thread.post_count - 1).toLocaleString() || 0 }}</span>
201208
<span class="views">{{ thread.view_count.toLocaleString() || 0 }}</span>
202-
203209
</td>
204210

205-
<td class="last-post" v-if="thread.user.username">
211+
<td class="last-post">
206212
<span v-if="thread.last_deleted">deleted</span>
207-
<router-link v-if="!thread.last_deleted" :to="{ path: '/profile/' + thread.last_post_username.toLowerCase(), query: { id: thread.last_post_user_id } }"><img class="avatar-small" :class="defaultAvatar" :src="thread.last_post_avatar || defaultAvatar" @error="$event.target.src=defaultAvatar" /></router-link>
208-
<router-link v-if="!thread.last_deleted" :to="{ path: '/profile/' + thread.last_post_username.toLowerCase(), query: { id: thread.last_post_user_id } }"><span v-html="thread.last_post_username"></span></router-link> posted on <router-link :to="{ name: 'Posts', params: { threadSlug: thread.slug }, query: { start: thread.last_post_position }, hash: '#' + thread.last_post_id }"><span>{{humanDate(thread.last_post_created_at)}}</span>.</router-link>
213+
<router-link v-if="!thread.last_deleted && thread.last_post_username" :to="{ path: '/profile/' + thread.last_post_username.toLowerCase(), query: { id: thread.last_post_user_id } }">
214+
<img class="avatar-small" :class="defaultAvatar" :src="thread.last_post_avatar || defaultAvatar" @error="$event.target.src=defaultAvatar" />
215+
</router-link>
216+
<router-link v-if="!thread.last_deleted && thread.last_post_username" :to="{ path: '/profile/' + thread.last_post_username.toLowerCase(), query: { id: thread.last_post_user_id } }">
217+
<span v-html="thread.last_post_username"></span>
218+
</router-link>
219+
<img v-if="!thread.last_deleted && !thread.last_post_username" class="avatar-small" :class="defaultAvatar" :src="thread.last_post_avatar || defaultAvatar" @error="$event.target.src=defaultAvatar" />
220+
<span v-if="!thread.last_deleted && !thread.last_post_username">Anonymous</span>
221+
posted on
222+
<router-link :to="{ name: 'Posts', params: { threadSlug: thread.slug }, query: { start: thread.last_post_position }, hash: '#' + thread.last_post_id }">
223+
<span>{{humanDate(thread.last_post_created_at)}}</span>.
224+
</router-link>
209225
<router-link v-if="thread.has_new_post" :to="{ name: 'Posts', params: { threadSlug: thread.slug }, query: { start: thread.latest_unread_position }, hash: '#' + thread.latest_unread_post_id }">(Last unread post)</router-link>
210226
</td>
211227
<td class="show-mobile">

0 commit comments

Comments
 (0)