2019-02-15 15:39:39 +05:30
< script >
import { mapState , mapActions } from 'vuex' ;
2020-05-24 23:13:21 +05:30
import { GlSkeletonLoading , GlEmptyState , GlLink , GlButton } from '@gitlab/ui' ;
2020-01-01 13:55:28 +05:30
import {
getParameterByName ,
historyPushState ,
buildUrlWithCurrentLocation ,
} from '~/lib/utils/common_utils' ;
2020-04-08 14:13:33 +05:30
import { _ _ } from '~/locale' ;
2020-01-01 13:55:28 +05:30
import TablePagination from '~/vue_shared/components/pagination/table_pagination.vue' ;
2019-02-15 15:39:39 +05:30
import ReleaseBlock from './release_block.vue' ;
export default {
name : 'ReleasesApp' ,
components : {
2019-03-02 22:35:43 +05:30
GlSkeletonLoading ,
2019-02-15 15:39:39 +05:30
GlEmptyState ,
ReleaseBlock ,
2020-01-01 13:55:28 +05:30
TablePagination ,
2020-04-08 14:13:33 +05:30
GlLink ,
2020-05-24 23:13:21 +05:30
GlButton ,
2019-02-15 15:39:39 +05:30
} ,
props : {
projectId : {
type : String ,
required : true ,
} ,
2020-04-08 14:13:33 +05:30
documentationPath : {
2019-02-15 15:39:39 +05:30
type : String ,
required : true ,
} ,
illustrationPath : {
type : String ,
required : true ,
} ,
2020-04-08 14:13:33 +05:30
newReleasePath : {
type : String ,
required : false ,
default : '' ,
} ,
2019-02-15 15:39:39 +05:30
} ,
computed : {
2020-03-13 15:44:24 +05:30
... mapState ( 'list' , [ 'isLoading' , 'releases' , 'hasError' , 'pageInfo' ] ) ,
2019-02-15 15:39:39 +05:30
shouldRenderEmptyState ( ) {
return ! this . releases . length && ! this . hasError && ! this . isLoading ;
} ,
shouldRenderSuccessState ( ) {
return this . releases . length && ! this . isLoading && ! this . hasError ;
} ,
2020-04-08 14:13:33 +05:30
emptyStateText ( ) {
return _ _ (
"Releases are based on Git tags and mark specific points in a project's development history. They can contain information about the type of changes and can also deliver binaries, like compiled versions of your software." ,
) ;
} ,
2019-02-15 15:39:39 +05:30
} ,
created ( ) {
2020-01-01 13:55:28 +05:30
this . fetchReleases ( {
page : getParameterByName ( 'page' ) ,
projectId : this . projectId ,
} ) ;
2019-02-15 15:39:39 +05:30
} ,
methods : {
2020-03-13 15:44:24 +05:30
... mapActions ( 'list' , [ 'fetchReleases' ] ) ,
2020-01-01 13:55:28 +05:30
onChangePage ( page ) {
historyPushState ( buildUrlWithCurrentLocation ( ` ?page= ${ page } ` ) ) ;
this . fetchReleases ( { page , projectId : this . projectId } ) ;
} ,
2019-02-15 15:39:39 +05:30
} ,
} ;
< / script >
< template >
2020-04-08 14:13:33 +05:30
< div class = "flex flex-column mt-2" >
2020-05-24 23:13:21 +05:30
< gl-button
2020-04-08 14:13:33 +05:30
v - if = "newReleasePath"
: href = "newReleasePath"
: aria - describedby = "shouldRenderEmptyState && 'releases-description'"
2020-05-24 23:13:21 +05:30
category = "primary"
variant = "success"
class = "align-self-end mb-2 js-new-release-btn"
2020-04-08 14:13:33 +05:30
>
{ { _ _ ( 'New release' ) } }
2020-05-24 23:13:21 +05:30
< / gl-button >
2020-04-08 14:13:33 +05:30
2019-03-02 22:35:43 +05:30
< gl-skeleton-loading v-if = "isLoading" class="js-loading" / >
2019-02-15 15:39:39 +05:30
< gl-empty-state
v - else - if = "shouldRenderEmptyState"
class = "js-empty-state"
: title = "__('Getting started with releases')"
: svg - path = "illustrationPath"
2020-04-08 14:13:33 +05:30
>
< template # description >
< span id = "releases-description" >
{ { emptyStateText } }
< gl-link
: href = "documentationPath"
: aria - label = "__('Releases documentation')"
target = "_blank"
>
{ { _ _ ( 'More information' ) } }
< / gl-link >
< / span >
< / template >
< / gl-empty-state >
2019-02-15 15:39:39 +05:30
< div v -else -if = " shouldRenderSuccessState " class = "js-success-state" >
< release-block
v - for = "(release, index) in releases"
2020-04-22 19:07:51 +05:30
: key = "index"
2019-02-15 15:39:39 +05:30
: release = "release"
: class = "{ 'linked-card': releases.length > 1 && index !== releases.length - 1 }"
/ >
< / div >
2020-01-01 13:55:28 +05:30
< table-pagination v-if = "!isLoading" :change="onChangePage" :page-info="pageInfo" / >
2019-02-15 15:39:39 +05:30
< / div >
< / template >
< style >
. linked - card : : after {
width : 1 px ;
content : ' ' ;
border : 1 px solid # e5e5e5 ;
height : 17 px ;
top : 100 % ;
position : absolute ;
left : 32 px ;
}
< / style >