chore: Use globalConfig in NetworkNotification (#3871)

This commit is contained in:
Pranav Raj S
2022-01-31 22:55:51 -08:00
committed by GitHub
parent b1e1d7e423
commit e0d24e0a73
4 changed files with 37 additions and 12 deletions

View File

@@ -19,7 +19,10 @@
:multiple="enableMultipleFileUpload"
:drop="true"
:drop-directory="false"
:data="{ direct_upload_url: '/rails/active_storage/direct_uploads', direct_upload: true }"
:data="{
direct_upload_url: '/rails/active_storage/direct_uploads',
direct_upload: true,
}"
@input-file="onDirectFileUpload"
>
<woot-button
@@ -81,7 +84,7 @@
<script>
import FileUpload from 'vue-upload-component';
import * as ActiveStorage from "activestorage";
import * as ActiveStorage from 'activestorage';
import {
hasPressedAltAndWKey,
hasPressedAltAndAKey,
@@ -152,9 +155,6 @@ export default {
default: true,
},
},
mounted() {
ActiveStorage.start();
},
computed: {
isNote() {
return this.mode === REPLY_EDITOR_MODES.NOTE;
@@ -176,6 +176,9 @@ export default {
return ALLOWED_FILE_TYPES;
},
},
mounted() {
ActiveStorage.start();
},
methods: {
handleKeyEvents(e) {
if (hasPressedAltAndWKey(e)) {

View File

@@ -456,12 +456,15 @@ export default {
return;
}
if (checkFileSizeLimit(file, MAXIMUM_FILE_UPLOAD_SIZE)) {
const upload = new DirectUpload(file.file, '/rails/active_storage/direct_uploads', null, file.file.name);
const upload = new DirectUpload(
file.file,
'/rails/active_storage/direct_uploads',
null,
file.file.name
);
upload.create((error, blob) => {
if (error) {
this.showAlert(
error
);
this.showAlert(error);
} else {
this.attachedFiles.push({
currentChatId: this.currentChat.id,