nopaque/app/templates/_base/scripts.html.j2

146 lines
5.6 KiB
Plaintext
Raw Normal View History

2022-07-18 15:10:21 +00:00
<script src="https://cdnjs.cloudflare.com/ajax/libs/fast-json-patch/3.1.1/fast-json-patch.min.js" integrity="sha512-5uDdefwnzyq4N+SkmMBmekZLZNmc6dLixvVxCdlHBfqpyz0N3bzLdrJ55OLm7QrZmgZuhLGgHLDtJwU6RZoFCA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
2021-12-09 11:50:14 +00:00
<script src="https://cdnjs.cloudflare.com/ajax/libs/list.js/2.3.1/list.min.js" integrity="sha512-93wYgwrIFL+b+P3RvYxi/WUFRXXUDSLCT2JQk9zhVGXuS2mHl2axj6d+R6pP+gcU5isMHRj1u0oYE/mWyt/RjA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
2023-07-13 10:40:37 +00:00
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/4.7.1/socket.io.min.js" integrity="sha512-+NaO7d6gQ1YPxvc/qHIqZEchjGm207SszoNeMgppoqD/67fEqmc1edS8zrbxPD+4RQI3gDgT/83ihpFW61TG/Q==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
2023-06-21 06:46:08 +00:00
<script src="https://cdnjs.cloudflare.com/ajax/libs/plotly.js/2.24.2/plotly.min.js" integrity="sha512-dAXqGCq94D0kgLSPnfvd/pZpCMoJQpGj2S2XQmFQ9Ay1+96kbjss02ISEh+TBNXMggGg/1qoMcOHcxg+Op/Jmw==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/pako/2.1.0/pako_inflate.min.js" integrity="sha512-mlnC6JeOvg9V4vBpWMxGKscsCdScB6yvGVCeFF2plnQMRmwH69s9F8SHPbC0oirqfePmRBhqx2s3Bx7WIvHfWg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
2023-06-13 13:41:34 +00:00
2023-10-04 10:32:27 +00:00
{%- assets
filters='rjsmin',
output='gen/app.%(version)s.js',
'js/index.js',
'js/app.js',
'js/utils.js'
2023-10-04 10:32:27 +00:00
%}
<script src="{{ ASSET_URL }}"></script>
{%- endassets %}
2023-03-08 10:42:53 +00:00
{%- assets
filters='rjsmin',
output='gen/Forms.%(version)s.js',
2023-10-05 14:08:04 +00:00
'js/forms/index.js',
2023-10-11 12:26:07 +00:00
'js/forms/base-form.js',
2023-10-05 14:08:04 +00:00
'js/forms/create-contribution-form.js',
'js/forms/create-corpus-file-form.js',
'js/forms/create-job-form.js'
2023-03-08 10:42:53 +00:00
%}
<script src="{{ ASSET_URL }}"></script>
{%- endassets %}
2023-10-04 10:32:27 +00:00
2023-03-08 10:42:53 +00:00
{%- assets
filters='rjsmin',
2023-10-05 12:11:17 +00:00
output='gen/resource-displays.%(version)s.js',
'js/resource-displays/index.js',
2023-10-11 12:26:07 +00:00
'js/resource-displays/resource-display.js',
2023-10-05 12:11:17 +00:00
'js/resource-displays/corpus-display.js',
'js/resource-displays/job-display.js'
2023-03-08 10:42:53 +00:00
%}
<script src="{{ ASSET_URL }}"></script>
{%- endassets %}
2023-10-04 10:32:27 +00:00
2023-03-08 10:42:53 +00:00
{%- assets
filters='rjsmin',
2023-10-11 14:20:17 +00:00
output='gen/resource-lists.%(version)s.js',
'js/resource-lists/index.js',
'js/resource-lists/resource-list.js',
'js/resource-lists/admin-user-list.js',
'js/resource-lists/corpus-file-list.js',
'js/resource-lists/corpus-follower-list.js',
'js/resource-lists/corpus-list.js',
'js/resource-lists/corpus-text-info-list.js',
'js/resource-lists/corpus-token-list.js',
'js/resource-lists/detailed-public-corpus-list.js',
'js/resource-lists/job-input-list.js',
'js/resource-lists/job-list.js',
'js/resource-lists/job-result-list.js',
'js/resource-lists/public-corpus-list.js',
2023-10-25 14:21:30 +00:00
'js/resource-lists/public-user-list.js',
2023-10-11 14:20:17 +00:00
'js/resource-lists/spacy-nlp-pipeline-model-list.js',
2023-10-25 14:21:30 +00:00
'js/resource-lists/tesseract-ocr-pipeline-model-list.js'
2023-03-08 10:42:53 +00:00
%}
<script src="{{ ASSET_URL }}"></script>
{%- endassets %}
2023-10-04 10:32:27 +00:00
2023-03-08 10:42:53 +00:00
{%- assets
filters='rjsmin',
2023-10-04 10:32:27 +00:00
output='gen/requests.%(version)s.js',
'js/requests/index.js',
'js/requests/admin.js',
'js/requests/contributions.js',
'js/requests/corpora.js',
'js/requests/jobs.js',
'js/requests/users.js'
2021-12-09 14:39:45 +00:00
%}
<script src="{{ ASSET_URL }}"></script>
2021-12-09 14:39:45 +00:00
{%- endassets %}
2023-10-04 10:32:27 +00:00
2023-09-25 10:42:10 +00:00
{%- assets
filters='rjsmin',
output='gen/corpus-analysis.%(version)s.js',
2023-11-13 11:59:36 +00:00
'js/corpus-analysis/index.js',
'js/corpus-analysis/cqi/index.js',
'js/corpus-analysis/cqi/constants.js',
'js/corpus-analysis/cqi/errors.js',
'js/corpus-analysis/cqi/status.js',
'js/corpus-analysis/cqi/api/index.js',
'js/corpus-analysis/cqi/api/client.js',
'js/corpus-analysis/cqi/models/index.js',
'js/corpus-analysis/cqi/models/resource.js',
'js/corpus-analysis/cqi/models/attributes.js',
'js/corpus-analysis/cqi/models/subcorpora.js',
'js/corpus-analysis/cqi/models/corpora.js',
'js/corpus-analysis/cqi/client.js',
'js/corpus-analysis/query-builder/index.js',
'js/corpus-analysis/query-builder/element-references.js',
'js/corpus-analysis/query-builder/query-builder.js',
2023-11-13 11:59:36 +00:00
'js/corpus-analysis/query-builder/structural-attribute-builder-functions.js',
'js/corpus-analysis/query-builder/token-attribute-builder-functions.js',
'js/corpus-analysis/app.js',
'js/corpus-analysis/concordance-extension.js',
'js/corpus-analysis/reader-extension.js',
'js/corpus-analysis/static-visualization-extension.js'
2023-09-25 10:42:10 +00:00
%}
<script src="{{ ASSET_URL }}"></script>
{%- endassets %}
2023-10-04 10:32:27 +00:00
<script>
2023-10-04 12:07:39 +00:00
// TODO: Implement an app.run method and use this for all of the following
2023-10-30 10:36:28 +00:00
const app = new nopaque.App();
app.init();
// Check if the current user is authenticated
2021-12-09 14:39:45 +00:00
{%- if current_user.is_authenticated %}
// TODO: Set this as a property of the app object
2021-12-09 14:39:45 +00:00
const currentUserId = {{ current_user.hashid|tojson }};
// Subscribe to the current user's data events
app.subscribeUser(currentUserId)
.catch((error) => {throw JSON.stringify(error);});
// Get the current user's data
app.getUser(currentUserId, true, true)
.catch((error) => {throw JSON.stringify(error);});
2022-04-12 14:11:24 +00:00
// Check if the current user hasn't accepted the terms of use yet
{%- if not current_user.terms_of_use_accepted %}
M.Modal.getInstance(document.querySelector('#terms-of-use-modal')).open();
{%- endif %}
{%- endif %}
2021-12-09 14:39:45 +00:00
// Display flashed messages
for (let [category, message] of {{ get_flashed_messages(with_categories=True)|tojson }}) {
app.flash(message, message);
2021-12-09 14:39:45 +00:00
}
</script>
2023-12-20 14:37:59 +00:00
<script>
2023-12-21 12:03:58 +00:00
let languageModalSwitch = document.querySelector('#terms-of-use-modal-switch');
let termsOfUseModalContent = document.querySelectorAll('.terms-of-use-modal-content');
if (languageModalSwitch) {
languageModalSwitch.addEventListener('change', function() {
termsOfUseModalContent.forEach(content => {
2023-12-21 11:48:50 +00:00
content.classList.toggle('hide');
});
2023-12-20 14:37:59 +00:00
});
2023-12-21 11:48:50 +00:00
}
2023-12-20 14:37:59 +00:00
</script>