mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-30 13:11:08 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			108 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			108 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <div class="setting-main-container">
 | |
|     <div class="card setting-card">
 | |
|       <div class="page-header">
 | |
|         <h3 class="page-title">{{ $t('settings.update_app.title') }}</h3>
 | |
|         <p class="page-sub-title">
 | |
|           {{ $t('settings.update_app.description') }}
 | |
|         </p>
 | |
|         <label class="input-label">Current version</label><br>
 | |
|         <label class="version">1.0.0</label>
 | |
|         <base-button :outline="true" :disabled="isCheckingforUpdate" size="large" color="theme" @click="checkUpdate" >
 | |
|           <font-awesome-icon :class="{'update': isCheckingforUpdate}" style="margin-right: 10px;" icon="sync-alt" />
 | |
|           {{ $t('settings.update_app.check_update') }}
 | |
|         </base-button>
 | |
|         <hr>
 | |
|         <div v-show="!isUpdating" v-if="isUpdateAvailable" class="mt-4 content">
 | |
|           <h3 class="page-title">{{ $t('settings.update_app.avail_update') }}</h3>
 | |
|           <label class="input-label">{{ $t('settings.update_app.next_version') }}</label><br>
 | |
|           <label class="version">{{ updateData.version }}</label>
 | |
|           <p class="page-sub-title">
 | |
|             {{ description }}
 | |
|           </p>
 | |
|           <base-button size="large" color="theme" @click="onUpdateApp">
 | |
|             {{ $t('settings.update_app.update') }}
 | |
|           </base-button>
 | |
|         </div>
 | |
|         <div v-if="isUpdating">
 | |
|           <h3 class="page-title">{{ $t('settings.update_app.update_progress') }}</h3>
 | |
|           <p class="page-sub-title">
 | |
|             {{ $t('settings.update_app.progress_text') }}
 | |
|           </p>
 | |
|           <font-awesome-icon icon="spinner" class="fa-spin"/>
 | |
|         </div>
 | |
|       </div>
 | |
|     </div>
 | |
|   </div>
 | |
| </template>
 | |
| <script>
 | |
| import { mapActions, mapGetters } from 'vuex'
 | |
| export default {
 | |
|   data () {
 | |
|     return {
 | |
|       isShowProgressBar: false,
 | |
|       isUpdateAvailable: false,
 | |
|       isUpdating: false,
 | |
|       isCheckingforUpdate: false,
 | |
|       progress: 10,
 | |
|       interval: null,
 | |
|       description: '',
 | |
|       updateData: {
 | |
|         isMinor: Boolean,
 | |
|         installed: '',
 | |
|         version: ''
 | |
|       }
 | |
|     }
 | |
|   },
 | |
|   computed: {
 | |
|   },
 | |
|   watch: {
 | |
|   },
 | |
|   mounted () {
 | |
|   },
 | |
|   methods: {
 | |
|     async onUpdateApp () {
 | |
|       this.isUpdating = true
 | |
|       const data = this.updateData
 | |
|       let response = await axios.post('/api/update', data)
 | |
|       this.isUpdating = false
 | |
|       this.isUpdateAvailable = false
 | |
|     },
 | |
|     async checkUpdate () {
 | |
|       try {
 | |
|         this.isCheckingforUpdate = true
 | |
|         let response = await axios.get('/api/check/update')
 | |
|         this.isCheckingforUpdate = false
 | |
| 
 | |
|         if (response.data) {
 | |
|           this.updateData.isMinor = response.data.is_minor
 | |
|           this.updateData.version = response.data.version
 | |
|           this.description = response.data.description
 | |
|           this.isUpdateAvailable = true
 | |
|         }
 | |
|       } catch (e) {
 | |
|         this.isUpdateAvailable = false
 | |
|         this.isCheckingforUpdate = false
 | |
|         window.toastr['error']('Something went wrong')
 | |
|       }
 | |
|     }
 | |
|   }
 | |
| }
 | |
| </script>
 | |
| 
 | |
| <style scoped>
 | |
| .update {
 | |
|   transform: rotate(360deg);
 | |
|   animation: rotating 1s linear infinite;
 | |
| }
 | |
| 
 | |
| @keyframes rotating {
 | |
|   0% {
 | |
|     transform: rotate(0);
 | |
|   }
 | |
|   100% {
 | |
|     transform: rotate(360deg);
 | |
|   }
 | |
| }
 | |
| </style>
 |