⬆️ Updates rsup-progress to 3.0.0

This commit is contained in:
Alicia Sykes 2022-02-04 22:06:15 +00:00
parent c55799ad89
commit ebae510294
7 changed files with 14 additions and 14 deletions

View File

@ -31,7 +31,7 @@
<script>
import axios from 'axios';
import ProgressBar from 'rsup-progress';
import { Progress } from 'rsup-progress';
import ErrorHandler from '@/utils/ErrorHandler';
export default {
@ -44,7 +44,7 @@ export default {
data() {
return {
appVersion: process.env.VUE_APP_VERSION, // Current version, from package.json
progress: new ProgressBar({ color: 'var(--progress-bar)' }),
progress: new Progress({ color: 'var(--progress-bar)' }),
latestVersion: '', // Will store latest version, when request returns
checksEnabled: true, // Should we check for updates
isUpToDate: true, // Is current version === latest version

View File

@ -60,7 +60,7 @@
<script>
// Import libraries
import sha256 from 'crypto-js/sha256';
import ProgressBar from 'rsup-progress';
import { Progress } from 'rsup-progress';
// Import form elements
import Button from '@/components/FormElements/Button';
import Input from '@/components/FormElements/Input';
@ -86,7 +86,7 @@ export default {
restorePassword: '',
restoreCode: '',
backupId: localStorage[localStorageKeys.BACKUP_ID] || '',
progress: new ProgressBar({ color: 'var(--progress-bar)' }),
progress: new Progress({ color: 'var(--progress-bar)' }),
};
},
components: { // UI components / icons

View File

@ -51,7 +51,7 @@
<script>
import axios from 'axios';
import ProgressBar from 'rsup-progress';
import { Progress } from 'rsup-progress';
import VJsoneditor from 'v-jsoneditor';
import jsYaml from 'js-yaml';
import ErrorHandler, { InfoHandler, InfoKeys } from '@/utils/ErrorHandler';
@ -83,7 +83,7 @@ export default {
},
responseText: '',
saveSuccess: undefined,
progress: new ProgressBar({ color: 'var(--progress-bar)' }),
progress: new Progress({ color: 'var(--progress-bar)' }),
saveOptions: [
{ label: this.$t('config-editor.location-disk-label'), value: 'file' },
{ label: this.$t('config-editor.location-local-label'), value: 'local' },

View File

@ -46,7 +46,7 @@
<script>
import axios from 'axios';
import ProgressBar from 'rsup-progress';
import { Progress } from 'rsup-progress';
import Button from '@/components/FormElements/Button';
import RebuildIcon from '@/assets/interface-icons/application-rebuild.svg';
import ReloadIcon from '@/assets/interface-icons/application-reload.svg';
@ -74,7 +74,7 @@ export default {
output: '',
message: '',
allowRebuild: true,
progress: new ProgressBar({ color: 'var(--progress-bar)' }),
progress: new Progress({ color: 'var(--progress-bar)' }),
}),
methods: {
/* Calls to the rebuild endpoint, to kickoff the app build */

View File

@ -74,7 +74,7 @@
<script>
import axios from 'axios';
import jsYaml from 'js-yaml';
import ProgressBar from 'rsup-progress';
import { Progress } from 'rsup-progress';
import Button from '@/components/FormElements/Button';
import StoreKeys from '@/utils/StoreMutations';
@ -117,7 +117,7 @@ export default {
return {
saveSuccess: undefined,
responseText: '',
progress: new ProgressBar({ color: 'var(--progress-bar)' }),
progress: new Progress({ color: 'var(--progress-bar)' }),
};
},
methods: {

View File

@ -3,7 +3,7 @@
* Manages loading state, error handling, data updates and user options
*/
import axios from 'axios';
import ProgressBar from 'rsup-progress';
import { Progress } from 'rsup-progress';
import ErrorHandler from '@/utils/ErrorHandler';
import { serviceEndpoints } from '@/utils/defaults';
@ -15,7 +15,7 @@ const WidgetMixin = {
},
},
data: () => ({
progress: new ProgressBar({ color: 'var(--progress-bar)' }),
progress: new Progress({ color: 'var(--progress-bar)' }),
overrideProxyChoice: false,
overrideUpdateInterval: null,
disableLoader: false, // Prevent ever showing the loader

View File

@ -7,7 +7,7 @@
// Import Vue.js and vue router
import Vue from 'vue';
import Router from 'vue-router';
import ProgressBar from 'rsup-progress';
import { Progress } from 'rsup-progress';
// Import views, that are not lazy-loaded
import Home from '@/views/Home.vue';
@ -19,7 +19,7 @@ import { metaTagData, startingView, routePaths } from '@/utils/defaults';
import ErrorHandler from '@/utils/ErrorHandler';
Vue.use(Router);
const progress = new ProgressBar({ color: 'var(--progress-bar)' });
const progress = new Progress({ color: 'var(--progress-bar)' });
/* Returns true if user is already authenticated, or if auth is not enabled */
const isAuthenticated = () => {