mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 05:18:11 +00:00
Powiadomienie o migracji
This commit is contained in:
@@ -63,6 +63,16 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.warning {
|
||||||
|
background-color: firebrick;
|
||||||
|
text-align: center;
|
||||||
|
padding: 0.5em 0.4em;
|
||||||
|
max-width: 1100px;
|
||||||
|
margin: 0 auto;
|
||||||
|
|
||||||
|
border-radius: 0 0 1em 1em;
|
||||||
|
}
|
||||||
|
|
||||||
// Error icon
|
// Error icon
|
||||||
.wip-alert {
|
.wip-alert {
|
||||||
padding: 0 0.5em;
|
padding: 0 0.5em;
|
||||||
|
|||||||
+15
@@ -59,6 +59,13 @@
|
|||||||
</header>
|
</header>
|
||||||
|
|
||||||
<main class="app_main">
|
<main class="app_main">
|
||||||
|
<div class="warning" v-if="!warningConfirmed">
|
||||||
|
{{ $t('app.migration-warning') }}
|
||||||
|
<button @click="confirmWarning" class="btn btn--text" style="text-decoration: underline">
|
||||||
|
{{ $t('app.migration-confirm') }}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
<router-view v-slot="{ Component }">
|
<router-view v-slot="{ Component }">
|
||||||
<!-- <transition name="view-anim" mode="out-in"> -->
|
<!-- <transition name="view-anim" mode="out-in"> -->
|
||||||
<keep-alive>
|
<keep-alive>
|
||||||
@@ -132,6 +139,8 @@ export default defineComponent({
|
|||||||
VERSION: packageInfo.version,
|
VERSION: packageInfo.version,
|
||||||
updateModalVisible: false,
|
updateModalVisible: false,
|
||||||
hasReleaseNotes: false,
|
hasReleaseNotes: false,
|
||||||
|
warningConfirmed: false,
|
||||||
|
|
||||||
currentLang: 'pl',
|
currentLang: 'pl',
|
||||||
|
|
||||||
brand_logo: require('@/assets/stacjownik-header-logo.svg'),
|
brand_logo: require('@/assets/stacjownik-header-logo.svg'),
|
||||||
@@ -147,6 +156,7 @@ export default defineComponent({
|
|||||||
|
|
||||||
created() {
|
created() {
|
||||||
this.loadLang();
|
this.loadLang();
|
||||||
|
this.warningConfirmed = StorageManager.getBooleanValue('warning-confirmed') || false;
|
||||||
},
|
},
|
||||||
|
|
||||||
async mounted() {
|
async mounted() {
|
||||||
@@ -162,6 +172,11 @@ export default defineComponent({
|
|||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
|
confirmWarning() {
|
||||||
|
this.warningConfirmed = true;
|
||||||
|
StorageManager.setBooleanValue('warning-confirmed', true);
|
||||||
|
},
|
||||||
|
|
||||||
toggleUpdateModal() {
|
toggleUpdateModal() {
|
||||||
this.updateModalVisible = !this.updateModalVisible;
|
this.updateModalVisible = !this.updateModalVisible;
|
||||||
StorageManager.setBooleanValue('version_notes_read', true);
|
StorageManager.setBooleanValue('version_notes_read', true);
|
||||||
|
|||||||
+3
-1
@@ -6,7 +6,9 @@
|
|||||||
"loading": "Loading data...",
|
"loading": "Loading data...",
|
||||||
"support": "Support the project",
|
"support": "Support the project",
|
||||||
"error": "An error occured while loading data!",
|
"error": "An error occured while loading data!",
|
||||||
"no-result": "No results for current search!"
|
"no-result": "No results for current search!",
|
||||||
|
"migration-warning": "Stacjownik services will be unavailable 2/06/2022 between 1-3am due to the migration of API hostings!",
|
||||||
|
"migration-confirm": "Roger that!"
|
||||||
},
|
},
|
||||||
"data-status": {
|
"data-status": {
|
||||||
"S1a-connection": "<b>S1a signal</b> <br> Cannot connect with SWDR API service!",
|
"S1a-connection": "<b>S1a signal</b> <br> Cannot connect with SWDR API service!",
|
||||||
|
|||||||
+3
-1
@@ -6,7 +6,9 @@
|
|||||||
"loading": "Pobieranie danych...",
|
"loading": "Pobieranie danych...",
|
||||||
"support": "Wspomóż projekt",
|
"support": "Wspomóż projekt",
|
||||||
"error": "Wystąpił problem z załadowaniem danych!",
|
"error": "Wystąpił problem z załadowaniem danych!",
|
||||||
"no-result": "Brak wyników o podanych kryteriach!"
|
"no-result": "Brak wyników o podanych kryteriach!",
|
||||||
|
"migration-warning": "Usługi Stacjownika będą niedostępne w godzinach 1:00-3:00 2 czerwca 2022r. z powodu migracji hostingów API!",
|
||||||
|
"migration-confirm": "Przyjąłem!"
|
||||||
},
|
},
|
||||||
|
|
||||||
"data-status": {
|
"data-status": {
|
||||||
|
|||||||
Reference in New Issue
Block a user