Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2019-04-25 15:48:42 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2019-05-07 18:27:17 +0300
commit5f5c81057fe9471d4cfc4b7d2b98669146f43be3 (patch)
treeab8c556e6e464d8596adb5988f7ba5a3007a8270 /src
parent42aced72b33f18c962fd6f18797183ecab232045 (diff)
Migrate to nextcloud-vue actions
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'src')
-rw-r--r--src/components/Envelope.vue44
1 files changed, 19 insertions, 25 deletions
diff --git a/src/components/Envelope.vue b/src/components/Envelope.vue
index 50f076aca..bee5cc560 100644
--- a/src/components/Envelope.vue
+++ b/src/components/Envelope.vue
@@ -8,8 +8,8 @@
<div
class="app-content-list-item-star icon-starred"
:data-starred="data.flags.flagged ? 'true' : 'false'"
- @click.prevent="toggleFlagged"
- />
+ @click.prevent="onToggleFlagged"
+ ></div>
<div class="app-content-list-item-icon">
<Avatar :display-name="sender" :email="senderEmail" />
</div>
@@ -27,12 +27,17 @@
<div class="app-content-list-item-details date">
<Moment :timestamp="data.dateInt" />
</div>
- <Action class="app-content-list-item-menu" :actions="actions" />
+ <Actions class="app-content-list-item-menu" menu-align="right">
+ <ActionButton icon="icon-mail" @click="onToggleSeen">{{
+ data.flags.unseen ? t('mail', 'Mark read') : t('mail', 'Mark unread')
+ }}</ActionButton>
+ <ActionButton icon="icon-delete" @click="onDelete">{{ t('mail', 'Delete') }}</ActionButton>
+ </Actions>
</router-link>
</template>
<script>
-import {Action} from 'nextcloud-vue'
+import {Actions, ActionButton} from 'nextcloud-vue'
import Moment from './Moment'
import Avatar from './Avatar'
@@ -41,7 +46,8 @@ import {calculateAccountColor} from '../util/AccountColor'
export default {
name: 'Envelope',
components: {
- Action,
+ Actions,
+ ActionButton,
Avatar,
Moment,
},
@@ -105,30 +111,18 @@ export default {
return undefined
}
},
- actions() {
- return [
- {
- icon: 'icon-mail',
- text: this.data.flags.unseen ? t('mail', 'Mark read') : t('mail', 'Mark unread'),
- action: () => {
- this.$store.dispatch('toggleEnvelopeSeen', this.data)
- },
- },
- {
- icon: 'icon-delete',
- text: t('mail', 'Delete'),
- action: () => {
- this.$emit('delete', this.data)
- this.$store.dispatch('deleteMessage', this.data)
- },
- },
- ]
- },
},
methods: {
- toggleFlagged(e) {
+ onToggleFlagged() {
this.$store.dispatch('toggleEnvelopeFlagged', this.data)
},
+ onToggleSeen() {
+ this.$store.dispatch('toggleEnvelopeSeen', this.data)
+ },
+ onDelete() {
+ this.$emit('delete', this.data)
+ this.$store.dispatch('deleteMessage', this.data)
+ },
},
}
</script>