aboutsummaryrefslogtreecommitdiffstats
path: root/apps/settings/src/main-declarative-settings-forms.ts
blob: 7cd4cb6834533df24d084add4ee17b1b6bcc6068 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/**
 * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */
import type { ComponentInstance } from 'vue'

import { loadState } from '@nextcloud/initial-state'
import { translate as t, translatePlural as n } from '@nextcloud/l10n'
import Vue from 'vue'
import DeclarativeSection from './components/DeclarativeSettings/DeclarativeSection.vue'

interface DeclarativeFormField {
	id: string,
	title: string,
	description: string,
	type: string,
	placeholder: string,
	label: string,
	options: Array<unknown>|null,
	value: unknown,
	default: unknown,
}

interface DeclarativeForm {
	id: number,
	priority: number,
	section_type: string,
	section_id: string,
	storage_type: string,
	title: string,
	description: string,
	doc_url: string,
	app: string,
	fields: Array<DeclarativeFormField>,
}

const forms = loadState('settings', 'declarative-settings-forms', []) as Array<DeclarativeForm>
console.debug('Loaded declarative forms:', forms)

/**
 *
 * @param forms
 */
function renderDeclarativeSettingsSections(forms: Array<DeclarativeForm>): ComponentInstance[] {
	Vue.mixin({ methods: { t, n } })
	const DeclarativeSettingsSection = Vue.extend(DeclarativeSection as never)

	return forms.map((form) => {
		const el = `#${form.app}_${form.id}`
		return new DeclarativeSettingsSection({
			el,
			propsData: {
				form,
			},
		})
	})
}

document.addEventListener('DOMContentLoaded', () => {
	renderDeclarativeSettingsSections(forms)
})