123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369 |
- <template>
- <div class='admin_moderation'>
- <tab-view
- :transparent='true'
- :padding='true'
- :tabs='["User reports", "Banned users"]'
- v-model='showTab'
- >
- <div slot='User reports' class='admin_moderation__tab admin_moderation__tab--boom'>
- Below are posts reported by users - to remove the thread or block the user, click 'More options…'<br/>
- Note that all actions here are <strong>permanent</strong>
- <div class='admin_moderation__reports' v-if='reports.length'>
- <div class='admin_moderation__report admin_moderation__report--header'>
- <div class='admin_moderation__report__post admin_moderation__report--cell_border admin_moderation__report--cell_border-hidden'>
- Post and thread reported
- </div>
- <div class='admin_moderation__report__reason admin_moderation__report--cell_border admin_moderation__report--cell_border-hidden'>Report reason</div>
- <div class='admin_moderation__report__flagged_by admin_moderation__report--cell_border admin_moderation__report--cell_border-hidden'>
- Reported by user
- </div>
- <div class='admin_moderation__report__actions'>
- Actions
- </div>
- </div>
- <div class='admin_moderation__report' v-for='(report, $index) in reports'>
- <div class='admin_moderation__report__post admin_moderation__report--cell_border'>
- <div class='admin_moderation__report__post__header'>
- <div class='admin_moderation__report__post__thread'>{{report.Post.Thread.name}}</div>
- <div class='admin_moderation__report__post__user'>{{report.Post.User.username}}</div>
- </div>
- <div class='admin_moderation__report__post__content'>{{report.Post.content | stripTags | truncate(150)}}</div>
- </div>
- <div class='admin_moderation__report__reason admin_moderation__report--cell_border'>{{report.reason}}</div>
- <div class='admin_moderation__report__flagged_by admin_moderation__report--cell_border'>
- <avatar-icon class='admin_moderation__report__flagged_by__avatar' :user='report.FlaggedByUser'></avatar-icon>
- <div class='admin_moderation__report__flagged_by__text_info'>
- <div class='admin_moderation__report__flagged_by__user'>{{report.FlaggedByUser.username}}</div>
- <div class='admin_moderation__report__flagged_by__date'>{{report.createdAt| formatDate}}</div>
- </div>
- </div>
- <div class='admin_moderation__report__actions'>
- <button class='button button--red' @click='removePost(report, $index)'>Remove post</button>
- <menu-button
- @delete='deleteReport(report.id, $index)'
- :options='reportMenuOptions'
- >
- <button class='button'>More options…</button>
- </menu-button>
- </div>
- </div>
- </div>
- <div class='admin_moderation__no_reports' v-else>
- <span class='fa fa-hand-peace-o'></span>
- No user reports
- </div>
- </div>
- <div slot='Banned users' class='admin_moderation__tab'>
- <div class='admin_moderation__header'>
- <div>
- Remove or edit banned users below, or add a new ban
- </div>
- <button class='button button--blue' @click='toggleShowAddNewBanModal'>Add new ban</button>
- </div>
- <table class='admin_moderation__table'>
- <tr>
- <th>User</th>
- <th>Ban type</th>
- <th>Date banned</th>
- <th>Message</th>
- </tr>
- <tr v-for='ban in bans'>
- <td>{{ban.user}}</td>
- <td>{{ban.type}}</td>
- <td>{{ban.date | formatDate}}</td>
- <td>
- <template v-if='ban.message'>{{ban.message}}</template>
- <i v-else>No message given</i>
- </td>
- </tr>
- </table>
- <modal-window v-model='showAddNewBanModal' width='30rem'>
- <div class='admin_moderation__add_new_ban_modal'>
- <h2>Ban or block a user</h2>
- <p>Search for the user to ban, then select the relevant ban type for the user</p>
- <div>
- <fancy-input placeholder='Username to ban' v-model='username' width='15rem' :large='true'></fancy-input>
- </div>
- <div>
- <fancy-input placeholder='Message to user (optional)' v-model='message' width='15rem' :large='true'></fancy-input>
- </div>
- <div>
- <select-button
- :options='options'
- name='test'
- v-model='selectedOption'
- >
- </select-button>
- </div>
- <div>
- <button class='button button--modal' @click='toggleShowAddNewBanModal'>Cancel</button>
- <button class='button button--modal button--green'>Add ban</button>
- </div>
- </div>
- </modal-window>
- </div>
- </tab-view>
- </div>
- </template>
- <script>
- import TabView from '../TabView'
- import ModalWindow from '../ModalWindow'
- import FancyInput from '../FancyInput'
- import SelectButton from '../SelectButton'
- import MenuButton from '../MenuButton'
- import AvatarIcon from '../AvatarIcon'
- import AjaxErrorHandler from '../../assets/js/errorHandler'
- export default {
- name: 'AdminDashboard',
- components: {
- TabView,
- ModalWindow,
- FancyInput,
- SelectButton,
- MenuButton,
- AvatarIcon
- },
- data () {
- return {
- showTab: 0,
- showAddNewBanModal: false,
- username: '',
- message: '',
- options: [
- { name: "Select a ban type", disabled: true },
- { name: "Block user's known ip addresses", value: "ip" },
- { name: "Ban from creating new threads", value: "thread"},
- { name: "Ban from replying to threads", value: "post"}
- ],
- selectedOption: 0,
- reportMenuOptions: [
- { value: "Delete report", event: 'delete' },
- { value: "Ban or block user" },
- { value: "Remove thread" }
- ],
- user: {
- username: 'Username',
- color: '#9bd0eb'
- },
- bans_: [],
- reports: []
- }
- },
- computed: {
- bans () {
- return this.bans_.map(ban => {
- let type = ban.type
- if(type === 'ip') {
- ban.type = 'IP block'
- } else if (type === 'thread') {
- ban.type = 'New threads'
- } else {
- ban.type = 'New threads and replies'
- }
- return ban
- })
- }
- },
- methods: {
- toggleShowAddNewBanModal () {
- this.showAddNewBanModal = !this.showAddNewBanModal
- },
- deleteReport (id, index) {
- this.axios
- .delete('/api/v1/report/' + id)
- .then(_ => {
- this.reports.splice(index, 1)
- })
- .catch(AjaxErrorHandler())
- },
- removePost (report, index) {
- this.axios
- .delete('/api/v1/post/' + report.Post.id)
- .then(_ => {
- return this.axios.delete('/api/v1/report/' + report.id)
- })
- .then(_ => {
- this.reports.splice(index, 1)
- })
- .catch(AjaxErrorHandler())
- }
- },
- mounted () {
- this.$store.dispatch('setTitle', 'admin | moderation')
- this.axios
- .get('/api/v1/report')
- .then(res => {
- this.reports = res.data
- })
- .catch(AjaxErrorHandler())
- }
- }
- </script>
- <style lang='scss' scoped>
- @import '../../assets/scss/variables.scss';
- .admin_moderation {
- padding: 1rem;
- padding-top: 0.5rem;
- @at-root #{&}__tab {
- height: 100%;
- }
- @at-root #{&}__reports {
- margin-top: 1rem;
- @extend .shadow_border;
- border-radius: 0.25rem;
- &> :first-child {
- border-radius: 0.25rem 0.25rem 0 0;
- }
- &> :last-child {
- border-radius: 0 0 0.25rem 0.25rem;
- }
- }
- @at-root #{&}__no_reports {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- padding-top: 5rem;
- font-size: 2rem;
- user-select: none;
- cursor: default;
- transition: none;
- color: $color__gray--darkest;
- span {
- font-size: 4rem;
- color: $color__gray--darker;
- }
- }
- @at-root #{&}__report {
- display: flex;
- background-color: #fff;
- border-bottom: thin solid $color__lightgray--primary;
- padding: 0.5rem;
- @at-root #{&}--header {
- font-weight: bold;
- }
- @at-root #{&}--cell_border {
- padding-right: 0.5rem;
- margin-right: 0.5rem;
- border-right: thin solid $color__lightgray--primary;
- @at-root #{&}-hidden {
- border-right-color: transparent;
- }
- }
- @at-root #{&}__post {
- width: 40%;
- @at-root #{&}__header {
- display: flex;
- justify-content: space-between;
- }
- @at-root #{&}__thread {
- font-size: 1rem;
- text-decoration: underline;
-
- }
- @at-root #{&}__content {
- }
- }
- @at-root #{&}__reason {
- width: 15%;
- }
- @at-root #{&}__flagged_by {
- width: 20%;
- display: flex;
-
- @at-root #{&}__text_info {
- margin-left: 0.5rem;
- display: flex;
- flex-direction: column;
- }
- @at-root #{&}__date {
- color: $color__darkgray--primary;
- }
- }
- @at-root #{&}__actions {
- width: 25%;
- display: flex;
- align-items: center;
- .button--red {
- margin-right: 0.5rem;
- }
- }
- }
- @at-root #{&}__header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- @at-root #{&}__add_new_ban_modal {
- padding: 1rem;
- h2 {
- padding: 0;
- margin: 0;
- margin-bottom: -0.5rem;
- }
- }
- @at-root #{&}__table {
- width: calc(100%);
- overflow: hidden;
- margin-top: 1rem;
- padding: 0.5rem;
- background-color: #fff;
- border-radius: 0.25rem;
- border-collapse: collapse;
- @extend .shadow_border;
-
- td, th {
- padding: 0.5rem;
- }
- th {
- text-align: left;
- }
- tr:nth-child(even) {
- background-color: $color__lightgray--darker;
- }
-
- }
- }
- </style>
|