summaryrefslogtreecommitdiffstats
path: root/src/components/AddFeed.vue
blob: 4718cb84605bb79917c6f4a14cec4dfd54c60ddb (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<template>
	<NcModal @close="$emit('close')" :title="t('news', 'Add new feed')">
		<div class="add-feed">
			<h2>{{ t('news', 'Add new feed') }}</h2>
			<form ng-submit="Navigation.createFeed(Navigation.feed)" name="feedform">
				<NcTextField type="text"
					:value.sync="feedUrl"
					:label="t('news', 'Web address')"
					placeholder="https://..."
					:labelVisible="true"
					pattern="[^\s]+"
					required
					autofocus
					:error="feedAlreadyExists" />

				<!-- select a folder -->
				<NcCheckboxRadioSwitch :checked.sync="createNewFolder" type="switch">
					{{ t("news", "New folder") }}?
				</NcCheckboxRadioSwitch>

				<div v-if="!createNewFolder">
					<label for="name">{{ t('news', 'Folder name') }}</label>
					<NcMultiselect v-model="folder"
						:options="folders"
						track-by="id"
						label="name" />
				</div>

				<!-- add a folder -->
				<NcTextField v-if="createNewFolder"
					:label="t('news', 'Folder name')"
					:labelVisible="true"
					:value.sync="folderName"
					required />

				<!-- basic auth -->
				<NcCheckboxRadioSwitch :checked.sync="withBasicAuth" type="switch">
					{{ t("news", "Credentials") }}?
				</NcCheckboxRadioSwitch>

				<fieldset v-if="withBasicAuth" class="add-feed-basicauth">
					<p class="warning">
						{{
							t(
								"news",
								"HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!"
							)
						}}>
					</p>
					<NcTextField type="text"
						:label="t('news', 'Username')"
						:labelVisible="true"
						:value="username"
						name="user"
						autofocus />

					<NcTextField type="password"
						:label="t('news', 'Password')"
						:labelVisible="true"
						:value="password"
						name="password"
						autocomplete="new-password" />
				</fieldset>

				<NcCheckboxRadioSwitch :checked.sync="autoDiscover" type="switch">
					{{ t("news", "Auto discover Feed") }}?
				</NcCheckboxRadioSwitch>

				<NcButton :wide="true"
					type="primary"
					ng-disabled="
					Navigation.feedUrlExists(Navigation.feed.url) ||
							(
								Navigation.showNewFolder &&
								Navigation.folderNameExists(folder.name)
							)"
					@click="addFeed()">
					{{ t("news", "Subscribe") }}
				</NcButton>
			</form>
		</div>
	</NcModal>
</template>

<script>
/* eslint-disable vue/require-prop-type-constructor */

import NcModal from '@nextcloud/vue/dist/Components/NcModal.js'
import NcCheckboxRadioSwitch from '@nextcloud/vue/dist/Components/NcCheckboxRadioSwitch.js'
import NcButton from '@nextcloud/vue/dist/Components/NcButton.js'
import NcMultiselect from '@nextcloud/vue/dist/Components/NcMultiselect.js'
import NcTextField from '@nextcloud/vue/dist/Components/NcTextField.js'

export default {
	name: 'AddFeed',
	components: {
		NcModal,
		NcCheckboxRadioSwitch,
		NcButton,
		NcMultiselect,
		NcTextField,
	},
	props: {
		feed: '',
	},
	emits: ['close'],
	data() {
		return {
			feedUrl: '',
			folderName: '',
			password: '',
			username: '',
			folder: {},
			autoDiscover: true,
			createNewFolder: false,
			withBasicAuth: false,
			feedAlreadyExists: false,
		}
	},
	computed: {
		folders() {
			return this.$store.state.folders
		},
	},
	methods: {
		newFolder() {
			this.createNewFolder = true
		},
		abortNewFolder() {
			this.createNewFolder = false
		},
		addFeed() {
			this.$store.dispatch('addFeed', {
				feedReq: {
					url: this.feed,
					folder: this.folder,
					autoDiscover: true,
				},
			})
		},
	},
}
</script>

<style scoped lang="scss">
.add-feed {
	padding: 1rem;
	form {
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}
}
input {
    width: 100%
}

.multiselect {
    width: 100%
}
</style>