2020-10-24 23:57:45 +05:30
< script >
import { GlAlert , GlSprintf } from '@gitlab/ui' ;
import { _ _ } from '~/locale' ;
import SharedDeleteButton from './shared/delete_button.vue' ;
export default {
components : {
GlSprintf ,
GlAlert ,
SharedDeleteButton ,
} ,
props : {
confirmPhrase : {
type : String ,
required : true ,
} ,
formPath : {
type : String ,
required : true ,
} ,
} ,
strings : {
alertTitle : _ _ ( 'You are about to permanently delete this project' ) ,
alertBody : _ _ (
2021-03-11 19:13:27 +05:30
'Once a project is permanently deleted, it %{strongStart}cannot be recovered%{strongEnd}. Permanently deleting this project will %{strongStart}immediately delete%{strongEnd} its repositories and %{strongStart}all related resources%{strongEnd}, including issues, merge requests etc.' ,
2020-10-24 23:57:45 +05:30
) ,
} ,
} ;
< / script >
< template >
< shared-delete-button v-bind = "{ confirmPhrase, formPath }" >
< template # modal -body >
< gl-alert
class = "gl-mb-5"
variant = "danger"
: title = "$options.strings.alertTitle"
: dismissible = "false"
>
< gl-sprintf :message = "$options.strings.alertBody" >
< template # strong = "{ content }" >
< strong > { { content } } < / strong >
< / template >
< / gl-sprintf >
< / gl-alert >
< / template >
< / shared-delete-button >
< / template >