mirror of
https://github.com/aelve/guide.git
synced 2024-12-26 22:34:42 +03:00
428c17048d
* TestCafe added to project. First test written * Search input test added * Seacth input test changed, travis job for testcafe tests added * Travis bugfix test * Travis testcafe bugfix test try 2 * Travis testcafe bugfix test ry 3 * Travis testcafe test sleep increased to 10 * Test adding category added but bug with click occurs - check!!! * Category test (testing the group where test was creating) added - bug fix * Article component rewrite * Article component rewritten * Big with rendering content.html in v-for * Collapse bug fix * MInor category visual changes/fixes * Description, reactivity bug fix * merge * Refactoring after code review * Conflict in styles resolved * Item add/delete feature in category * merge with vue * minor code fix * Update ArticleContent.vue * Merge bug fix * Minor merge bug fix * Code review fixes
170 lines
4.6 KiB
Vue
170 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">
|
|
{{ 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"
|
|
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 { ICategory, 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')
|
|
}
|
|
// TODO create state getter and replace to it
|
|
get categories() {
|
|
return this.$store.state.category.categoryList
|
|
}
|
|
get groups() {
|
|
const groupedByGroupName: object = _groupBy(this.categories, 'group')
|
|
const groupedEntries = Object.entries(groupedByGroupName)
|
|
const groupedAlsoByStatus = groupedEntries.map(([key, value]: [string, ICategory[]]) => {
|
|
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: ICategory): 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> |