123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404 |
- <template>
- <div>
- <div v-if="loaded && page == 'browse'" class="container messages-page p-0 p-md-2 mt-n4" style="min-height: 50vh;">
- <div class="col-12 col-md-8 offset-md-2 p-0 px-md-2">
- <div class="card shadow-none border mt-4">
- <div class="card-header bg-white py-4">
- <span class="h4 font-weight-bold mb-0">Direct Messages</span>
- <span class="float-right">
- <a class="btn btn-outline-primary font-weight-bold py-0" href="#" @click.prevent="goto('add')">New Message</a>
- </span>
- </div>
- <div class="card-header bg-white">
- <ul class="nav nav-pills nav-fill">
- <li class="nav-item">
- <a :class="[tab == 'inbox' ? 'nav-link px-4 font-weight-bold rounded-pill active' : 'nav-link px-4 font-weight-bold rounded-pill']" @click.prevent="switchTab('inbox')" href="#">Inbox</a>
- </li>
- <li class="nav-item">
- <a :class="[tab == 'sent' ? 'nav-link px-4 font-weight-bold rounded-pill active' : 'nav-link px-4 font-weight-bold rounded-pill']" @click.prevent="switchTab('sent')" href="#">Sent</a>
- </li>
- <li class="nav-item">
- <a :class="[tab == 'filtered' ? 'nav-link px-4 font-weight-bold rounded-pill active' : 'nav-link px-4 font-weight-bold rounded-pill']" @click.prevent="switchTab('filtered')" href="#">Filtered</a>
- </li>
- </ul>
- </div>
- <ul v-if="tab == 'inbox'" class="list-group list-group-flush">
- <div v-if="!messages.inbox.length" class="list-group-item d-flex justify-content-center align-items-center" style="min-height: 40vh;">
- <p class="lead mb-0">No messages found :(</p>
- </div>
- <div v-else v-for="(thread, index) in messages.inbox">
- <a class="list-group-item text-dark text-decoration-none border-left-0 border-right-0 border-top-0" :href="'/account/direct/t/'+thread.id">
- <div class="media d-flex align-items-center">
- <img class="mr-3 rounded-circle img-thumbnail" :src="thread.avatar" alt="Generic placeholder image" width="32px">
- <div class="media-body">
- <p class="mb-0">
- <span class="font-weight-bold text-truncate" :title="[thread.isLocal ? '@' + thread.username : thread.username]" data-toggle="tooltip" data-placement="bottom">
- {{thread.name}}
- </span>
- </p>
- <p class="text-muted mb-0" style="font-size:13px;font-weight: 500;">
- <span>
- <i class="far fa-comment text-primary"></i>
- </span>
- <span class="pl-1 pr-3">
- Received
- </span>
- <span>
- {{thread.timeAgo}}
- </span>
- </p>
- </div>
- <span class="float-right">
- <i class="fas fa-chevron-right fa-lg text-lighter"></i>
- </span>
- </div>
- </a>
- </div>
- </ul>
- <ul v-if="tab == 'sent'" class="list-group list-group-flush">
- <div v-if="!messages.sent.length" class="list-group-item d-flex justify-content-center align-items-center" style="min-height: 40vh;">
- <p class="lead mb-0">No messages found :(</p>
- </div>
- <div v-else v-for="(thread, index) in messages.sent">
- <a class="list-group-item text-dark text-decoration-none border-left-0 border-right-0 border-top-0" href="#" @click.prevent="loadMessage(thread.id)">
- <div class="media d-flex align-items-center">
- <img class="mr-3 rounded-circle img-thumbnail" :src="thread.avatar" alt="Generic placeholder image" width="32px">
- <div class="media-body">
- <p class="mb-0">
- <span class="font-weight-bold text-truncate" :title="[thread.isLocal ? '@' + thread.username : thread.username]" data-toggle="tooltip" data-placement="bottom">
- {{thread.name}}
- </span>
- </p>
- <p class="text-muted mb-0" style="font-size:13px;font-weight: 500;">
- <span>
- <i class="far fa-paper-plane text-primary"></i>
- </span>
- <span class="pl-1 pr-3">
- Delivered
- </span>
- <span>
- {{thread.timeAgo}}
- </span>
- </p>
- </div>
- <span class="float-right">
- <i class="fas fa-chevron-right fa-lg text-lighter"></i>
- </span>
- </div>
- </a>
- </div>
- </ul>
- <ul v-if="tab == 'filtered'" class="list-group list-group-flush">
- <div v-if="!messages.filtered.length" class="list-group-item d-flex justify-content-center align-items-center" style="min-height: 40vh;">
- <p class="lead mb-0">No messages found :(</p>
- </div>
- <div v-else v-for="(thread, index) in messages.filtered">
- <a class="list-group-item text-dark text-decoration-none border-left-0 border-right-0 border-top-0" href="#" @click.prevent="loadMessage(thread.id)">
- <div class="media d-flex align-items-center">
- <img class="mr-3 rounded-circle img-thumbnail" :src="thread.avatar" alt="Generic placeholder image" width="32px">
- <div class="media-body">
- <p class="mb-0">
- <span class="font-weight-bold text-truncate" :title="[thread.isLocal ? '@' + thread.username : thread.username]" data-toggle="tooltip" data-placement="bottom">
- {{thread.name}}
- </span>
- </p>
- <p class="text-muted mb-0" style="font-size:13px;font-weight: 500;">
- <span>
- <i class="fas fa-shield-alt" style="color:#fd9426"></i>
- </span>
- <span class="pl-1 pr-3">
- Filtered
- </span>
- <span>
- {{thread.timeAgo}}
- </span>
- </p>
- </div>
- <span class="float-right">
- <i class="fas fa-chevron-right fa-lg text-lighter"></i>
- </span>
- </div>
- </a>
- </div>
- </ul>
- </div>
- <div v-if="tab == 'inbox'" class="mt-3 text-center">
- <button class="btn btn-outline-primary rounded-pill btn-sm" :disabled="inboxPage == 1" @click="messagePagination('inbox', 'prev')">Prev</button>
- <button class="btn btn-outline-primary rounded-pill btn-sm" :disabled="messages.inbox.length != 8" @click="messagePagination('inbox', 'next')">Next</button>
- </div>
- <div v-if="tab == 'sent'" class="mt-3 text-center">
- <button class="btn btn-outline-primary rounded-pill btn-sm" :disabled="sentPage == 1" @click="messagePagination('sent', 'prev')">Prev</button>
- <button class="btn btn-outline-primary rounded-pill btn-sm" :disabled="messages.sent.length != 8" @click="messagePagination('sent', 'next')">Next</button>
- </div>
- <div v-if="tab == 'filtered'" class="mt-3 text-center">
- <button class="btn btn-outline-primary rounded-pill btn-sm" :disabled="filteredPage == 1" @click="messagePagination('filtered', 'prev')">Prev</button>
- <button class="btn btn-outline-primary rounded-pill btn-sm" :disabled="messages.filtered.length != 8" @click="messagePagination('filtered', 'next')">Next</button>
- </div>
- </div>
- </div>
- <div v-if="loaded && page == 'add'" class="container messages-page p-0 p-md-2 mt-n4" style="min-height: 60vh;">
- <div class="col-12 col-md-8 offset-md-2 p-0 px-md-2">
- <div class="card shadow-none border mt-4">
- <div class="card-header bg-white py-4 d-flex justify-content-between">
- <span class="cursor-pointer px-3" @click="goto('browse')"><i class="fas fa-chevron-left"></i></span>
- <span class="h4 font-weight-bold mb-0">New Direct Message</span>
- <span><i class="fas fa-chevron-right text-white"></i></span>
- </div>
- <div class="card-body d-flex align-items-center justify-content-center" style="height: 60vh;">
- <div class="">
- <p class="form-group">
- <label>To:</label>
- <!-- <div class="input-group pt-0">
- <div class="input-group-prepend">
- <span class="input-group-text" id="basic-addon1">@</span>
- </div>
- <input v-model="composeUsername" type="text" class="form-control" placeholder="dansup">
- </div> -->
- <autocomplete
- :search="composeSearch"
- placeholder="@dansup"
- aria-label="Search usernames"
- :get-result-value="getTagResultValue"
- @submit="onTagSubmitLocation"
- ref="autocomplete"
- >
- </autocomplete>
- <span class="help-text small text-muted">Select a username to send a message to.</span>
- </p>
- <hr>
- <!-- <p>
- <button type="button" class="btn btn-primary font-weight-bold btn-block" @click="composeUsernameSelect()" :disabled="!composeUsername.length">Next</button>
- </p> -->
- <ul class="text-muted">
- <li>You cannot message remote accounts yet.</li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <style type="text/css" scoped>
- </style>
- <script type="text/javascript">
- import Autocomplete from '@trevoreyre/autocomplete-vue'
- import '@trevoreyre/autocomplete-vue/dist/style.css'
- export default {
- components: {
- Autocomplete
- },
- data() {
- return {
- config: window.App.config,
- loaded: false,
- profile: {},
- page: 'browse',
- pages: ['browse', 'add', 'read'],
- tab: 'inbox',
- tabs: ['inbox', 'sent', 'filtered'],
- inboxPage: 1,
- sentPage: 1,
- filteredPage: 1,
- threads: [],
- thread: false,
- threadIndex: false,
- replyText: '',
- composeUsername: '',
- ctxContext: null,
- ctxIndex: null,
- uploading: false,
- uploadProgress: null,
- messages: {
- inbox: [],
- sent: [],
- filtered: []
- }
- }
- },
- mounted() {
- this.fetchProfile();
- let self = this;
- axios.get('/api/direct/browse', {
- params: {
- a: 'inbox'
- }
- })
- .then(res => {
- self.loaded = true;
- this.threads = res.data
- this.messages.inbox = res.data;
- });
- },
- updated() {
- $('[data-toggle="tooltip"]').tooltip();
- },
- methods: {
- fetchProfile() {
- axios.get('/api/pixelfed/v1/accounts/verify_credentials').then(res => {
- this.profile = res.data;
- window._sharedData.curUser = res.data;
- });
- },
- goto(l = 'browse') {
- this.page = l;
- let url = '/account/direct';
- switch(l) {
- case 'read':
- url = '/account/direct/t/' + this.thread.id;
- break;
- case 'add':
- url += '#/new';
- break;
- }
- window.history.pushState({},'',url);
- },
- loadMessage(id) {
- let url = '/account/direct/t/' + id;
- window.location.href = url;
- return;
- },
- composeUsernameSelect() {
- if(this.profile.username == this.composeUsername) {
- swal('Ooops!', 'You cannot send a direct message to yourself.', 'error');
- this.composeUsername = '';
- return;
- }
- axios.post('/api/direct/lookup', {
- username: this.composeUsername
- }).then(res => {
- let url = '/account/direct/t/' + res.data.id;
- window.location.href = url;
- }).catch(err => {
- let msg = 'The username you entered is incorrect. Please try again';
- swal('Ooops!', msg, 'error');
- this.composeUsername = '';
- });
- },
- truncate(t) {
- return _.truncate(t);
- },
- switchTab(tab) {
- let self = this;
- switch(tab) {
- case 'inbox':
- if(this.messages.inbox.length == 0) {
- // fetch
- }
- break;
- case 'sent':
- if(this.messages.sent.length == 0) {
- axios.get('/api/direct/browse', {
- params: {
- a: 'sent'
- }
- })
- .then(res => {
- self.loaded = true;
- self.threads = res.data
- self.messages.sent = res.data;
- });
- }
- break;
- case 'filtered':
- if(this.messages.filtered.length == 0) {
- axios.get('/api/direct/browse', {
- params: {
- a: 'filtered'
- }
- })
- .then(res => {
- self.loaded = true;
- self.threads = res.data
- self.messages.filtered = res.data;
- });
- }
- break;
- }
- this.tab = tab;
- },
- composeSearch(input) {
- if (input.length < 1) { return []; };
- let self = this;
- let results = [];
- return axios.get('/api/local/compose/tag/search', {
- params: {
- q: input
- }
- }).then(res => {
- return res.data;
- });
- },
- getTagResultValue(result) {
- return '@' + result.name;
- },
- onTagSubmitLocation(result) {
- //this.$refs.autocomplete.value = '';
- window.location.href = '/account/direct/t/' + result.id;
- return;
- },
- messagePagination(tab, dir) {
- if(tab == 'inbox') {
- this.inboxPage = dir == 'prev' ? this.inboxPage - 1 : this.inboxPage + 1;
- axios.get('/api/direct/browse', {
- params: {
- a: 'inbox',
- page: this.inboxPage
- }
- })
- .then(res => {
- self.loaded = true;
- this.threads = res.data
- this.messages.inbox = res.data;
- });
- }
- if(tab == 'sent') {
- this.sentPage = dir == 'prev' ? this.sentPage - 1 : this.sentPage + 1;
- axios.get('/api/direct/browse', {
- params: {
- a: 'sent',
- page: this.sentPage
- }
- })
- .then(res => {
- self.loaded = true;
- this.threads = res.data
- this.messages.sent = res.data;
- });
- }
- if(tab == 'filtered') {
- this.filteredPage = dir == 'prev' ? this.filteredPage - 1 : this.filteredPage + 1;
- axios.get('/api/direct/browse', {
- params: {
- a: 'filtered',
- page: this.filteredPage
- }
- })
- .then(res => {
- self.loaded = true;
- this.threads = res.data
- this.messages.filtered = res.data;
- });
- }
- }
- }
- }
- </script>
|