SciPost Code Repository

Skip to content
Snippets Groups Projects
Commit 66d4c6f7 authored by Jean-Sébastien Caux's avatar Jean-Sébastien Caux
Browse files

Remove b-table and b-pagination

parent f09c456c
No related branches found
No related tags found
No related merge requests found
...@@ -202,11 +202,7 @@ ...@@ -202,11 +202,7 @@
<h1 class="p-2 mb-0 text-center">Your email accounts</h1> <h1 class="p-2 mb-0 text-center">Your email accounts</h1>
<div class="text-center"><em>(click on a row to see messages)</em></div> <div class="text-center"><em>(click on a row to see messages)</em></div>
</div> </div>
<table <table class="table mb-4">
class="table mb-4"
selectable
select-mode="single"
>
<tr> <tr>
<th>Account</th> <th>Account</th>
<th>Address</th> <th>Address</th>
...@@ -241,7 +237,7 @@ ...@@ -241,7 +237,7 @@
<small class="p-2">Last loaded: {{ lastLoaded }}</small> <small class="p-2">Last loaded: {{ lastLoaded }}</small>
<span <span
class="badge bg-primary p-2" class="badge bg-primary p-2"
@click="refreshMessages" @click="fetchMessages"
> >
Refresh now Refresh now
</span> </span>
...@@ -431,66 +427,58 @@ ...@@ -431,66 +427,58 @@
</div> </div>
</div> </div>
</div> </div>
<b-table
id="my-table" <table class="table mb-0">
class="mb-0" <thead>
responsive <tr>
show-empty <th v-if="tabbedMessages.length > 0" scope="col">
:items="messagesProvider" Tab
:fields="fields" </th>
:filter="filter" <th scope="col"></th>
:filterIncludedFields="filterOn" <th scope="col">On</th>
@filtered="onFiltered" <th scope="col">Subject</th>
:per-page="perPage" <th scope="col">From</th>
:current-page="currentPage" <th scope="col">Recipients</th>
@row-clicked="onMessageRowClicked" <th scope="col">Tags</th>
> </tr>
<template v-slot:table-busy> </thead>
<button <tbody>
class="btn btn-outline-primary" <tr
type="button" disabled v-for="message in messages"
:key="message.uuid"
@click="onMessageRowClicked(message)"
> >
<span <td v-if="tabbedMessages.length > 0">
class="spinner-grow spinner-grow-sm" <span v-if="isInTabbedMessages(message.uuid)">
role="status" {{ tabbedMessages.length - indexInTabbedMessages(message.uuid) }}
aria-hidden="true" </span>
> </td>
</span> <td>
Loading... <span v-if="!message.read">
</button> <span class="badge bg-primary">&emsp;</span>
</template> </span>
<template v-slot:head(tab)="row"> </td>
<span v-if="tabbedMessages.length > 0"> <td>{{ message.datetimestamp }}</td>
Tab <td>{{ message.data.subject }}</td>
</span> <td>{{ message.data.from }}</td>
</template> <td>{{ message.data.recipients }}</td>
<template v-slot:head(tags)="row"> <td>
Tags <ul class="list-inline">
</template> <li class="list-inline-item m-0" v-for="tag in message.tags">
<template v-slot:cell(tab)="row"> <button
<span v-if="isInTabbedMessages(row.item.uuid)"> type="button"
{{ tabbedMessages.length - indexInTabbedMessages(row.item.uuid) }} class="btn btn-sm p-1"
</span> :style="'background-color: ' + tag.bg_color"
</template> >
<template v-slot:cell(read)="row"> <small :style="'color: ' + tag.text_color">{{ tag.label }}</small>
<span v-if="!row.item.read"> </button>
<span class="badge bg-primary">&emsp;</span> </li>
</span> </ul>
</template> </td>
<template v-slot:cell(tags)="row"> </tr>
<ul class="list-inline"> </tbody>
<li class="list-inline-item m-0" v-for="tag in row.item.tags"> </table>
<button
type="button"
class="btn btn-sm p-1"
:style="'background-color: ' + tag.bg_color"
>
<small :style="'color: ' + tag.text_color">{{ tag.label }}</small>
</button>
</li>
</ul>
</template>
</b-table>
<div class="card text-dark bg-light pb-0"> <div class="card text-dark bg-light pb-0">
<div class="card-body"> <div class="card-body">
<div class="row mb-0"> <div class="row mb-0">
...@@ -505,16 +493,10 @@ ...@@ -505,16 +493,10 @@
</div> </div>
</div> </div>
<div class="col col-lg-4"> <div class="col col-lg-4">
<b-pagination <b-form-input
v-model="currentPage" v-model="currentPage"
:total-rows="totalRows"
:per-page="perPage"
class="m-1"
size="sm"
align="center"
aria-controls="my-table"
> >
</b-pagination> </b-form-input>
</div> </div>
<div class="col col-lg-4"> <div class="col col-lg-4">
<b-form-group <b-form-group
...@@ -631,6 +613,7 @@ export default { ...@@ -631,6 +613,7 @@ export default {
draftMessageSelected: null, draftMessageSelected: null,
queuedMessages: null, queuedMessages: null,
tabbedMessages: [], tabbedMessages: [],
messages: [],
perPage: 8, perPage: 8,
perPageOptions: [ 8, 16, 32 ], perPageOptions: [ 8, 16, 32 ],
currentPage: 1, currentPage: 1,
...@@ -638,15 +621,6 @@ export default { ...@@ -638,15 +621,6 @@ export default {
lastFetched: null, lastFetched: null,
lastLoaded: null, lastLoaded: null,
loadError: false, loadError: false,
fields: [
{ key: 'tab', label: '' },
{ key: 'read', label: '' },
{ key: 'datetimestamp', label: 'On' },
{ key: 'data.subject', label: 'Subject' },
{ key: 'data.from', label: 'From' },
{ key: 'data.recipients', label: 'Recipients' },
{ key: 'tags', },
],
filter: null, filter: null,
filterOn: [], filterOn: [],
threadOf: null, threadOf: null,
...@@ -741,75 +715,61 @@ export default { ...@@ -741,75 +715,61 @@ export default {
} }
return false return false
}, },
messagesProvider (ctx) { fetchMessages () {
if (!this.accountSelected) return [] if (!this.accountSelected) {
this.messages = []
var params = '?account=' + this.accountSelected.email
// Our API uses limit/offset pagination
params += '&limit=' + ctx.perPage + '&offset=' + ctx.perPage * (ctx.currentPage - 1)
if (this.threadOf) {
params += '&thread_of_uuid=' + this.threadOf
}
// Add flow direction
if (this.flowDirection) {
params += '&flow=' + this.flowDirection
} }
// Add search time period else {
params += '&period=' + this.timePeriod var params = '?account=' + this.accountSelected.email
if (this.readStatus !== null) { // Our API uses limit/offset pagination
params += '&read=' + this.readStatus params += '&limit=' + this.perPage + '&offset=' + this.perPage * (this.currentPage - 1)
} if (this.threadOf) {
this.tagsRequired.forEach((tag) => { params += '&thread_of_uuid=' + this.threadOf
params += '&tag=' + tag }
}) // Add flow direction
// Add search query (if it exists) if (this.flowDirection) {
if (this.filter) { params += '&flow=' + this.flowDirection
var filterlist = ['from', 'recipients', 'subject', 'body', 'attachment']
if (this.filterOn.length > 0) {
filterlist = this.filterOn
} }
// Add search time period
params += '&period=' + this.timePeriod
if (this.readStatus !== null) {
params += '&read=' + this.readStatus
}
this.tagsRequired.forEach((tag) => {
params += '&tag=' + tag
})
// Add search query (if it exists)
if (this.filter) {
var filterlist = ['from', 'recipients', 'subject', 'body', 'attachment']
if (this.filterOn.length > 0) {
filterlist = this.filterOn
}
filterlist.forEach((filterfield) => { filterlist.forEach((filterfield) => {
params += '&' + filterfield + '=' + this.filter params += '&' + filterfield + '=' + this.filter
}); });
} }
const promise = fetch('/mail/api/stored_messages' + params)
var now = new Date() var now = new Date()
return promise.then(response => { fetch('/mail/api/stored_messages' + params)
if (response.ok) { .then(stream => stream.json())
this.lastLoaded = now.toISOString() .then(data => {
this.loadError = false this.lastLoaded = now.toISOString()
} this.loadError = false
return response.json() this.messages = data.results
}) this.totalRows = data.results.length
.then(data => { if (this.threadOf) {
const items = data.results this.tabbedMessages = this.messages
this.totalRows = data.count }
if (this.threadOf) { }).catch(error => {
this.tabbedMessages = items this.lastFetched = now.toISOString()
} this.loadError = true
return items || [] console.error(error)
}) })
.catch(error => { }
this.lastFetched = now.toISOString()
this.loadError = true
console.error(error)
})
},
refreshMessages () {
this.messagesProvider({
'perPage': this.perPage,
'currentPage': this.currentPage
})
this.$root.$emit('bv::refresh::table', 'my-table')
this.fetchQueued() this.fetchQueued()
}, },
onFiltered(filteredItems) {
this.totalRows = filteredItems.length
this.currentPage = 1
},
indexInTabbedMessages (uuid) { indexInTabbedMessages (uuid) {
for (let i = 0; i < this.tabbedMessages.length; i++) { for (let i = 0; i < this.tabbedMessages.length; i++) {
if (this.tabbedMessages[i].uuid == uuid) { if (this.tabbedMessages[i].uuid == uuid) {
...@@ -850,6 +810,7 @@ export default { ...@@ -850,6 +810,7 @@ export default {
this.fetchTags() this.fetchTags()
this.fetchDrafts() this.fetchDrafts()
this.fetchQueued() this.fetchQueued()
this.fetchMessages()
// To move to non-BootstrapVue JS // To move to non-BootstrapVue JS
// this.$root.$on('bv::modal::hide', (bvEvent, modalId) => { // this.$root.$on('bv::modal::hide', (bvEvent, modalId) => {
...@@ -860,17 +821,19 @@ export default { ...@@ -860,17 +821,19 @@ export default {
// this.fetchDrafts() // this.fetchDrafts()
// } // }
// }) // })
this.refreshInterval = setInterval(this.refreshMessages, this.refreshMinutes * 60000) this.fetchMessagesInterval = setInterval(this.fetchMessages, this.refreshMinutes * 60000)
this.resumeDraftModal = new Modal(document.getElementById('modal-resumedraft')) this.resumeDraftModal = new Modal(document.getElementById('modal-resumedraft'))
}, },
beforeDestroy() { beforeDestroy() {
clearInterval(this.refreshInterval) clearInterval(this.refreshInterval)
clearInterval(this.fetchMessagesInterval)
}, },
watch: { watch: {
accountSelected: function () { accountSelected: function () {
this.$root.$emit('bv::refresh::table', 'my-table') this.tabbedMessages = []
this.fetchMessages()
}, },
threadOf: function () { threadOf: function () {
if (this.threadOf == null) { if (this.threadOf == null) {
...@@ -880,37 +843,43 @@ export default { ...@@ -880,37 +843,43 @@ export default {
this.flowDirectionLastNotNull = this.flowDirection this.flowDirectionLastNotNull = this.flowDirection
this.flowDirection = null this.flowDirection = null
} }
this.$root.$emit('bv::refresh::table', 'my-table') this.fetchMessages()
}, },
timePeriod: function () { timePeriod: function () {
this.$root.$emit('bv::refresh::table', 'my-table') this.fetchMessages()
}, },
filterOn: function () { currentPage: function () {
this.$root.$emit('bv::refresh::table', 'my-table') this.fetchMessages()
}, },
readStatus: function () { filter: function () {
this.$root.$emit('bv::refresh::table', 'my-table') this.fetchMessages()
},
filterOn: function () {
this.fetchMessages()
}, },
flowDirection: function () { flowDirection: function () {
if (this.flowDirection != null) { if (this.flowDirection != null) {
this.flowDirectionLastNotNull = this.flowDirection this.flowDirectionLastNotNull = this.flowDirection
} }
this.$root.$emit('bv::refresh::table', 'my-table') this.fetchMessages()
}, },
tagsRequired: function () { perPage: function () {
this.$root.$emit('bv::refresh::table', 'my-table') this.fetchMessages()
}, },
accountSelected: function () { readStatus: function () {
this.tabbedMessages = [] this.fetchMessages()
},
refreshMinutes: function () {
clearInterval(this.fetchMessagesInterval)
this.fetchMessagesInterval = setInterval(this.fetchMessages, this.refreshMinutes * 60000)
}, },
tabbedMessages: function () { tabbedMessages: function () {
if (this.threadOf) { if (this.threadOf) {
this.tabIndex = this.indexInTabbedMessages(this.threadOf) this.tabIndex = this.indexInTabbedMessages(this.threadOf)
} }
}, },
refreshMinutes: function () { tagsRequired: function () {
clearInterval(this.refreshInterval) this.fetchMessages()
this.refreshInterval = setInterval(this.refreshMessages, this.refreshMinutes * 60000)
}, },
} }
} }
......
...@@ -5,10 +5,6 @@ import { ...@@ -5,10 +5,6 @@ import {
FormPlugin, FormCheckboxPlugin, BFormFile, BFormGroup, BFormInput, FormRadioPlugin, BFormSelect, FormPlugin, FormCheckboxPlugin, BFormFile, BFormGroup, BFormInput, FormRadioPlugin, BFormSelect,
// Input // Input
BInputGroup, BInputGroupAppend, BInputGroup, BInputGroupAppend,
// Pagination,
BPagination,
// Tables
TablePlugin,
} from 'bootstrap-vue'; } from 'bootstrap-vue';
// Forms // Forms
...@@ -22,10 +18,6 @@ Vue.component('b-form-select', BFormSelect) ...@@ -22,10 +18,6 @@ Vue.component('b-form-select', BFormSelect)
// Input // Input
Vue.component('b-input-group', BInputGroup) Vue.component('b-input-group', BInputGroup)
Vue.component('b-input-group-append', BInputGroupAppend) Vue.component('b-input-group-append', BInputGroupAppend)
// Pagination
Vue.component('b-pagination', BPagination)
// Tables
Vue.use(TablePlugin)
// Style // Style
......
...@@ -82,10 +82,12 @@ ...@@ -82,10 +82,12 @@
<h3 class="mb-2">Currently applied&nbsp;queries <small class="text-muted">(combined with <em>AND</em>)</small>:</h3> <h3 class="mb-2">Currently applied&nbsp;queries <small class="text-muted">(combined with <em>AND</em>)</small>:</h3>
<table class="table"> <table class="table">
<thead> <thead>
<th scope="col">Field</th> <tr>
<th scope="col">Lookup</th> <th scope="col">Field</th>
<th scope="col">Value</th> <th scope="col">Lookup</th>
<th scope="col">Actions</th> <th scope="col">Value</th>
<th scope="col">Actions</th>
</tr>
</thead> </thead>
<tbody> <tbody>
<tr <tr
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment