stash
This commit is contained in:
parent
2fd9a946a4
commit
00aa880ddd
6 changed files with 23 additions and 38 deletions
|
@ -4,13 +4,17 @@ from rest_framework import routers, viewsets, status
|
||||||
from rest_framework.decorators import api_view, permission_classes
|
from rest_framework.decorators import api_view, permission_classes
|
||||||
from rest_framework.response import Response
|
from rest_framework.response import Response
|
||||||
from rest_framework.permissions import IsAuthenticated
|
from rest_framework.permissions import IsAuthenticated
|
||||||
|
from asgiref.sync import async_to_sync
|
||||||
|
from channels.layers import get_channel_layer
|
||||||
|
|
||||||
from inventory.models import Event, Container, Item, Comment
|
from inventory.models import Event, Container, Item, Comment
|
||||||
from inventory.serializers import EventSerializer, ContainerSerializer, CommentSerializer, ItemSerializer, \
|
from inventory.serializers import EventSerializer, ContainerSerializer, ItemSerializer, SearchResultSerializer, \
|
||||||
SearchResultSerializer
|
CommentSerializer
|
||||||
|
|
||||||
from base64 import b64decode
|
from base64 import b64decode
|
||||||
|
|
||||||
|
from notify_sessions.models import SystemEvent
|
||||||
|
|
||||||
|
|
||||||
class EventViewSet(viewsets.ModelViewSet):
|
class EventViewSet(viewsets.ModelViewSet):
|
||||||
serializer_class = EventSerializer
|
serializer_class = EventSerializer
|
||||||
|
@ -100,6 +104,12 @@ def add_comment(request, event_slug, id):
|
||||||
item=item,
|
item=item,
|
||||||
comment=request.data['comment'],
|
comment=request.data['comment'],
|
||||||
)
|
)
|
||||||
|
systemevent = SystemEvent.objects.create(type='comment added', reference=comment.id)
|
||||||
|
channel_layer = get_channel_layer()
|
||||||
|
async_to_sync(channel_layer.group_send)(
|
||||||
|
'general', {"type": "generic.event", "name": "send_message_to_frontend", "event_id": systemevent.id,
|
||||||
|
"message": "comment added"}
|
||||||
|
)
|
||||||
return Response(CommentSerializer(comment).data, status=status.HTTP_201_CREATED)
|
return Response(CommentSerializer(comment).data, status=status.HTTP_201_CREATED)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -25,6 +25,7 @@ class EventSerializer(serializers.ModelSerializer):
|
||||||
dict['addresses'] = [EventAddress.objects.get_or_create(address=x)[0] for x in addresses]
|
dict['addresses'] = [EventAddress.objects.get_or_create(address=x)[0] for x in addresses]
|
||||||
return dict
|
return dict
|
||||||
|
|
||||||
|
|
||||||
class ContainerSerializer(serializers.ModelSerializer):
|
class ContainerSerializer(serializers.ModelSerializer):
|
||||||
itemCount = serializers.SerializerMethodField()
|
itemCount = serializers.SerializerMethodField()
|
||||||
|
|
||||||
|
|
0
core/testdata.py
Normal file
0
core/testdata.py
Normal file
|
@ -1,6 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="timeline-item-wrapper">
|
<div class="timeline-item-wrapper">
|
||||||
<Lightbox v-if="lightboxHash" :hash="lightboxHash" @close="closeLightboxModal()"/>
|
|
||||||
<div class="timeline-item-description">
|
<div class="timeline-item-description">
|
||||||
<i class="avatar | small">
|
<i class="avatar | small">
|
||||||
<font-awesome-icon icon="user"/>
|
<font-awesome-icon icon="user"/>
|
||||||
|
@ -23,7 +22,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="card-footer" v-if="item.attachments.length">
|
<div class="card-footer" v-if="item.attachments.length">
|
||||||
<ul>
|
<ul>
|
||||||
<li v-for="attachment in item.attachments" @click="openLightboxModalWith(attachment)">
|
<li v-for="attachment in item.attachments" @click="openLightboxModalWith(attachment.hash)">
|
||||||
<AuthenticatedImage :src="`/media/2/256/${attachment.hash}/`" :alt="attachment.name"
|
<AuthenticatedImage :src="`/media/2/256/${attachment.hash}/`" :alt="attachment.name"
|
||||||
v-if="attachment.mime_type.startsWith('image/')" cached/>
|
v-if="attachment.mime_type.startsWith('image/')" cached/>
|
||||||
<AuthenticatedDataLink :href="`/media/2/${attachment.hash}/`" :download="attachment.name"
|
<AuthenticatedDataLink :href="`/media/2/${attachment.hash}/`" :download="attachment.name"
|
||||||
|
@ -59,16 +58,11 @@
|
||||||
|
|
||||||
import AuthenticatedImage from "@/components/AuthenticatedImage.vue";
|
import AuthenticatedImage from "@/components/AuthenticatedImage.vue";
|
||||||
import AuthenticatedDataLink from "@/components/AuthenticatedDataLink.vue";
|
import AuthenticatedDataLink from "@/components/AuthenticatedDataLink.vue";
|
||||||
import Lightbox from "@/components/Lightbox.vue";
|
import {mapMutations} from "vuex";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'TimelineMail',
|
name: 'TimelineMail',
|
||||||
components: {Lightbox, AuthenticatedImage, AuthenticatedDataLink},
|
components: {AuthenticatedImage, AuthenticatedDataLink},
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
lightboxHash: null,
|
|
||||||
}
|
|
||||||
},
|
|
||||||
props: {
|
props: {
|
||||||
'item': {
|
'item': {
|
||||||
type: Object,
|
type: Object,
|
||||||
|
@ -85,12 +79,7 @@ export default {
|
||||||
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
openLightboxModalWith(attachment) {
|
...mapMutations(['openLightboxModalWith'])
|
||||||
this.lightboxHash = attachment.hash;
|
|
||||||
},
|
|
||||||
closeLightboxModal() { // Closes the editing modal and discards the edited copy of the item.
|
|
||||||
this.lightboxHash = null;
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="timeline-item-wrapper">
|
<div class="timeline-item-wrapper">
|
||||||
<Lightbox v-if="lightboxHash" :hash="lightboxHash" @close="closeLightboxModal()"/>
|
|
||||||
<div class="timeline-item-description">
|
<div class="timeline-item-description">
|
||||||
<i class="avatar | small">
|
<i class="avatar | small">
|
||||||
<font-awesome-icon icon="user"/>
|
<font-awesome-icon icon="user"/>
|
||||||
|
@ -19,7 +18,7 @@
|
||||||
<AuthenticatedImage v-if="item.item.file" cached
|
<AuthenticatedImage v-if="item.item.file" cached
|
||||||
:src="`/media/2/256/${item.item.file}/`"
|
:src="`/media/2/256/${item.item.file}/`"
|
||||||
class="d-block card-img-left"
|
class="d-block card-img-left"
|
||||||
@click="openLightboxModalWith(item.item)"
|
@click="openLightboxModalWith(item.item.file)"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="col">
|
<div class="col">
|
||||||
|
@ -78,16 +77,11 @@
|
||||||
|
|
||||||
import AuthenticatedImage from "@/components/AuthenticatedImage.vue";
|
import AuthenticatedImage from "@/components/AuthenticatedImage.vue";
|
||||||
import AuthenticatedDataLink from "@/components/AuthenticatedDataLink.vue";
|
import AuthenticatedDataLink from "@/components/AuthenticatedDataLink.vue";
|
||||||
import Lightbox from "@/components/Lightbox.vue";
|
import {mapMutations} from "vuex";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'TimelineRelatedItem',
|
name: 'TimelineRelatedItem',
|
||||||
components: {Lightbox, AuthenticatedImage, AuthenticatedDataLink},
|
components: {AuthenticatedImage, AuthenticatedDataLink},
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
lightboxHash: null,
|
|
||||||
}
|
|
||||||
},
|
|
||||||
props: {
|
props: {
|
||||||
'item': {
|
'item': {
|
||||||
type: Object,
|
type: Object,
|
||||||
|
@ -104,13 +98,8 @@ export default {
|
||||||
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
openLightboxModalWith(attachment) {
|
...mapMutations(['openLightboxModalWith'])
|
||||||
this.lightboxHash = attachment.hash;
|
}
|
||||||
},
|
|
||||||
closeLightboxModal() { // Closes the editing modal and discards the edited copy of the item.
|
|
||||||
this.lightboxHash = null;
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -19,13 +19,9 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
||||||
import AuthenticatedImage from "@/components/AuthenticatedImage.vue";
|
|
||||||
import AuthenticatedDataLink from "@/components/AuthenticatedDataLink.vue";
|
|
||||||
import Lightbox from "@/components/Lightbox.vue";
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'TimelineRelatedTicket',
|
name: 'TimelineRelatedTicket',
|
||||||
components: {Lightbox},
|
components: {},
|
||||||
props: {
|
props: {
|
||||||
'item': {
|
'item': {
|
||||||
type: Object,
|
type: Object,
|
||||||
|
|
Loading…
Reference in a new issue