1
1
mirror of https://github.com/aelve/guide.git synced 2024-12-26 22:34:42 +03:00
guide/front/client/components/Categories.vue
avele 072db0b3df
Chore/typings and refactor category item actions (#243)
* Change semicolon rule in tslint

* tslint rule added

* typings and category item actions refactored
2018-11-21 13:31:31 +03:00

169 lines
4.6 KiB
Vue

<template>
<v-container grid-list-md>
<!-- TODO remove when links refactored -->
<router-link to="/haskell">
<button class="test-btn">Test Article</button>
</router-link>
<v-layout
row
wrap
justify-space-between
>
<v-flex
class="mr-3 mt-3"
column
xs12
sm5
md3
lg3
xl1
v-for="(groupCategories, groupName, index) in groups"
:key="index"
>
<div class="category-group">
<h4 class="mb-2 display-1 font-weight-black category-group-name">
{{ groupName }}
</h4>
<!-- TODO remove duplicates of same a-links -->
<a-link
class="category-title"
openInNewTab
v-for="category in groupCategories[CategoryStatus.finished]"
:key="category.uid"
:url="`http://aelve.com:4801/haskell/${getCategoryUrl(category)}`"
>
<h6
class="ml-2 subheading font-weight-bold"
>
{{ category.title }}
</h6>
</a-link>
<h6
class="ml-2 mb-1 body-2 font-weight-bold"
v-if="groupCategories[CategoryStatus.inProgress]"
>
In progress
</h6>
<a-link
class="category-title ml-3"
openInNewTab
v-for="category in groupCategories[CategoryStatus.inProgress]"
:key="category.uid"
:url="`http://aelve.com:4801/haskell/${getCategoryUrl(category)}`"
>
<h6
class="ml-2 body-1 font-weight-bold"
>
{{ category.title }}
</h6>
</a-link>
<h6
class="ml-2 mb-1 body-2 font-weight-bold"
v-if="groupCategories[CategoryStatus.toBeWritten]"
>
To be written
</h6>
<a-link
class="category-title ml-3"
openInNewTab
v-for="category in groupCategories[CategoryStatus.toBeWritten]"
:key="category.uid"
:url="`http://aelve.com:4801/haskell/${getCategoryUrl(category)}`"
>
<h6
class="ml-2 body-1 font-weight-bold"
>
{{ category.title }}
</h6>
</a-link>
<v-btn
class="ml-2 pl-0 add-category-btn"
color="grey"
flat
@click="openAddCategoryDialog(groupName)"
>
<v-icon class="mr-1" left>add</v-icon>
Add new category
</v-btn>
</div>
</v-flex>
<add-category-dialog
v-model="isAddGroupDialogOpen"
:groupName="addCategoryGroupName"
/>
</v-layout>
</v-container>
</template>
<script lang="ts">
import _groupBy from 'lodash/groupBy'
import _toKebabCase from 'lodash/kebabCase'
import _sortBy from 'lodash/sortBy'
import _fromPairs from 'lodash/fromPairs'
import Vue from 'vue'
import Component from 'vue-class-component'
import { ICategoryInfo, CategoryStatus } from 'client/service/Category'
import AddCategoryDialog from 'client/components/AddCategoryDialog.vue'
@Component({
components: {
AddCategoryDialog
}
})
export default class Categories extends Vue {
CategoryStatus = CategoryStatus
addCategoryGroupName: string = ''
isAddGroupDialogOpen: boolean = false
async asyncData () {
return this.$store.dispatch('category/loadCategoryList')
}
get categories () {
return this.$store.state.category.categoryList
}
get groups () {
const groupedByGroupName = _groupBy(this.categories, 'group')
const groupedEntries = Object.entries(groupedByGroupName)
const groupedAlsoByStatus = groupedEntries.map(([key, value]: [string, ICategoryInfo[]]) => {
const grouppedCategoriesByStatus = _groupBy(value, 'status')
return [key, grouppedCategoriesByStatus]
})
// Key is groupName, so we sort by groupNames
const entriesKeyIndex = 0
const sortedAlphabetically = _sortBy(groupedAlsoByStatus, entriesKeyIndex)
return _fromPairs(sortedAlphabetically)
}
openAddCategoryDialog (groupName: string) {
this.addCategoryGroupName = groupName
this.isAddGroupDialogOpen = true
}
getCategoryUrl (category: ICategoryInfo): string {
return `${_toKebabCase(category.title)}-${category.uid}`
}
}
</script>
<style scoped>
.category-group {
text-align: left;
}
.category-title {
display: block;
line-height: 1.2;
}
.category-title:not(:last-child) {
margin-bottom: 5px;
}
.test-btn {
background: #000;
color: #fff;
padding: 8px 14px 7px;
border-radius: 25px;
text-transform: uppercase;
margin: 0 0 20px;
}
</style>