mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
Scaffold DisableModal and .spec
This commit is contained in:
parent
f8c24eb79a
commit
44b216f138
51
components/DisableModal.spec.js
Normal file
51
components/DisableModal.spec.js
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
import { shallowMount, mount, createLocalVue } from '@vue/test-utils'
|
||||||
|
import DisableModal from './DisableModal.vue'
|
||||||
|
import Vue from 'vue'
|
||||||
|
import Vuex from 'vuex'
|
||||||
|
import Styleguide from '@human-connection/styleguide'
|
||||||
|
import portal from 'portal-vue'
|
||||||
|
|
||||||
|
const localVue = createLocalVue()
|
||||||
|
|
||||||
|
localVue.use(Vuex)
|
||||||
|
localVue.use(Styleguide)
|
||||||
|
localVue.use(portal)
|
||||||
|
|
||||||
|
describe('DisableModal.vue', () => {
|
||||||
|
let wrapper
|
||||||
|
let getters
|
||||||
|
let store
|
||||||
|
let mocks
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
getters = {
|
||||||
|
'modal/data': () => false
|
||||||
|
}
|
||||||
|
|
||||||
|
store = new Vuex.Store({
|
||||||
|
getters
|
||||||
|
})
|
||||||
|
mocks = { $t: () => {} }
|
||||||
|
})
|
||||||
|
|
||||||
|
describe('mount', () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
wrapper = mount(DisableModal, { store, mocks, localVue })
|
||||||
|
})
|
||||||
|
|
||||||
|
it('renders', () => {
|
||||||
|
expect(wrapper.is('div')).toBe(true)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
describe('shallowMount', () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
wrapper = shallowMount(DisableModal, { store, mocks, localVue })
|
||||||
|
})
|
||||||
|
describe('isOpen', () => {
|
||||||
|
it('defaults to false', () => {
|
||||||
|
expect(wrapper.vm.isOpen).toBe(false)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
144
components/DisableModal.vue
Normal file
144
components/DisableModal.vue
Normal file
@ -0,0 +1,144 @@
|
|||||||
|
<template>
|
||||||
|
<ds-modal
|
||||||
|
:title="title"
|
||||||
|
:is-open="isOpen"
|
||||||
|
:confirm-label="$t('report.submit')"
|
||||||
|
:cancel-label="$t('report.cancel')"
|
||||||
|
confirm-icon="warning"
|
||||||
|
@confirm="report"
|
||||||
|
@cancel="close"
|
||||||
|
>
|
||||||
|
<transition name="ds-transition-fade">
|
||||||
|
<ds-flex
|
||||||
|
v-if="success"
|
||||||
|
class="hc-modal-success"
|
||||||
|
centered
|
||||||
|
>
|
||||||
|
<sweetalert-icon icon="success" />
|
||||||
|
</ds-flex>
|
||||||
|
</transition>
|
||||||
|
|
||||||
|
<!-- eslint-disable-next-line vue/no-v-html -->
|
||||||
|
<p v-html="message" />
|
||||||
|
|
||||||
|
<template
|
||||||
|
slot="footer"
|
||||||
|
slot-scope="{ cancel, confirm, cancelLabel, confirmLabel }"
|
||||||
|
>
|
||||||
|
<ds-button
|
||||||
|
ghost
|
||||||
|
icon="close"
|
||||||
|
:disabled="disabled || loading"
|
||||||
|
@click.prevent="cancel('cancel')"
|
||||||
|
>
|
||||||
|
{{ cancelLabel }}
|
||||||
|
</ds-button>
|
||||||
|
<ds-button
|
||||||
|
danger
|
||||||
|
icon="exclamation-circle"
|
||||||
|
:loading="loading"
|
||||||
|
:disabled="disabled || loading"
|
||||||
|
@click.prevent="confirm('confirm')"
|
||||||
|
>
|
||||||
|
{{ confirmLabel }}
|
||||||
|
</ds-button>
|
||||||
|
</template>
|
||||||
|
</ds-modal>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import gql from 'graphql-tag'
|
||||||
|
import { SweetalertIcon } from 'vue-sweetalert-icons'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'DisableModal',
|
||||||
|
components: {
|
||||||
|
SweetalertIcon
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
success: false,
|
||||||
|
loading: false,
|
||||||
|
disabled: false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
data() {
|
||||||
|
return this.$store.getters['modal/data'] || {}
|
||||||
|
},
|
||||||
|
title() {
|
||||||
|
if (!this.data.context) return ''
|
||||||
|
return this.$t(`report.${this.data.context}.title`)
|
||||||
|
},
|
||||||
|
message() {
|
||||||
|
if (!this.data.context) return ''
|
||||||
|
return this.$t(`report.${this.data.context}.message`, { name: this.name })
|
||||||
|
},
|
||||||
|
name() {
|
||||||
|
return this.$filters.truncate(this.data.name, 30)
|
||||||
|
},
|
||||||
|
isOpen() {
|
||||||
|
return this.$store.getters['modal/open'] === 'report'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
isOpen(open) {
|
||||||
|
if (open) {
|
||||||
|
this.success = false
|
||||||
|
this.disabled = false
|
||||||
|
this.loading = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
close() {
|
||||||
|
this.$store.commit('modal/SET_OPEN', {})
|
||||||
|
},
|
||||||
|
report() {
|
||||||
|
this.loading = true
|
||||||
|
this.disabled = true
|
||||||
|
this.$apollo
|
||||||
|
.mutate({
|
||||||
|
mutation: gql`
|
||||||
|
mutation($id: ID!, $description: String) {
|
||||||
|
report(id: $id, description: $description) {
|
||||||
|
id
|
||||||
|
}
|
||||||
|
}
|
||||||
|
`,
|
||||||
|
variables: {
|
||||||
|
id: this.data.id,
|
||||||
|
description: '-'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.then(() => {
|
||||||
|
this.success = true
|
||||||
|
this.$toast.success('Thanks for reporting!')
|
||||||
|
setTimeout(this.close, 1500)
|
||||||
|
})
|
||||||
|
.catch(err => {
|
||||||
|
this.$toast.error(err.message)
|
||||||
|
this.disabled = false
|
||||||
|
})
|
||||||
|
.finally(() => {
|
||||||
|
this.loading = false
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
.hc-modal-success {
|
||||||
|
pointer-events: none;
|
||||||
|
position: absolute;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
background-color: #fff;
|
||||||
|
opacity: 1;
|
||||||
|
z-index: $z-index-modal;
|
||||||
|
border-radius: $border-radius-x-large;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@ -4,7 +4,7 @@
|
|||||||
:is-open="isOpen"
|
:is-open="isOpen"
|
||||||
:confirm-label="$t('report.submit')"
|
:confirm-label="$t('report.submit')"
|
||||||
:cancel-label="$t('report.cancel')"
|
:cancel-label="$t('report.cancel')"
|
||||||
confrim-icon="warning"
|
confirm-icon="warning"
|
||||||
@confirm="report"
|
@confirm="report"
|
||||||
@cancel="close"
|
@cancel="close"
|
||||||
>
|
>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user