| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- <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, onBeforeUnmount, onMounted, 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: EventSource | null = null
- const sseOpened = () => {
- return eventSource !== null && eventSource.readyState === EventSource.OPEN
- }
- const submit = async () => {
- const response = await DataPersister.request(
- '/api/export/cmf-licence/organization',
- HTTP_METHOD.POST,
- { type: QUERY_TYPE.DEFAULT, data: { format: 'pdf', async: sseOpened() }, withCredentials: true } as DataPersisterArgs
- )
- if (sseOpened()) {
- pending.value = true
- } else {
- console.warn('File downloaded synchronously')
- fileUrl.value = JSON.parse(response).url
- }
- }
- const unsubscribe = async () => {
- if (eventSource === null || eventSource.readyState === EventSource.CLOSED) {
- return
- }
- console.log('SSE - Close subscription')
- eventSource.close()
- }
- const subscribe = async () => {
- if (sseOpened()) {
- console.error('SSE - Already subscribed to the event source')
- return
- }
- if (process.server) {
- console.error('SSE - Cannot subscribe on server side')
- return
- }
- const url = new URL($config.baseUrl_mercure)
- url.searchParams.append('topic', "access/" + store.state.profile.access.id)
- eventSource = new EventSourcePolyfill(
- url.toString(),
- { withCredentials: true }
- );
- eventSource.onerror = (event) => {
- console.error('SSE - An error happened : ' + JSON.stringify(event))
- eventSource?.close()
- }
- eventSource.onopen = () => {
- console.log('SSE - Listening for events...')
- }
- eventSource.onmessage = event => {
- const data = JSON.parse(event.data)
- fileUrl.value = data.url
- pending.value = false
- }
- }
- // onMounted(() => {
- // subscribe()
- // })
- //
- // onBeforeUnmount(() => {
- // unsubscribe()
- // })
- //
- // if (process.browser) {
- // window.addEventListener('beforeunload', unsubscribe)
- // }
- return {
- submit,
- pending,
- fileUrl
- }
- }
- })
- </script>
|