summaryrefslogtreecommitdiffstats
path: root/.github
Commit message (Collapse)AuthorAgeFilesLines
* Comment help text for issues (#2281)Patrick G2017-08-091-7/+9
|
* Add link to forum in issue template (#2070)Jonas Östanbäck2017-06-281-2/+2
|
* Update links to Discord serverJonas Östanbäck2017-06-111-1/+1
|
* Add MSSQL to issues template (#1171)esell2017-03-101-0/+1
|
* Fix grammar (#1158)Patrick G2017-03-091-5/+5
|
* Add Screenshot-secion to IssueTemplate.md (#939)Kim "BKC" Carlbäcker2017-02-171-0/+5
| | | For `UI`-bugs we usually require a Screenshot to debug it :wink:
* Replace pull request with issue at issue_template (#547)Bwko2016-12-311-1/+1
|
* Update example install url from try.gogs.io to try.gitea.io (#385)Sandro Santilli2016-12-151-0/+4
| | | | | | | | * Update example install url from try.gogs.io to try.gitea.io * Ask if issue can be reproduced on try.gitea.io * Link try.gitea.io to the README
* Unified GitHub templates accross all projectsThomas Boerger2016-11-284-34/+26
|
* Review issue and pull templates, drop unused contributing fileSandro Santilli2016-11-053-82/+19
| | | | The CONTRIBUTING.md from root dir will be used by github
* Change import reference to match gitea instead of gogs (#37)Rémy Boulanouar2016-11-032-4/+4
|
* Replace gogs.io http links with https version (#3386)rugk2016-08-051-1/+1
|
* #3348 always use relative avatar link in the templateUnknwon2016-08-051-3/+4
|
* Minor fix for pull request template [CI SKIP]Unknwon2016-07-281-1/+1
|
* Update GitHub templatesUnknwon2016-07-282-10/+17
|
* Update localesUnknwon2016-03-231-1/+1
|
* ISSUE_TEMPLATE: suggestion to test at try.gogs.ioLubomir I. Ivanov2016-03-021-0/+4
| | | | | | | | | | | | | I've noticed that a lot of issues cannot be reproduced on http://try.gogs.io, which either hints about specific database type problems or hints about bugs which are already solved in the newer version (as http://try.gogs.io is usually a newer build). This patch adds the suggestion to test the issue at http://try.gogs.io in the Github "issue template". The user can answer: "Yes", "No", "Not relevant". "Not relevant" is an option where testing on http://try.gogs.io makes no sense as the bug is unrelated to the Web UI or is very specific in nature.
* Prepare to releaseUnknwon2016-02-241-0/+2
|
* Removed duplicate of paragraphBart2016-02-211-4/+0
|
* Add issue and pull request templateUnknwon2016-02-173-0/+87
/stable27 Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/core/src/components/LegacyDialogPrompt.vue
blob: f2ee4be91516394d7b05eecc7cc2e24b6a1e3a38 (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
<!--
 - SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
 - SPDX-License-Identifier: AGPL-3.0-or-later
-->
<template>
	<NcDialog dialog-classes="legacy-prompt__dialog"
		:buttons="buttons"
		:name="name"
		@update:open="$emit('close', false, inputValue)">
		<p class="legacy-prompt__text" v-text="text" />
		<NcPasswordField v-if="isPassword"
			ref="input"
			autocomplete="new-password"
			class="legacy-prompt__input"
			:label="name"
			:name="inputName"
			:value.sync="inputValue" />
		<NcTextField v-else
			ref="input"
			class="legacy-prompt__input"
			:label="name"
			:name="inputName"
			:value.sync="inputValue" />
	</NcDialog>
</template>

<script lang="ts">
import { translate as t } from '@nextcloud/l10n'
import { defineComponent } from 'vue'

import NcDialog from '@nextcloud/vue/components/NcDialog'
import NcTextField from '@nextcloud/vue/components/NcTextField'
import NcPasswordField from '@nextcloud/vue/components/NcPasswordField'

export default defineComponent({
	name: 'LegacyDialogPrompt',

	components: {
		NcDialog,
		NcTextField,
		NcPasswordField,
	},

	props: {
		name: {
			type: String,
			required: true,
		},

		text: {
			type: String,
			required: true,
		},

		isPassword: {
			type: Boolean,
			required: true,
		},

		inputName: {
			type: String,
			default: 'prompt-input',
		},
	},

	emits: ['close'],

	data() {
		return {
			inputValue: '',
		}
	},

	computed: {
		buttons() {
			return [
				{
					label: t('core', 'No'),
					callback: () => this.$emit('close', false, this.inputValue),
				},
				{
					label: t('core', 'Yes'),
					type: 'primary',
					callback: () => this.$emit('close', true, this.inputValue),
				},
			]
		},
	},

	mounted() {
		this.$nextTick(() => this.$refs.input?.focus?.())
	},
})
</script>

<style scoped lang="scss">
.legacy-prompt {
	&__text {
		margin-block: 0 .75em;
	}

	&__input {
		margin-block: 0 1em;
	}
}

:deep(.legacy-prompt__dialog .dialog__actions) {
	min-width: calc(100% - 12px);
	justify-content: space-between;
}
</style>