-
Notifications
You must be signed in to change notification settings - Fork 142
Expand file tree
/
Copy pathSaveAs.vue
More file actions
137 lines (130 loc) Β· 2.98 KB
/
SaveAs.vue
File metadata and controls
137 lines (130 loc) Β· 2.98 KB
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
<!--
- SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<template>
<NcModal :name="t('richdocuments', 'Save as')" @close="cancel">
<div class="saveas-dialog">
<h1>{{ name }}</h1>
<p>{{ description }}</p>
<NcTextField ref="nameInput"
v-model="newFileName"
:label-visible="true"
:label="t('richdocuments', 'Path to save')"
:placeholder="'/path/to/save'" />
<div class="saveas-dialog--buttons">
<NcButton type="secondary"
@click="cancel">
{{ t('richdocuments', 'Cancel') }}
</NcButton>
<NcButton type="primary"
@click="close">
{{ t('richdocuments', 'Save') }}
</NcButton>
</div>
</div>
</NcModal>
</template>
<script>
import { translate as t } from '@nextcloud/l10n'
import NcButton from '@nextcloud/vue/dist/Components/NcButton.js'
import NcModal from '@nextcloud/vue/dist/Components/NcModal.js'
import NcTextField from '@nextcloud/vue/dist/Components/NcTextField.js'
export default {
name: 'SaveAs',
components: {
NcModal,
NcButton,
NcTextField,
},
props: {
name: {
type: String,
default: t('richdocuments', 'Save As'),
},
description: {
type: String,
default: '',
},
buttonText: {
type: String,
default: t('richdocuments', 'Save'),
},
path: {
type: String,
default: '',
},
format: {
type: String,
default: '',
},
},
emits: ['close'],
data() {
return {
selectedPath: '',
}
},
computed: {
newFileName: {
get() {
if (this.selectedPath !== '') {
return this.selectedPath
}
const filename = this.path
const extension = filename.split('.').pop()
const filenameWithoutExtension = filename.substring(0, filename.length - extension.length - 1)
return filenameWithoutExtension + '.' + (this.format !== '' ? this.format : extension)
},
set(value) {
this.selectedPath = value
},
},
},
mounted() {
// prepare filename for having a separate picker for the path (.split('/').pop())
const filename = this.path
const extension = filename.split('.').pop()
const filenameWithoutExtension = filename.substring(0, filename.length - extension.length - 1)
this.$nextTick(() => {
const input = this.$refs.nameInput.$refs.inputField.$el.querySelector('input')
input.setSelectionRange(0, filenameWithoutExtension.length)
input.focus()
})
},
methods: {
t,
close() {
this.$emit('close', this.newFileName)
},
cancel() {
emit('richdocuments:grab-focus')
this.$emit('close', null)
},
},
}
</script>
<style lang="scss" scoped>
.saveas-dialog {
display: flex;
flex-direction: column;
align-items: flex-start;
margin: 24px;
h1 {
font-size: 120%;
font-weight: bold;
margin-bottom: 12px;
}
p {
margin-bottom: 12px;
}
&--buttons {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
width: 100%;
margin-top: 24px;
}
}
</style>