|
126 | 126 | <div v-if="!post._deleted && !post.user.ignored" class="post-block-grid">
|
127 | 127 | <!-- Post Profile Section -->
|
128 | 128 | <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 }}"> |
130 | 130 | <div class="user-avatar" :class="defaultAvatarShape">
|
131 | 131 | <span v-if="post.user.online" class="online green" :data-balloon="post.user.username + ' is online'">
|
132 | 132 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48">
|
|
141 | 141 | <router-link class="hide-mobile" :to="{ path: '/profile/' + post.user.username.toLowerCase(), query: { id: post.user.id } }">
|
142 | 142 | <div class="original-poster" v-if="post.user.original_poster">OP</div>
|
143 | 143 | <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> |
146 | 146 | </router-link>
|
147 | 147 | </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> |
148 | 153 |
|
149 | 154 | <div class="user-trust" v-if="loggedIn && postData.data.thread.trust_visible">
|
150 | 155 | <trust-display :user="post.user" />
|
|
160 | 165 | <div class="show-mobile">
|
161 | 166 | <div class="post-title-mobile">
|
162 | 167 | <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> |
166 | 174 | <div :title="post.user.name" v-if="post.user.name" class="display-name">
|
167 | 175 | <span>{{truncate(post.user.name, 33)}}</span>
|
168 | 176 | <span class="hide-mobile"> — </span>
|
169 | 177 | </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> |
171 | 179 | </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"> |
173 | 181 | <div class="original-poster" v-if="post.user.original_poster">OP</div>
|
174 | 182 | <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> |
177 | 185 | </router-link>
|
178 | 186 | <div class="timestamp">
|
179 | 187 | <span>{{humanDate(post.created_at)}}</span>
|
|
191 | 199 | <!-- Post Title -->
|
192 | 200 | <div class="hide-mobile post-title">
|
193 | 201 | <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> |
197 | 208 | <div :title="post.user.name" v-if="post.user.name" class="display-name">
|
198 | 209 | <span>{{truncate(post.user.name, 33)}}</span>
|
199 | 210 | <span class="hide-mobile"> — </span>
|
200 | 211 | </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> |
202 | 213 | <div class="timestamp">
|
203 | 214 | <span>{{humanDate(post.created_at)}}</span>
|
204 | 215 | <span v-if="showEditDate(post) && post.metadata?.edited_by_username">{{' — 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 {
|
1538 | 1549 | color: $base-font-color;
|
1539 | 1550 | font-size: $font-size-sm;
|
1540 | 1551 | font-weight: 600;
|
1541 |
| - &:hover { |
1542 |
| - color: $color-primary; |
1543 |
| - } |
1544 | 1552 | }
|
1545 | 1553 |
|
1546 | 1554 | .user-role {
|
@@ -1605,9 +1613,6 @@ ad-viewer {
|
1605 | 1613 | margin-right: 0.25rem;
|
1606 | 1614 | color: $base-font-color;
|
1607 | 1615 | font-weight: 600;
|
1608 |
| - &:hover { |
1609 |
| - color: $color-primary; |
1610 |
| - } |
1611 | 1616 | }
|
1612 | 1617 |
|
1613 | 1618 | .user-role {
|
|
0 commit comments