mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
rename checkedBlur to blurImage, testing checkbox
This commit is contained in:
parent
bcb0bd21a5
commit
7b0b2cc93e
@ -244,10 +244,13 @@ describe('ContributionForm.vue', () => {
|
|||||||
|
|
||||||
describe('questionable images should be blurred', () => {
|
describe('questionable images should be blurred', () => {
|
||||||
it('questionable images unset be blurred', async () => {
|
it('questionable images unset be blurred', async () => {
|
||||||
|
expectedParams.variables.imageUpload = imageUpload
|
||||||
|
wrapper.find(TeaserImage).vm.$emit('addTeaserImage', imageUpload)
|
||||||
|
expect(wrapper.find('.images-set-blur').exists()).toBe(false)
|
||||||
await wrapper.find('input[type="checkbox"]').trigger('click')
|
await wrapper.find('input[type="checkbox"]').trigger('click')
|
||||||
expect(wrapper.find('input[type="checkbox"]').exists()).toBe(true)
|
expect(wrapper.find('input[type="checkbox"]').exists()).toBe(true)
|
||||||
expect(wrapper.find('img.img-blur-in').exists()).toBe(true)
|
expect(wrapper.find('.images-set-blur').exists()).toBe(true)
|
||||||
|
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|||||||
@ -40,12 +40,12 @@
|
|||||||
<ds-text align="right">
|
<ds-text align="right">
|
||||||
<label for="blur_img">{{ $t('contribution.shockingPicture') }}</label>
|
<label for="blur_img">{{ $t('contribution.shockingPicture') }}</label>
|
||||||
<input
|
<input
|
||||||
name="blurImage"
|
name="checkbox"
|
||||||
class="blurImageCheckbox"
|
class="blurImageCheckbox"
|
||||||
type="checkbox"
|
type="checkbox"
|
||||||
id="blur_img"
|
id="blur_img"
|
||||||
:checked="checkedBlur"
|
v-model="checkedBlur"
|
||||||
@change="(checkedBlur = !checkedBlur), (form.checkbox = !checkedBlur)"
|
@change="form.checkbox = checkedBlur"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<label for="blur_img"><span class=""></span></label>
|
<label for="blur_img"><span class=""></span></label>
|
||||||
@ -227,8 +227,7 @@ export default {
|
|||||||
created() {},
|
created() {},
|
||||||
mounted() {
|
mounted() {
|
||||||
if (this.contribution && this.contribution.blurImage === true) {
|
if (this.contribution && this.contribution.blurImage === true) {
|
||||||
this.checkedChange()
|
this.checkedBlur = true
|
||||||
this.$el.querySelector('.hc-attachments-upload-area-post img').classList.add('img-blur-in')
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
@ -242,28 +241,7 @@ export default {
|
|||||||
methods: {
|
methods: {
|
||||||
unBlur() {
|
unBlur() {
|
||||||
if (this.checkedBlur) {
|
if (this.checkedBlur) {
|
||||||
this.checkedChange()
|
|
||||||
}
|
|
||||||
},
|
|
||||||
checkedChange() {
|
|
||||||
if (this.$el) {
|
|
||||||
console.log(this.$el.querySelector('.crop-overlay'))
|
|
||||||
console.log(document.querySelector('.crop-overlay'))
|
|
||||||
this.elem = this.$el.querySelector('img')
|
|
||||||
} else {
|
|
||||||
}
|
|
||||||
if (this.checkedBlur) {
|
|
||||||
this.elem.classList.remove('img-blur-in')
|
|
||||||
document.querySelector('.crop-overlay').classList.remove('images-set-blur')
|
|
||||||
this.checkedBlur = false
|
this.checkedBlur = false
|
||||||
this.form.checkbox = false
|
|
||||||
} else {
|
|
||||||
if (this.elem != null) {
|
|
||||||
|
|
||||||
this.elem.classList.add('img-blur-in')
|
|
||||||
}
|
|
||||||
this.checkedBlur = true
|
|
||||||
this.form.checkbox = true
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
submit() {
|
submit() {
|
||||||
@ -417,18 +395,4 @@ export default {
|
|||||||
cursor: default;
|
cursor: default;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
input[type='checkbox'] {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
input[type='checkbox'] + label span {
|
|
||||||
display: inline-block;
|
|
||||||
width: 29px;
|
|
||||||
height: 27px;
|
|
||||||
vertical-align: middle;
|
|
||||||
background: url(../../static/img/checkbox/checkbox-set-blank-checked-line.png) left top no-repeat;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
input[type='checkbox']:checked + label span {
|
|
||||||
background: url(../../static/img/checkbox/checkbox-set-blank-checked-line.png) -30px top no-repeat;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@ -1,173 +0,0 @@
|
|||||||
<template>
|
|
||||||
<ds-card space="small">
|
|
||||||
<ds-heading tag="h3">User Images</ds-heading>
|
|
||||||
<template>
|
|
||||||
|
|
||||||
<ds-space :margin-bottom="{ base: 'small', md: 'base', lg: 'large' }">
|
|
||||||
<div>
|
|
||||||
<ds-button :secondary="blurTrueImages" @click="changeShowImages" >All Blur Images </ds-button>
|
|
||||||
<ds-button :secondary="!blurTrueImages" @click="changeShowImages" >All Images</ds-button>
|
|
||||||
</div>
|
|
||||||
</ds-space>
|
|
||||||
</template>
|
|
||||||
<template v-if="hasResults">
|
|
||||||
<div>
|
|
||||||
<ds-grid gap="x-small" >
|
|
||||||
<ds-grid-item v-for="post in posts" :key="post.id" :row-span="10">
|
|
||||||
<img
|
|
||||||
:src="postImage(post.image)"
|
|
||||||
@click="showImages(post)" style="width:100%"/>
|
|
||||||
<div>{{post.createdAt}}</div>
|
|
||||||
<a :href="'/post/'+ post.id" target="_blank">{{post.title}}</a>
|
|
||||||
</ds-grid-item>
|
|
||||||
|
|
||||||
</ds-grid>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<ds-modal
|
|
||||||
v-if="isOpen"
|
|
||||||
v-model="isOpen"
|
|
||||||
:title="title"
|
|
||||||
force
|
|
||||||
extended
|
|
||||||
confirm-label="Ok"
|
|
||||||
cancel-label="cancel"
|
|
||||||
>
|
|
||||||
<p>
|
|
||||||
<img
|
|
||||||
:src="imagePath"
|
|
||||||
style="width:100%"/>
|
|
||||||
<small>Dieses Bild ist vom User Blured</small>
|
|
||||||
<div>
|
|
||||||
<ds-button danger @click="deleteImage()" >Bild löschen! </ds-button>
|
|
||||||
<ds-button v-if="!blurTrueImages" secondary @click="moderatorBlurImage()" > Bild unkenntlich machen! </ds-button>
|
|
||||||
<a :href="contributionlink" target="_blank"><ds-button primary >Beitrag aufrufen </ds-button></a>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
</ds-modal>
|
|
||||||
</div>
|
|
||||||
</ds-card>
|
|
||||||
|
|
||||||
|
|
||||||
</template>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import gql from 'graphql-tag'
|
|
||||||
|
|
||||||
|
|
||||||
export default {
|
|
||||||
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
posts: [],
|
|
||||||
blurTrueImages: true,
|
|
||||||
isOpen: false,
|
|
||||||
imagePath: null,
|
|
||||||
imageID: null,
|
|
||||||
title: '',
|
|
||||||
contributionlink: '',
|
|
||||||
}
|
|
||||||
},
|
|
||||||
computed: {
|
|
||||||
hasResults() {
|
|
||||||
return this.$apollo.loading || (this.posts && this.posts.length > 0)
|
|
||||||
},
|
|
||||||
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
|
|
||||||
postImage(image) {
|
|
||||||
// console.log("image1", image)
|
|
||||||
// console.log("image.match('uploads/') ", image.match('uploads/') )
|
|
||||||
if (image && image.match('uploads/') != null ) {
|
|
||||||
// console.log("image ist API", image)
|
|
||||||
return '/api' + image
|
|
||||||
|
|
||||||
} else {
|
|
||||||
// console.log("image ist LINK", image)
|
|
||||||
return '' + image
|
|
||||||
}
|
|
||||||
},
|
|
||||||
changeShowImages(){
|
|
||||||
console.log("this.blurTrueImages is", this.blurTrueImages)
|
|
||||||
if ( this.blurTrueImages ) {
|
|
||||||
this.blurTrueImages = false
|
|
||||||
this.loadBlurFalseImages()
|
|
||||||
} else {
|
|
||||||
this.blurTrueImages = true
|
|
||||||
this.loadBlurTrueImages()
|
|
||||||
|
|
||||||
}
|
|
||||||
console.log("this.blurTrueImages new", this.blurTrueImages)
|
|
||||||
},
|
|
||||||
showImages(post){
|
|
||||||
console.log("showImages(post)", post)
|
|
||||||
console.log(" this.blurTrueImages", this.blurTrueImages)
|
|
||||||
|
|
||||||
this.isOpen = true
|
|
||||||
this.imagePath = this.postImage(post.image)
|
|
||||||
this.title = post.title
|
|
||||||
this.contributionlink = '/post/'+ post.id
|
|
||||||
},
|
|
||||||
moderatorBlurImage(post){
|
|
||||||
console.log("moderatorBlurImage(post)", post)
|
|
||||||
},
|
|
||||||
deleteImage(id){
|
|
||||||
if (this.imageID !== id) return
|
|
||||||
console.log("DELETE IMAGE, austauschen mit einem hinweisbild durch die moderation", id)
|
|
||||||
},
|
|
||||||
loadBlurFalseImages() {
|
|
||||||
|
|
||||||
this.$apollo
|
|
||||||
.query({
|
|
||||||
query: gql`
|
|
||||||
query {
|
|
||||||
Post(blurImage: false){id, title, blurImage, image, imageUpload, createdAt }
|
|
||||||
}
|
|
||||||
`,
|
|
||||||
})
|
|
||||||
.then(({ data: { Post } }) => {
|
|
||||||
this.posts = Post
|
|
||||||
})
|
|
||||||
},
|
|
||||||
loadBlurTrueImages() {
|
|
||||||
|
|
||||||
this.$apollo
|
|
||||||
.query({
|
|
||||||
query: gql`
|
|
||||||
query {
|
|
||||||
Post(blurImage: true){id, title, blurImage, image, imageUpload, createdAt }
|
|
||||||
}
|
|
||||||
`,
|
|
||||||
})
|
|
||||||
.then(({ data: { Post } }) => {
|
|
||||||
this.posts = Post
|
|
||||||
})
|
|
||||||
},
|
|
||||||
},
|
|
||||||
apollo: {
|
|
||||||
Post: {
|
|
||||||
query() {
|
|
||||||
return gql`
|
|
||||||
query {
|
|
||||||
Post(blurImage: true){id, title, blurImage, image, imageUpload, createdAt }
|
|
||||||
} `
|
|
||||||
},
|
|
||||||
result({ data: { Post } }) {
|
|
||||||
this.posts = Post
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
</script>
|
|
||||||
@ -12,21 +12,21 @@
|
|||||||
>
|
>
|
||||||
<ds-text align="right" class="blurBox">
|
<ds-text align="right" class="blurBox">
|
||||||
<ds-button
|
<ds-button
|
||||||
v-show="post.blurImage"
|
v-if="post.blurImage"
|
||||||
class="bluricon-post"
|
class="bluricon-post"
|
||||||
icon="eye"
|
icon="eye"
|
||||||
primary
|
primary
|
||||||
@click.prevent="unBlur"
|
@click.prevent="unBlur"
|
||||||
></ds-button>
|
></ds-button>
|
||||||
<ds-button
|
<ds-button
|
||||||
v-show="blur"
|
v-if="blur"
|
||||||
class="bluricon-post"
|
class="bluricon-post"
|
||||||
icon="eye-slash"
|
icon="eye-slash"
|
||||||
primary
|
primary
|
||||||
@click.prevent="Blur"
|
@click.prevent="Blur"
|
||||||
></ds-button>
|
></ds-button>
|
||||||
<img
|
<img
|
||||||
v-show="post.blurImage"
|
v-if="post.blurImage"
|
||||||
:src="post.image | proxyApiUrl"
|
:src="post.image | proxyApiUrl"
|
||||||
class="blurImgPreview"
|
class="blurImgPreview"
|
||||||
@click.prevent="unBlur"
|
@click.prevent="unBlur"
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 1.7 KiB |
Loading…
x
Reference in New Issue
Block a user