0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-05-17 03:32:35 +00:00
nextcloud_server/apps/files_reminders/src/services/customPicker.ts
Andy Scherzinger 8d8891c5bc
chore: Add SPDX header
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
2024-05-30 15:49:33 +02:00

29 lines
809 B
TypeScript

/**
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
import type { Node } from '@nextcloud/files'
import Vue from 'vue'
import SetCustomReminderModal from '../components/SetCustomReminderModal.vue'
const View = Vue.extend(SetCustomReminderModal)
const mount = document.createElement('div')
mount.id = 'set-custom-reminder-modal'
document.body.appendChild(mount)
// Create a new Vue instance and mount it to our modal container
const CustomReminderModal = new View({
name: 'SetCustomReminderModal',
el: mount,
})
export const pickCustomDate = (node: Node): Promise<void> => {
CustomReminderModal.open(node)
// Wait for the modal to close
return new Promise((resolve) => {
CustomReminderModal.$once('close', resolve)
})
}