Sharkey/src/client/app/desktop/views/components/user-lists-window.vue

66 lines
1.3 KiB
Vue
Raw Normal View History

2018-04-25 00:34:50 +03:00
<template>
<mk-window ref="window" is-modal width="450px" height="500px" @closed="destroyDom">
<span slot="header"><fa icon="list"/> {{ $t('title') }}</span>
2018-04-25 00:34:50 +03:00
2018-09-28 08:26:20 +03:00
<div class="xkxvokkjlptzyewouewmceqcxhpgzprp">
<button class="ui" @click="add">{{ $t('create-list') }}</button>
2018-04-26 05:19:57 +03:00
<a v-for="list in lists" :key="list.id" @click="choice(list)">{{ list.title }}</a>
</div>
2018-04-25 00:34:50 +03:00
</mk-window>
</template>
<script lang="ts">
import Vue from 'vue';
import i18n from '../../../i18n';
2018-04-25 00:34:50 +03:00
export default Vue.extend({
i18n: i18n('desktop/views/components/user-lists-window.vue'),
2018-04-25 00:34:50 +03:00
data() {
return {
fetching: true,
lists: []
};
},
mounted() {
2018-11-09 01:13:34 +02:00
this.$root.api('users/lists/list').then(lists => {
2018-04-25 00:34:50 +03:00
this.fetching = false;
this.lists = lists;
});
},
methods: {
2018-04-25 06:36:54 +03:00
add() {
this.$input({
title: this.$t('list-name'),
2018-04-25 06:36:54 +03:00
}).then(async title => {
2018-11-09 01:13:34 +02:00
const list = await this.$root.api('users/lists/create', {
2018-04-25 06:36:54 +03:00
title
});
2018-04-25 17:08:40 +03:00
this.$emit('choosen', list);
2018-04-25 06:36:54 +03:00
});
},
2018-04-25 17:08:40 +03:00
choice(list) {
this.$emit('choosen', list);
},
2018-04-25 00:34:50 +03:00
close() {
(this as any).$refs.window.close();
}
}
});
</script>
<style lang="stylus" scoped>
2018-09-28 09:34:34 +03:00
.xkxvokkjlptzyewouewmceqcxhpgzprp
2018-04-26 05:19:57 +03:00
padding 16px
> button
margin-bottom 16px
> a
display block
padding 16px
2018-09-28 09:34:34 +03:00
border solid 1px var(--faceDivider)
2018-04-26 05:19:57 +03:00
border-radius 4px
2018-04-25 00:34:50 +03:00
</style>