| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- <template>
- <div class="d-flex flex-column align-center">
- <h2 class="ma-4">{{ $t('cmf_structure_licence')}}</h2>
- <a
- href="https://www.cmf-musique.org/services/tarifs-preferentiels/"
- target="_blank"
- >
- {{ $t('cmf_licence_details_url')}}
- </a>
- <v-form
- ref="form"
- lazy-validation
- >
- <div class="ma-12">
- <v-btn
- v-if="!pending && fileUrl === null"
- @click="submit"
- >
- {{ $t('generate') }}
- </v-btn>
- <v-btn
- v-else
- color="primary"
- :loading="pending"
- :disabled="pending"
- :href="fileUrl">
- {{ $t('download') }}
- </v-btn>
- </div>
- </v-form>
- </div>
- </template>
- <script lang="ts">
- import {defineComponent, onMounted, onUnmounted, Ref, ref, useContext} from "@nuxtjs/composition-api";
- import {HTTP_METHOD, QUERY_TYPE} from "~/types/enums";
- import DataPersister from "~/services/data/dataPersister";
- import {DataPersisterArgs} from "~/types/interfaces";
- import { EventSourcePolyfill } from "event-source-polyfill";
- export default defineComponent({
- name: 'OrganizationCmfLicence',
- setup() {
- const { $config, store } = useContext()
- let pending: Ref<boolean> = ref(false)
- let fileUrl: Ref<string | null> = ref(null)
- let eventSource: Ref<EventSource | null> = ref(null)
- let async: boolean = true
- const submit = async () => {
- const response = await DataPersister.request(
- '/api/export/cmf-licence/organization',
- HTTP_METHOD.POST,
- { type: QUERY_TYPE.DEFAULT, data: { format: 'pdf', async: async }, withCredentials: true } as DataPersisterArgs
- )
- if (async) {
- pending.value = true
- } else {
- console.warn('File is downloaded synchronously')
- fileUrl.value = JSON.parse(response).url
- }
- }
- const unsubscribe = async () => {
- if (eventSource.value !== null) {
- eventSource.value.onerror = null
- eventSource.value.close()
- eventSource.value = null
- }
- }
- const subscribe = async () => {
- await unsubscribe()
- const url = new URL($config.baseUrl_mercure)
- url.searchParams.append('topic', "access/" + store.state.profile.access.id)
- eventSource.value = new EventSourcePolyfill(url.toString(), { withCredentials: true });
- eventSource.value.onerror = event => {
- async = false
- console.error('Error while subscribing to the EventSource, fallback to sync mode : ' + JSON.stringify(event))
- unsubscribe()
- }
- eventSource.value.onopen = event => {
- console.log('Listening for events...')
- }
- eventSource.value.onmessage = event => {
- const data = JSON.parse(event.data)
- fileUrl.value = data.url
- pending.value = false
- }
- }
- onMounted(() => {
- subscribe()
- })
- onUnmounted(() => {
- unsubscribe()
- })
- return {
- eventSource,
- submit,
- subscribe,
- pending,
- fileUrl
- }
- }
- })
- </script>
|