mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Add remote report components
This commit is contained in:
parent
ef0ff78e4a
commit
372a116a2c
2 changed files with 410 additions and 0 deletions
106
resources/assets/components/admin/partial/AdminReadMore.vue
Normal file
106
resources/assets/components/admin/partial/AdminReadMore.vue
Normal file
|
@ -0,0 +1,106 @@
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<div class="mb-0" :style="{ 'font-size':`${fontSize}px` }">{{ contentText }}</div>
|
||||||
|
<p class="mb-0"><a v-if="canStepExpand || (canExpand && !expanded)" class="font-weight-bold small" href="#" @click="expand()">Read more</a></p>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
props: {
|
||||||
|
content: {
|
||||||
|
type: String
|
||||||
|
},
|
||||||
|
maxLength: {
|
||||||
|
type: Number,
|
||||||
|
default: 140
|
||||||
|
},
|
||||||
|
fontSize: {
|
||||||
|
type: String,
|
||||||
|
default: "13"
|
||||||
|
},
|
||||||
|
step: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false
|
||||||
|
},
|
||||||
|
stepLimit: {
|
||||||
|
type: Number,
|
||||||
|
default: 140
|
||||||
|
},
|
||||||
|
initialLimit: {
|
||||||
|
type: Number,
|
||||||
|
default: 10
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
computed: {
|
||||||
|
contentText: {
|
||||||
|
get() {
|
||||||
|
if(this.step) {
|
||||||
|
const len = this.content.length;
|
||||||
|
const steps = len / this.stepLimit;
|
||||||
|
if(this.stepIndex == 1 || steps < this.stepIndex) {
|
||||||
|
this.canStepExpand = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return this.steppedTruncate();
|
||||||
|
}
|
||||||
|
if(this.content && this.content.length > this.maxLength) {
|
||||||
|
this.canExpand = true;
|
||||||
|
}
|
||||||
|
return this.expanded ? this.content : this.truncate();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
expanded: false,
|
||||||
|
canExpand: false,
|
||||||
|
canStepExpand: false,
|
||||||
|
stepIndex: 1,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
expand() {
|
||||||
|
if(this.step) {
|
||||||
|
this.stepIndex++;
|
||||||
|
this.canStepExpand = true;
|
||||||
|
} else {
|
||||||
|
this.expanded = true;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
truncate() {
|
||||||
|
if(!this.content || !this.content.length) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(this.content && this.content.length < this.maxLength) {
|
||||||
|
return this.content;
|
||||||
|
}
|
||||||
|
|
||||||
|
return this.content.slice(0, this.maxLength) + '...';
|
||||||
|
},
|
||||||
|
|
||||||
|
steppedTruncate() {
|
||||||
|
if(!this.content || !this.content.length) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const len = this.content.length;
|
||||||
|
const steps = len / this.stepLimit;
|
||||||
|
const maxLen = this.stepLimit * this.stepIndex;
|
||||||
|
if(this.initialLimit != 10 && this.stepIndex === 1 && this.canStepExpand) {
|
||||||
|
this.canStepExpand = len > this.stepLimit;
|
||||||
|
return this.content.slice(0, this.initialLimit);
|
||||||
|
} else if(this.canStepExpand && this.stepIndex < steps) {
|
||||||
|
return this.content.slice(0, maxLen);
|
||||||
|
} else {
|
||||||
|
this.canStepExpand = false;
|
||||||
|
return this.content;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
|
@ -0,0 +1,304 @@
|
||||||
|
<template>
|
||||||
|
<b-modal
|
||||||
|
v-model="isOpen"
|
||||||
|
title="Remote Report"
|
||||||
|
:ok-only="true"
|
||||||
|
ok-title="Close"
|
||||||
|
:lazy="true"
|
||||||
|
:scrollable="true"
|
||||||
|
ok-variant="outline-primary"
|
||||||
|
v-on:hide="$emit('close')">
|
||||||
|
<div v-if="isLoading" class="d-flex align-items-center justify-content-center">
|
||||||
|
<b-spinner />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<template v-else>
|
||||||
|
<div class="list-group">
|
||||||
|
<div class="list-group-item d-flex justify-content-between align-items-center">
|
||||||
|
<div class="text-muted small font-weight-bold">Instance</div>
|
||||||
|
<div class="font-weight-bold">{{ model.instance }}</div>
|
||||||
|
</div>
|
||||||
|
<div v-if="model.message && model.message.length" class="list-group-item d-flex justify-content-between align-items-center flex-column gap-1">
|
||||||
|
<div class="text-muted small font-weight-bold mb-2">Message</div>
|
||||||
|
<div class="text-wrap w-100" style="word-break:break-all;font-size:12.5px;">
|
||||||
|
<admin-read-more
|
||||||
|
:content="model.message"
|
||||||
|
font-size="11"
|
||||||
|
:step="true"
|
||||||
|
:initial-limit="100"
|
||||||
|
:stepLimit="1000" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="list-group list-group-horizontal mt-3">
|
||||||
|
<div
|
||||||
|
v-if="model && model.reported"
|
||||||
|
class="list-group-item d-flex align-items-center justify-content-between flex-row flex-grow-1"
|
||||||
|
style="gap:0.4rem;">
|
||||||
|
<div class="text-muted small font-weight-bold">Reported Account</div>
|
||||||
|
|
||||||
|
<div class="d-flex justify-content-end flex-grow-1">
|
||||||
|
<a v-if="model.reported && model.reported.id" :href="`/i/web/profile/${model.reported.id}`" target="_blank" class="text-primary">
|
||||||
|
<div class="d-flex align-items-center" style="gap:0.61rem;">
|
||||||
|
<img
|
||||||
|
:src="model.reported.avatar"
|
||||||
|
width="30"
|
||||||
|
height="30"
|
||||||
|
style="object-fit: cover;border-radius:30px;"
|
||||||
|
onerror="this.src='/storage/avatars/default.png';this.error=null;">
|
||||||
|
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<p class="font-weight-bold mb-0 text-break" style="font-size: 12px;max-width: 140px;line-height: 16px;" :class="[ model.reported.is_admin ? 'text-danger': '']">@{{model.reported.acct}}</p>
|
||||||
|
<div class="d-flex text-muted mb-0" style="font-size: 10px;gap: 0.5rem;">
|
||||||
|
<span>{{prettyCount(model.reported.followers_count)}} Followers</span>
|
||||||
|
<span>·</span>
|
||||||
|
<span>Joined {{ timeAgo(model.reported.created_at) }}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
v-else
|
||||||
|
class="list-group-item d-flex align-items-center justify-content-center flex-column flex-grow-1">
|
||||||
|
<p class="font-weight-bold mb-0">Reported Account Unavailable</p>
|
||||||
|
<p class="small mb-0">The reported account may have been deleted, or is otherwise not currently active. You can safely <strong>Close Report</strong> to mark this report as read.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div v-if="model && model.statuses && model.statuses.length" class="list-group mt-3">
|
||||||
|
<admin-modal-post
|
||||||
|
v-for="(status, idx) in model.statuses"
|
||||||
|
:key="`admin-modal-post-remote-post:${status.id}:${idx}`"
|
||||||
|
:status="status"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="mt-4">
|
||||||
|
<div>
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
class="btn btn-dark btn-block rounded-pill"
|
||||||
|
@click="handleAction('mark-read')">
|
||||||
|
Close Report
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
class="btn btn-outline-dark btn-block text-center rounded-pill"
|
||||||
|
style="word-break: break-all;"
|
||||||
|
@click="handleAction('mark-all-read-by-domain')">
|
||||||
|
<span class="font-weight-light">Close all reports from</span> <strong>{{ model.instance}}</strong>
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
v-if="model.reported"
|
||||||
|
type="button"
|
||||||
|
class="btn btn-outline-dark btn-block rounded-pill flex-grow-1"
|
||||||
|
@click="handleAction('mark-all-read-by-username')">
|
||||||
|
<span class="font-weight-light">Close all reports against</span> <strong>@{{ model.reported.username }}</strong>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<template
|
||||||
|
v-if="model && model.statuses && model.statuses.length && model.reported">
|
||||||
|
<hr class="mt-3 mb-1">
|
||||||
|
|
||||||
|
<div
|
||||||
|
class="d-flex flex-row mt-2"
|
||||||
|
style="gap:0.3rem;">
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
class="btn btn-outline-danger btn-block btn-sm rounded-pill mt-0"
|
||||||
|
@click="handleAction('cw-posts')">
|
||||||
|
Apply CW to Post(s)
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
class="btn btn-outline-danger btn-block btn-sm rounded-pill mt-0"
|
||||||
|
@click="handleAction('unlist-posts')">
|
||||||
|
Unlist Post(s)
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-row mt-2">
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
class="btn btn-outline-danger btn-block btn-sm rounded-pill mt-0"
|
||||||
|
@click="handleAction('private-posts')">
|
||||||
|
Make Post(s) Private
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
class="btn btn-outline-danger btn-block btn-sm rounded-pill mt-0"
|
||||||
|
@click="handleAction('delete-posts')">
|
||||||
|
Delete Post(s)
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<template v-else-if="model && model.statuses && !model.statuses.length && model.reported">
|
||||||
|
<hr class="mt-3 mb-1">
|
||||||
|
|
||||||
|
<div
|
||||||
|
class="d-flex flex-row mt-2"
|
||||||
|
style="gap:0.3rem;">
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
class="btn btn-outline-danger btn-block btn-sm rounded-pill mt-0"
|
||||||
|
@click="handleAction('cw-all-posts')">
|
||||||
|
Apply CW to all posts
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
class="btn btn-outline-danger btn-block btn-sm rounded-pill mt-0"
|
||||||
|
@click="handleAction('unlist-all-posts')">
|
||||||
|
Unlist all account posts
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="d-flex flex-row mt-2"
|
||||||
|
style="gap:0.3rem;">
|
||||||
|
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
class="btn btn-outline-danger btn-block btn-sm rounded-pill mt-0"
|
||||||
|
@click="handleAction('private-all-posts')">
|
||||||
|
Make all posts private
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</b-modal>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import AdminModalPost from "./AdminModalPost.vue";
|
||||||
|
import AdminReadMore from "./AdminReadMore.vue";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
props: {
|
||||||
|
open: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false
|
||||||
|
},
|
||||||
|
model: {
|
||||||
|
type: Object
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
components: {
|
||||||
|
"admin-modal-post": AdminModalPost,
|
||||||
|
"admin-read-more": AdminReadMore
|
||||||
|
},
|
||||||
|
|
||||||
|
watch: {
|
||||||
|
open: {
|
||||||
|
handler() {
|
||||||
|
this.isOpen = this.open;
|
||||||
|
},
|
||||||
|
immediate: true,
|
||||||
|
deep: true,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
isLoading: true,
|
||||||
|
isOpen: false,
|
||||||
|
actions: [
|
||||||
|
'mark-read',
|
||||||
|
'cw-posts',
|
||||||
|
'unlist-posts',
|
||||||
|
'private-posts',
|
||||||
|
'delete-posts',
|
||||||
|
'mark-all-read-by-domain',
|
||||||
|
'mark-all-read-by-username',
|
||||||
|
'cw-all-posts',
|
||||||
|
'unlist-all-posts',
|
||||||
|
'private-all-posts',
|
||||||
|
],
|
||||||
|
actionMap: {
|
||||||
|
'cw-posts': 'apply content warnings to all post(s) in this report?',
|
||||||
|
'unlist-posts': 'unlist all post(s) in this report?',
|
||||||
|
'delete-posts': 'delete all post(s) in this report?',
|
||||||
|
'private-posts': 'make all post(s) in this report private/followers-only?',
|
||||||
|
'mark-all-read-by-domain': 'mark all reports by this instance as closed?',
|
||||||
|
'mark-all-read-by-username': 'mark all reports against this user as closed?',
|
||||||
|
'cw-all-posts': 'apply content warnings to all post(s) belonging to this account?',
|
||||||
|
'unlist-all-posts': 'make all post(s) belonging to this account as unlisted?',
|
||||||
|
'private-all-posts': 'make all post(s) belonging to this account as private?',
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
mounted() {
|
||||||
|
setTimeout(() => {
|
||||||
|
this.isLoading = false;
|
||||||
|
}, 300);
|
||||||
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
prettyCount(str) {
|
||||||
|
if(str) {
|
||||||
|
return str.toLocaleString('en-CA', { compactDisplay: "short", notation: "compact"});
|
||||||
|
}
|
||||||
|
return str;
|
||||||
|
},
|
||||||
|
|
||||||
|
timeAgo(str) {
|
||||||
|
if(!str) {
|
||||||
|
return str;
|
||||||
|
}
|
||||||
|
return App.util.format.timeAgo(str);
|
||||||
|
},
|
||||||
|
|
||||||
|
formatDate(str) {
|
||||||
|
let date = new Date(str);
|
||||||
|
return new Intl.DateTimeFormat('default', {
|
||||||
|
month: 'long',
|
||||||
|
day: 'numeric',
|
||||||
|
year: 'numeric',
|
||||||
|
hour: 'numeric',
|
||||||
|
minute: 'numeric'
|
||||||
|
}).format(date);
|
||||||
|
},
|
||||||
|
|
||||||
|
handleAction(action) {
|
||||||
|
if(action === 'mark-read') {
|
||||||
|
axios.post('/i/admin/api/reports/remote/handle', {
|
||||||
|
id: this.model.id,
|
||||||
|
action: action,
|
||||||
|
}).then(res => {
|
||||||
|
console.log(res.data)
|
||||||
|
})
|
||||||
|
.finally(() => {
|
||||||
|
this.$emit('refresh');
|
||||||
|
this.$emit('close');
|
||||||
|
})
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
swal({
|
||||||
|
title: 'Confirm',
|
||||||
|
text: 'Are you sure you want to ' + this.actionMap[action],
|
||||||
|
icon: 'warning',
|
||||||
|
buttons: true,
|
||||||
|
dangerMode: true,
|
||||||
|
}).then(res => {
|
||||||
|
if(res === true) {
|
||||||
|
axios.post('/i/admin/api/reports/remote/handle', {
|
||||||
|
id: this.model.id,
|
||||||
|
action: action,
|
||||||
|
}).finally(() => {
|
||||||
|
this.$emit('refresh');
|
||||||
|
this.$emit('close');
|
||||||
|
})
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
Loading…
Reference in a new issue