Started on library page UI

This commit is contained in:
Stefan Zermatten
2019-05-31 15:36:19 +02:00
parent 9a194a20cb
commit 48fe0d3608
2 changed files with 40 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<template lang="html">
<tree-node-list :children="libraryChildren" :group="library._id"s/>
</template>
<script>
export default {
}
</script>
<style lang="css" scoped>
</style>

View File

@@ -0,0 +1,29 @@
<template lang="html">
<toolbar-layout>
<span slot="toolbar">Library</span>
<v-card class="ma-4">
<library-contents-container>
<v-card-text v-else-if="$subReady.library">
You aren't subscribed to any libraries :O
</v-card-text>
<v-card-text v-if="!$subReady.library" class="layout row justify-center">
<v-progress-circular indeterminate/>
</v-card-text>
</v-card>
<v-btn fixed fab bottom right
color="primary"
@click="insertLibrary"
data-id="insert-library-fab"
>
<v-icon>add</v-icon>
</v-btn>
</toolbar-layout>
</template>
<script>
export default {
}
</script>
<style lang="css" scoped>
</style>