Skip to content
Snippets Groups Projects
Commit 0b779e76 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Merge branch 'master' into '496-service-worker-safari-does-not-support-broadcastchannel-api-2'

# Conflicts:
#   aleksis/core/frontend/components/app/App.vue
parents e9ee67e8 c589589c
No related branches found
No related tags found
1 merge request!1161Resolve "[Service Worker] Safari does not support BroadcastChannel API"
Pipeline #110712 failed
......@@ -45,10 +45,13 @@ Changed
* [Dev] The undocumented field `check` on `DataCheckResult` was renamed to `data_check`
* Frontend bundling migrated from Webpack to Vite
* Get dashboard widgets and data checks from apps with new registration mechanism.
* Better error page with redirect option to login page when user has no permission to access a route.
Fixed
~~~~~
* In some cases, the IFrame for legacy pages was not properly sized for its content.
* When accessing the person overview page without a person ID, the avatar image was not displayed properly.
* The system tried to send notifications for done background tasks
in addition to tasks started in the foreground.
* Invitations for existing short name did not work.
......
......@@ -53,15 +53,6 @@ export default {
},
},
methods: {
/** Receives a message from the legacy app inside the iframe */
receiveMessage(event) {
if (event.data.height) {
// The iframe communicated us its render height
// Set iframe to full height to prevent an inner scroll bar
this.iFrameHeight = event.data.height;
this.$root.contentLoading = false;
}
},
/** Handle iframe data after inner page loaded */
load() {
// Write new location of iframe back to Vue Router
......@@ -85,12 +76,18 @@ export default {
// Write title of iframe to SPA window
const title = this.$refs.contentIFrame.contentWindow.document.title;
this.$root.$setPageTitle(title);
// Adapt height of IFrame according to the height of its contents once and listen to resize events
this.iFrameHeight =
this.$refs.contentIFrame.contentDocument.body.scrollHeight;
this.$refs.contentIFrame.contentWindow.onresize = () => {
this.iFrameHeight =
this.$refs.contentIFrame.contentDocument.body.scrollHeight;
};
this.$root.contentLoading = false;
},
},
mounted() {
// Subscribe to message channel to receive height from iframe
this.safeAddEventListener(window, "message", this.receiveMessage);
},
watch: {
$route() {
// Show loading animation once route changes
......
......@@ -84,19 +84,24 @@
<router-view
v-if="
!$route.meta.permission || checkPermission($route.meta.permission)
!$route.meta.permission ||
checkPermission($route.meta.permission) ||
$route.name === 'dashboard'
"
/>
<message-box
type="error"
<error-page
v-else-if="
whoAmI &&
!$apollo.queries.whoAmI.loading &&
!checkPermission($route.meta.permission)
"
short-error-message-key="base.no_permission_message_short"
long-error-message-key="base.no_permission_message_long"
redirect-button-text-key="base.no_permission_redirect_text"
redirect-route-name="core.account.login"
redirect-button-icon="mdi-login-variant"
>
{{ $t("base.no_permission") }}
</message-box>
</error-page>
</v-container>
</v-main>
......@@ -202,6 +207,7 @@ import CeleryProgressBottom from "../celery_progress/CeleryProgressBottom.vue";
import Splash from "./Splash.vue";
import SideNav from "./SideNav.vue";
import SnackbarItem from "./SnackbarItem.vue";
import ErrorPage from "./ErrorPage.vue";
import gqlWhoAmI from "./whoAmI.graphql";
import gqlMessages from "./messages.graphql";
......@@ -259,6 +265,7 @@ export default {
name: "App",
components: {
AccountMenu,
ErrorPage,
NotificationList,
CeleryProgressBottom,
Splash,
......
......@@ -5,9 +5,9 @@
>
<h1 class="text-h2">{{ $t(shortErrorMessageKey) }}</h1>
<div>{{ $t(longErrorMessageKey) }}</div>
<v-btn color="secondary" :to="{ name: 'dashboard' }">
<v-icon left>mdi-home-outline</v-icon>
{{ $t("network_errors.back_to_start") }}
<v-btn color="secondary" :to="{ name: redirectRouteName }">
<v-icon left>{{ redirectButtonIcon }}</v-icon>
{{ $t(redirectButtonTextKey) }}
</v-btn>
</div>
</template>
......@@ -24,6 +24,18 @@ export default {
type: String,
required: true,
},
redirectButtonTextKey: {
type: String,
required: true,
},
redirectRouteName: {
type: String,
required: true,
},
redirectButtonIcon: {
type: String,
required: true,
},
},
};
</script>
......
......@@ -45,9 +45,6 @@ export default {
id: this.id,
};
},
skip() {
return !this.id;
},
},
},
};
......
......@@ -77,7 +77,9 @@
"person_is_dummy": "Your administrator account is not linked to any person. Therefore, a dummy person has been linked to your account.",
"privacy_policy": "Privacy Policy",
"user_not_linked_to_person": "Your user account is not linked to a person. This means you cannot access any school-related information. Please contact the managers of AlekSIS at your school.",
"no_permission": "You have no permission to view this page. Please login with an other account.",
"no_permission_message_long": "You have no permission to view this page. Please login with an other account.",
"no_permission_message_short": "No permission",
"no_permission_redirect_text": "Go to login",
"logo": "Logo"
},
"celery_progress": {
......
{
"about": {
"about_aleksis": "Щодо AlekSIS®",
"about_aleksis_1": "Ця платформа базується на AlekSIS®, веб-інструменті інформаційної системи для навчання (SIS) за допомогою якої\n можна керувати та/або висвітлювати організаційні елементи навчальних закладів. AlekSIS - безплатне ПЗ і ним може користуватися будь-хто.",
"about_aleksis_1": "Ця платформа базується на AlekSIS®, веб-інструменті інформаційної системи для навчання (SIS), за допомогою якої можна керувати та/або висвітлювати організаційні елементи навчальних закладів. AlekSIS - безплатне ПЗ і ним може користуватися будь-хто.",
"about_aleksis_2": "AlekSIS® – зареєстрована торгова марка проекту з відкритим програмним кодом AlekSIS, що представлена Teckids e.V.",
"free_open_source_licence": "Безкоштовна або Ліцензія Відкритого Коду (Open Source)",
"free_software": "Вільне ПЗ",
"full_licence_text": "Повний текст ліцензії",
"licence_consists_of": "Ліцензія складається з",
"licence_information": "Ліцензійна інформація",
"licence_information_1": "Ядро та офіційні додатки AlekSIS ліцензовані EUPL, версії 1.2 та новіше. Для отримання інформації\n щодо додатків третіх сторін, якщо такі встановлені, перейдіть до відповідних компонентів нижче. Ці ліцензії мають таку позначку:",
"licence_information_1": "Ядро та офіційні додатки AlekSIS ліцензовані EUPL, версії 1.2 та новіше. Для отримання інформації щодо додатків третіх сторін, якщо такі встановлені, перейдіть до відповідних компонентів нижче. Ці ліцензії мають таку позначку:",
"licence_type": "Тип Ліцензії",
"licenced_under": "Ліцензовано під",
"more_information_eupl": "Більше інформації щодо EUPL",
"open_source": "Відкрите ПЗ",
"other_licence": "Інша ліцензія",
"page_title": "Щодо AlekSIS®",
"proprietary": "Пропрієтарне",
"show_copyright": "Показати авторські права",
"source_code": "Програмний код",
"website_of_aleksis": "Веб-сайт AlekSIS"
},
......@@ -51,6 +58,7 @@
"backend_admin": {
"menu_title": "Адміністрування бекенду"
},
"menu_title": "Адміністрація",
"system_status": {
"menu_title": "Стан системи"
}
......@@ -72,6 +80,12 @@
"privacy_policy": "Політика приватності",
"user_not_linked_to_person": "Ваш обліковий запис не пов'язаний з фізособою. Це означає, що Ви не маєте жодного доступу до навчальної інформації. Зверніться, будь ласка, до адміністраторів AlekSIS у Вашому навчальному закладі."
},
"celery_progress": {
"error_message": "Завершити цю операцію успішно не вдалося.",
"progress_title": "Завантаження ...",
"running_tasks": "Виконується 1 завдання | Виконуються {number} завдань",
"success_message": "Операція успішно завершена."
},
"dashboard": {
"dashboard_widget": {
"menu_title": "Віджети інформпанелі",
......@@ -84,7 +98,12 @@
"menu_title": "Перевірки даних"
},
"download_pdf": {
"download": "Звантажити"
"download": "Звантажити",
"notice": "Якщо отримання не почалося автоматично, натисніть, будь ласка, кнопку, що нижче.",
"title": "Отримання файлу PDF ..."
},
"graphql": {
"snackbar_error_message": "Під час отримання даних сторінки виникла помилка. Спробуйте, будь ласка, ще раз."
},
"group": {
"additional_field": {
......@@ -99,14 +118,27 @@
},
"groups_and_child_groups": "Групи та підлеглі групи",
"menu_title": "Групи",
"ownership": "Власність групи",
"title": "Група",
"title_plural": "Групи"
},
"ical_feed": {
"menu_title": "Канали календарів"
},
"legacy": {
"unworthy": "Форма життя, яка створила цю сторінку, не підкорилася всемогутньому Алексолотлю."
},
"network_errors": {
"back_to_start": "Повернутися додому",
"error_404": "404",
"offline_notification": "Ви в автономному режимі. Деякі функції можуть не працювати та деякі дані можуть не оновлюватися.",
"page_not_found": "Сторінка, яку Ви запитували, або ресурс із нею не знайдено.",
"snackbar_error_message": "Сталася мережева помилка. Спробуйте ще раз, будь ласка."
},
"notifications": {
"mark_as_read": "Позначити прочитаним",
"more_information": "Більше інформаціЇ",
"no_notifications": "У Вас немає нових сповіщень.",
"notifications": "Сповіщення"
},
"oauth": {
......@@ -127,6 +159,7 @@
},
"person": {
"account_menu_title": "Обліковий запис",
"additional_image": "Додаткове зображення",
"avatar": "Аватар",
"children": "Діти",
"delete": "Видалити",
......@@ -135,11 +168,15 @@
"home": "Домашній телефон",
"impersonation": {
"impersonate": "Маскування",
"impersonating": "Маскуючись як",
"stop": "Зупинити маскування"
},
"invite": "Запрошення",
"logged_in_as": "Вхід виконано як",
"menu_title": "Особи",
"mobile": "Мобільний телефон",
"no_additional_image": "Ця особа не завантажила додаткове зображення",
"no_persons": "Без осіб",
"page_title": "Особа",
"title": "Особа",
"title_plural": "Особи"
......@@ -159,6 +196,8 @@
"title_plural": "Навчальний рік"
},
"service_worker": {
"dismiss": "Відмовитися",
"new_version_available": "Доступна нова версія програми",
"update": "Оновити"
}
}
......@@ -1072,6 +1072,9 @@ routes.push({
props: {
shortErrorMessageKey: "network_errors.error_404",
longErrorMessageKey: "network_errors.page_not_found",
redirectButtonTextKey: "network_errors.back_to_start",
redirectRouteName: "dashboard",
redirectButtonIcon: "mdi-home-outline",
},
});
......
......@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-01-22 20:49+0100\n"
"PO-Revision-Date: 2022-07-03 06:14+0000\n"
"PO-Revision-Date: 2023-01-25 05:57+0000\n"
"Last-Translator: Serhii Horichenko <m@sgg.im>\n"
"Language-Team: Ukrainian <https://translate.edugit.org/projects/aleksis/aleksis-core/uk/>\n"
"Language: uk\n"
......@@ -236,10 +236,8 @@ msgid "You must select at least one group or person which should get the permiss
msgstr "Ви повинні обрати принаймні одну групу або особу, хто буде мати дозвіл."
#: aleksis/core/forms.py:499
#, fuzzy
#| msgid "You must grant the permission to all objects and/or to some objects."
msgid "You must grant the permission to all objects or to specific objects."
msgstr "Ви повинні надати дозвіл до всіх та/або до деяких об'єктів."
msgstr "Ви повинні надати дозвіл до всіх або до конкретних об'єктів."
#: aleksis/core/forms.py:586
msgid "Address data"
......@@ -566,7 +564,7 @@ msgstr "Посилання"
#: aleksis/core/models.py:1392
#: aleksis/core/templates/oauth2_provider/application/detail.html:26
msgid "Icon"
msgstr "Іконка"
msgstr "Піктограма"
#: aleksis/core/models.py:755
msgid "Send notification at"
......@@ -680,7 +678,7 @@ msgstr "URL"
#: aleksis/core/models.py:998
msgid "Icon URL"
msgstr "Іконка URL"
msgstr "Піктограма URL"
#: aleksis/core/models.py:1004
msgid "External link widget"
......@@ -861,78 +859,60 @@ msgid "Task user"
msgstr "Користувач завдання"
#: aleksis/core/models.py:1263
#, fuzzy
#| msgid "Back"
msgid "Back URL"
msgstr "Назад"
msgstr "URL для повернення"
#: aleksis/core/models.py:1264
#, fuzzy
#| msgid "Progress: Generate PDF file"
msgid "Progress title"
msgstr "Перебіг: Генерація файлу PDF"
msgstr "Назва перебігу"
#: aleksis/core/models.py:1265
msgid "Error message"
msgstr ""
msgstr "Повідомлення про помилку"
#: aleksis/core/models.py:1266
#, fuzzy
#| msgid "Success!"
msgid "Success message"
msgstr "Успіх!"
msgstr "Повідомлення про успіх"
#: aleksis/core/models.py:1267
#, fuzzy
#| msgid "Redirect URIs"
msgid "Redirect on success URL"
msgstr "Перенаправлення URI-адрес"
msgstr "Посилання для перенаправлення в разі успіху"
#: aleksis/core/models.py:1269
#, fuzzy
#| msgid "Additional attributes"
msgid "Additional button title"
msgstr "Додаткові атрибути"
msgstr "Назва додаткової кнопки"
#: aleksis/core/models.py:1271
#, fuzzy
#| msgid "Additional data"
msgid "Additional button URL"
msgstr "Додаткові дані"
msgstr "Посилання додаткової кнопки"
#: aleksis/core/models.py:1273
#, fuzzy
#| msgid "Additional attributes"
msgid "Additional button icon"
msgstr "Додаткові атрибути"
msgstr "Піктограма додаткової кнопки"
#: aleksis/core/models.py:1275
msgid "Result fetched"
msgstr ""
msgstr "Отриманий результат"
#: aleksis/core/models.py:1300
#, fuzzy
#| msgid "ICal feed deleted successfully"
msgid "Background task completed successfully"
msgstr "Стрічка iCal успішно видалена"
msgstr "Фонове завдання успішно завершене"
#: aleksis/core/models.py:1301
#, fuzzy
#| msgid "The PDF file has been generated successfully."
msgid "The background task '{}' has been completed successfully."
msgstr "Файл PDF успішно створений."
msgstr "Фонове завдання '{}' було успішно завершене."
#: aleksis/core/models.py:1307
msgid "Background task failed"
msgstr ""
msgstr "Збій фонового завдання"
#: aleksis/core/models.py:1308
msgid "The background task '{}' has failed."
msgstr ""
msgstr "У фонового завдання '{}' стався збій."
#: aleksis/core/models.py:1317
msgid "Background task"
msgstr ""
msgstr "Фонове завдання"
#: aleksis/core/models.py:1331
msgid "Task user assignment"
......@@ -955,18 +935,16 @@ msgid "This image will be shown as icon in the authorization flow. It should be
msgstr "Це зображення буде іконкою під час авторизації. Воно повинне бути квадратним."
#: aleksis/core/models.py:1441
#, fuzzy
#| msgid "Can view avatar image"
msgid "Can view room timetable"
msgstr "Може бачити аватар"
msgstr "Може переглядати розклад кімнати"
#: aleksis/core/models.py:1443
msgid "Room"
msgstr ""
msgstr "Кімната"
#: aleksis/core/models.py:1444
msgid "Rooms"
msgstr ""
msgstr "Кімнати"
#: aleksis/core/preferences.py:25
msgid "General"
......@@ -1026,11 +1004,11 @@ msgstr "Favicon"
#: aleksis/core/preferences.py:111
msgid "PWA-Icon"
msgstr "Іконка PWA"
msgstr "Піктограма PWA"
#: aleksis/core/preferences.py:121
msgid "PWA-Icon is maskable"
msgstr "Іконка PWA може бути з маскою"
msgstr "Піктограма PWA може бути з маскою"
#: aleksis/core/preferences.py:133
msgid "Mail out name"
......@@ -1057,14 +1035,12 @@ msgid "Channels to use for notifications"
msgstr "Канали для сповіщень"
#: aleksis/core/preferences.py:208
#, fuzzy
#| msgid "Selected persons"
msgid "Select Design"
msgstr "Позначені особи"
msgstr "Оберіть дизайн"
#: aleksis/core/preferences.py:211
msgid "Light mode"
msgstr ""
msgstr "Світлий режим"
#: aleksis/core/preferences.py:224
msgid "Regular expression to match primary group, e.g. '^Class .*'"
......@@ -2104,7 +2080,7 @@ msgstr "Аватар"
#: aleksis/core/templates/core/partials/avatar_content.html:18
#: aleksis/core/templates/core/partials/avatar_content.html:19
msgid "Identicon"
msgstr "Ідентифікатор (іконка)"
msgstr "Ідентифікатор (піктограма)"
#: aleksis/core/templates/core/partials/crud_events.html:15
msgid "Changed by"
......@@ -2120,6 +2096,9 @@ msgid ""
" This webbrowser doesn't support JavaScript, or its execution is blocked. Please use another browser to continue.\n"
" "
msgstr ""
"\n"
" Цей веб-браузер не підтримує JavaScript або його обробка заблокована. Для продовження скористайтеся, будь ласка, іншим браузером.\n"
" "
#: aleksis/core/templates/core/perms/assign.html:12
#: aleksis/core/templates/core/perms/assign.html:13
......@@ -2399,16 +2378,9 @@ msgstr "Помилка мережі"
#: aleksis/core/templates/offline.html:10
msgid "Page not available offline."
msgstr ""
msgstr "Сторінка в автономному режимі не доступна."
#: aleksis/core/templates/offline.html:14
#, fuzzy
#| msgid ""
#| "\n"
#| " There was an error accessing this page. You probably don't have an internet connection. Check to see if your WiFi\n"
#| " or mobile data is turned on and try again. If you think you are connected, please contact the system\n"
#| " administrators:\n"
#| " "
msgid ""
"\n"
" This page is not available offline. Since you probably don't have an internet connection, check to see if your WiFi\n"
......@@ -2417,7 +2389,7 @@ msgid ""
" "
msgstr ""
"\n"
" Під час доступу до цієї сторінки виникла помилка. Можливо, у Вас проблема з інтернетом. Переконайтеся, що Ваш WiFi\n"
" Ця сторінка в автономному режимі не доступна. Можливо, у Вас проблема з інтернетом. Переконайтеся, що Ваш WiFi\n"
" або мобільний інтернет увімкнені та спробуйте ще раз. Якщо Ви думаєте, що із з'єднанням все добре, зверніться\n"
" до системних адміністраторів:\n"
" "
......
......@@ -76,13 +76,6 @@
<script type="text/javascript" src="{% static 'js/main.js' %}"></script>
<script>
$(document).ready(function () {
window.parent.postMessage({height: $(document).height()});
function documentResizePostMessage() {
window.parent.postMessage({height: $(document).height()});
};
window.onresize = documentResizePostMessage;
function findLink(el) {
if (el.href) {
return el.href;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment