forked from AkkomaGang/admin-fe
Make report ID in moderation log a link to the respective report
This commit is contained in:
parent
6cdd2f42fe
commit
ecf790257c
3 changed files with 34 additions and 3 deletions
|
@ -199,5 +199,17 @@ export const asyncRouterMap = [
|
||||||
],
|
],
|
||||||
hidden: true
|
hidden: true
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: '/reports/:id',
|
||||||
|
component: Layout,
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
path: '',
|
||||||
|
name: 'ReportsShow',
|
||||||
|
component: () => import('@/views/reports/show')
|
||||||
|
}
|
||||||
|
],
|
||||||
|
hidden: true
|
||||||
|
},
|
||||||
{ path: '*', redirect: '/404', hidden: true }
|
{ path: '*', redirect: '/404', hidden: true }
|
||||||
]
|
]
|
||||||
|
|
|
@ -8,7 +8,16 @@
|
||||||
@{{ actor.nickname }}
|
@{{ actor.nickname }}
|
||||||
</span>
|
</span>
|
||||||
</router-link>
|
</router-link>
|
||||||
<span>{{ logEntryMessage }}</span>
|
<span v-if="subject.type === 'report' && propertyExists(subject, 'id')">
|
||||||
|
{{ logEntryMessageWithoutId[0] }}
|
||||||
|
<router-link
|
||||||
|
:to="{ name: 'ReportsShow', params: { id: subject.id }}"
|
||||||
|
class="router-link">
|
||||||
|
<span style="font-weight: 600">#{{ subject.id }}</span>
|
||||||
|
</router-link>
|
||||||
|
{{ logEntryMessageWithoutId[1] }}
|
||||||
|
</span>
|
||||||
|
<span v-else>{{ logEntryMessage }}</span>
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -24,11 +33,21 @@ export default {
|
||||||
message: {
|
message: {
|
||||||
type: String,
|
type: String,
|
||||||
required: true
|
required: true
|
||||||
|
},
|
||||||
|
subject: {
|
||||||
|
type: [Object, Array],
|
||||||
|
required: false,
|
||||||
|
default: function() {
|
||||||
|
return {}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
logEntryMessage() {
|
logEntryMessage() {
|
||||||
return this.message.split(this.actor.nickname)[1]
|
return this.actor.nickname ? this.message.split(this.actor.nickname)[1] : this.message
|
||||||
|
},
|
||||||
|
logEntryMessageWithoutId() {
|
||||||
|
return this.logEntryMessage.split(`#${this.subject.id}`)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
|
@ -43,7 +43,7 @@
|
||||||
v-for="(logEntry, index) in log"
|
v-for="(logEntry, index) in log"
|
||||||
:key="index"
|
:key="index"
|
||||||
:timestamp="normalizeTimestamp(logEntry.time)">
|
:timestamp="normalizeTimestamp(logEntry.time)">
|
||||||
<log-entry-message v-if="propertyExists(logEntry.data.actor, 'nickname')" :actor="logEntry.data.actor" :message="logEntry.message"/>
|
<log-entry-message v-if="propertyExists(logEntry.data.actor, 'nickname')" :actor="logEntry.data.actor" :message="logEntry.message" :subject="logEntry.data.subject"/>
|
||||||
<span v-else>{{ logEntry.message }}</span>
|
<span v-else>{{ logEntry.message }}</span>
|
||||||
</el-timeline-item>
|
</el-timeline-item>
|
||||||
</el-timeline>
|
</el-timeline>
|
||||||
|
|
Loading…
Reference in a new issue