2018-04-24 16:34:50 -05:00
|
|
|
<template>
|
2018-09-17 15:35:06 -05:00
|
|
|
<mk-window ref="window" is-modal width="450px" height="500px" @closed="destroyDom">
|
2018-06-01 23:34:53 -05:00
|
|
|
<span slot="header">%fa:list% %i18n:@title%</span>
|
2018-04-24 16:34:50 -05:00
|
|
|
|
2018-06-05 14:00:48 -05:00
|
|
|
<div class="xkxvokkjlptzyewouewmceqcxhpgzprp" :data-darkmode="$store.state.device.darkmode">
|
2018-05-17 13:07:11 -05:00
|
|
|
<button class="ui" @click="add">%i18n:@create-list%</button>
|
2018-04-25 21:19:57 -05:00
|
|
|
<a v-for="list in lists" :key="list.id" @click="choice(list)">{{ list.title }}</a>
|
|
|
|
</div>
|
2018-04-24 16:34:50 -05: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-24 22:36:54 -05:00
|
|
|
add() {
|
|
|
|
(this as any).apis.input({
|
2018-08-06 13:20:26 -05:00
|
|
|
title: '%i18n:@list-name%',
|
2018-04-24 22:36:54 -05:00
|
|
|
}).then(async title => {
|
|
|
|
const list = await (this as any).api('users/lists/create', {
|
|
|
|
title
|
|
|
|
});
|
|
|
|
|
2018-04-25 09:08:40 -05:00
|
|
|
this.$emit('choosen', list);
|
2018-04-24 22:36:54 -05:00
|
|
|
});
|
|
|
|
},
|
2018-04-25 09:08:40 -05:00
|
|
|
choice(list) {
|
|
|
|
this.$emit('choosen', list);
|
|
|
|
},
|
2018-04-24 16:34:50 -05:00
|
|
|
close() {
|
|
|
|
(this as any).$refs.window.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
|
2018-04-25 21:19:57 -05:00
|
|
|
root(isDark)
|
|
|
|
padding 16px
|
|
|
|
|
|
|
|
> button
|
|
|
|
margin-bottom 16px
|
|
|
|
|
|
|
|
> a
|
|
|
|
display block
|
|
|
|
padding 16px
|
|
|
|
border solid 1px isDark ? #1c2023 : #eee
|
|
|
|
border-radius 4px
|
|
|
|
|
2018-06-05 14:00:48 -05:00
|
|
|
.xkxvokkjlptzyewouewmceqcxhpgzprp[data-darkmode]
|
2018-04-25 21:19:57 -05:00
|
|
|
root(true)
|
|
|
|
|
2018-06-05 14:00:48 -05:00
|
|
|
.xkxvokkjlptzyewouewmceqcxhpgzprp:not([data-darkmode])
|
2018-04-25 21:19:57 -05:00
|
|
|
root(false)
|
|
|
|
|
2018-04-24 16:34:50 -05:00
|
|
|
</style>
|