Skip to content

Commit 75cd5e5

Browse files
committed
feat: fix issue with redirect when message fails to create
1 parent 727a831 commit 75cd5e5

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

src/api/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ export const usersApi = {
167167
}
168168

169169
export const messagesApi = {
170-
create: data => $http('/api/messages', { method: 'POST', data }),
170+
create: data => $http('/api/messages', { method: 'POST', data }, true),
171171
page: params => $http('/api/messages', { params }),
172172
pageIgnored: params => $http('/api/messages/ignored', { params }),
173173
ignore: data => $http('/api/messages/ignore', { method: 'POST', data }),
@@ -180,7 +180,7 @@ export const messagesApi = {
180180
updateMessageDraft: draft => $http('/api/messages/draft', { method: 'PUT', data: { draft } }),
181181
convos: {
182182
page: (id, params) => $http(`/api/conversations/${id}`, { params }),
183-
create: data => $http('/api/conversations', { method: 'POST', data }),
183+
create: data => $http('/api/conversations', { method: 'POST', data }, true),
184184
delete: id => $http(`/api/conversations/${id}`, { method: 'DELETE' })
185185
}
186186
}

src/components/layout/Editor.vue

+4-4
Original file line numberDiff line numberDiff line change
@@ -192,10 +192,10 @@
192192
<button class="inverted-button cancel" @click="cancel()">
193193
Cancel
194194
</button>
195-
<button class="no-animate send" v-if="editorConvoMode" @click.prevent="createAction(newMessage).then(closeEditor)" :disabled="!canCreate() || !newMessage?.content?.body?.length || !newMessage?.content?.subject?.length || !newMessage?.receiver_ids?.length">
195+
<button class="no-animate send" v-if="editorConvoMode" @click.prevent="createAction(newMessage).then(() => true).catch(() => false).then(c => c ? closeEditor() : null)" :disabled="!canCreate() || !newMessage?.content?.body?.length || !newMessage?.content?.subject?.length || !newMessage?.receiver_ids?.length">
196196
<i class="fa fa-paper-plane" aria-hidden="true"></i>&nbsp;&nbsp;&nbsp;Send
197197
</button>
198-
<button class="no-animate send" v-if="!editorConvoMode" @click.prevent="updateAction(newMessage).then(closeEditor)" :disabled="!canUpdate() || !newMessage?.content?.body?.length">
198+
<button class="no-animate send" v-if="!editorConvoMode" @click.prevent="updateAction(newMessage).then(() => true).catch(() => false).then(c => c ? closeEditor() : null)" :disabled="!canUpdate() || !newMessage?.content?.body?.length">
199199
<i class="fa fa-paper-plane" aria-hidden="true"></i>&nbsp;&nbsp;&nbsp;Send Reply
200200
</button>
201201

@@ -207,7 +207,7 @@
207207
<button class="inverted-button cancel" @click="cancel()">
208208
Cancel
209209
</button>
210-
<button class="send" @click.prevent="post?.id ? updateAction(posting.post).then(closeEditor) : createAction(posting.post).then(closeEditor)" :disabled="post?.id ? !canUpdate(post) : !canCreate()">
210+
<button class="send" @click.prevent="post?.id ? updateAction(posting.post).then(() => true).catch(() => false).then(c => c ? closeEditor() : null) : createAction(posting.post).then(() => true).catch(() => false).then(c => c ? closeEditor() : null)" :disabled="post?.id ? !canUpdate(post) : !canCreate()">
211211
<i class="fa fa-paper-plane" aria-hidden="true"></i>&nbsp;&nbsp;&nbsp;{{ posting?.post?.id ? 'Edit Post' : 'Create Reply' }}
212212
</button>
213213

@@ -219,7 +219,7 @@
219219
<button class="inverted-button cancel" @click="cancel()">
220220
Cancel
221221
</button>
222-
<button class="send" @click.prevent="createAction(threadCopy).then(closeEditor);" :disabled="!threadCopy?.title.length || !canCreate() || (threadCopy?.addPoll && !threadCopy.pollValid)">
222+
<button class="send" @click.prevent="createAction(threadCopy).then(() => true).catch(() => false).then(c => c ? closeEditor() : null);" :disabled="!threadCopy?.title.length || !canCreate() || (threadCopy?.addPoll && !threadCopy.pollValid)">
223223
<i class="fa fa-paper-plane" aria-hidden="true"></i>&nbsp;&nbsp;&nbsp;Start Thread
224224
</button>
225225

src/router/index.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ const routes = [
114114
path: '/messages',
115115
name: 'Messages',
116116
component: Messages,
117-
meta: { requiresAuth: true, bodyClass: 'messages' }
117+
meta: { requiresAuth: true, ignoreAxiosInterceptor: true, bodyClass: 'messages' }
118118
},
119119
{
120120
path: '/mentions',
@@ -228,6 +228,7 @@ $axios.interceptors.response.use(res => res, err => {
228228
if (router.currentRoute._value.meta.requiresAuth) router.push({ name: 'Login'})
229229
break
230230
case 403:
231+
if (router.currentRoute._value.meta.ignoreAxiosInterceptor) break
231232
if (err.response.statusText === 'Forbidden' || err.response.data.error === 'Forbidden') {
232233
router.push({ name: 'Forbidden'})
233234
}

0 commit comments

Comments
 (0)