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

50 lines
976 B
Vue
Raw Normal View History

2018-04-25 00:34:50 +03:00
<template>
<mk-window ref="window" is-modal width="500px" height="550px" @closed="$destroy">
2018-04-25 13:53:16 +03:00
<span slot="header">%fa:list% リスト</span>
2018-04-25 00:34:50 +03:00
2018-04-25 06:36:54 +03:00
<button class="ui" @click="add">リストを作成</button>
2018-04-25 17:08:40 +03:00
<a v-for="list in lists" :key="list.id" @click="choice(list)">{{ list.title }}</a>
2018-04-25 00:34:50 +03:00
</mk-window>
</template>
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
data() {
return {
fetching: true,
lists: []
};
},
mounted() {
(this as any).api('users/lists/list').then(lists => {
this.fetching = false;
this.lists = lists;
});
},
methods: {
2018-04-25 06:36:54 +03:00
add() {
(this as any).apis.input({
title: 'リスト名',
}).then(async title => {
const list = await (this as any).api('users/lists/create', {
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>
</style>