add basic view for item history
This commit is contained in:
parent
a59423780e
commit
343040fa6d
14 changed files with 570 additions and 169 deletions
|
@ -42,19 +42,27 @@ export default {
|
||||||
url: this.src,
|
url: this.src,
|
||||||
data: this.image_data
|
data: this.image_data
|
||||||
});
|
});
|
||||||
|
},
|
||||||
|
deferImage() {
|
||||||
|
setTimeout(() => {
|
||||||
|
if (this.cached) {
|
||||||
|
const c = this.getThumbnail(this.src);
|
||||||
|
if (c) {
|
||||||
|
this.image_data = c;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
this.loadImage();
|
||||||
|
}, 0);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
src: function (newVal, oldVal) {
|
||||||
|
this.deferImage()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
setTimeout(() => {
|
this.deferImage();
|
||||||
if (this.cached) {
|
|
||||||
const c = this.getThumbnail(this.src);
|
|
||||||
if (c) {
|
|
||||||
this.image_data = c;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
this.loadImage();
|
|
||||||
}, 0);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
|
@ -52,7 +52,7 @@ export default {
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
const query = this.$router.currentRoute ? (this.$router.currentRoute.query ? this.$router.currentRoute.query.collapsed : null) : null;
|
const query = this.route ? (this.route.query ? this.route.query.collapsed : null) : null;
|
||||||
if (query !== null && query !== undefined) {
|
if (query !== null && query !== undefined) {
|
||||||
this.collapsed = this.unpackInt(parseInt(query), this.sections.length);
|
this.collapsed = this.unpackInt(parseInt(query), this.sections.length);
|
||||||
} else {
|
} else {
|
||||||
|
@ -84,8 +84,8 @@ export default {
|
||||||
const encoded = this.packInt(this.collapsed).toString()
|
const encoded = this.packInt(this.collapsed).toString()
|
||||||
if (this.route.query.collapsed !== encoded)
|
if (this.route.query.collapsed !== encoded)
|
||||||
this.$router.push({
|
this.$router.push({
|
||||||
...this.$router.currentRoute,
|
...this.route,
|
||||||
query: {...this.$router.currentRoute.query, collapsed: encoded}
|
query: {...this.route.query, collapsed: encoded}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
deep: true,
|
deep: true,
|
||||||
|
|
|
@ -12,13 +12,16 @@
|
||||||
field="description"
|
field="description"
|
||||||
:validation-fn="str => str && str.length > 0"
|
:validation-fn="str => str && str.length > 0"
|
||||||
/>
|
/>
|
||||||
<InputCombo
|
<div class="form-group">
|
||||||
label="box"
|
<label for="box">box</label>
|
||||||
:model="item"
|
<InputCombo
|
||||||
nameKey="box"
|
label="box"
|
||||||
uniqueKey="cid"
|
:model="item"
|
||||||
:options="boxes"
|
nameKey="box"
|
||||||
/>
|
uniqueKey="cid"
|
||||||
|
:options="boxes"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
@ -21,6 +21,9 @@
|
||||||
<span class="timeline-item-icon faded-icon" v-else-if="item.type === 'shipping_voucher'">
|
<span class="timeline-item-icon faded-icon" v-else-if="item.type === 'shipping_voucher'">
|
||||||
<font-awesome-icon icon="truck"/>
|
<font-awesome-icon icon="truck"/>
|
||||||
</span>
|
</span>
|
||||||
|
<span class="timeline-item-icon faded-icon" v-else-if="item.type === 'placement'">
|
||||||
|
<font-awesome-icon icon="archive"/>
|
||||||
|
</span>
|
||||||
<span class="timeline-item-icon faded-icon" v-else>
|
<span class="timeline-item-icon faded-icon" v-else>
|
||||||
<font-awesome-icon icon="pen"/>
|
<font-awesome-icon icon="pen"/>
|
||||||
</span>
|
</span>
|
||||||
|
@ -30,40 +33,15 @@
|
||||||
<TimelineAssignment v-else-if="item.type === 'assignment'" :item="item"/>
|
<TimelineAssignment v-else-if="item.type === 'assignment'" :item="item"/>
|
||||||
<TimelineRelatedItem v-else-if="item.type === 'item_relation'" :item="item"/>
|
<TimelineRelatedItem v-else-if="item.type === 'item_relation'" :item="item"/>
|
||||||
<TimelineShippingVoucher v-else-if="item.type === 'shipping_voucher'" :item="item"/>
|
<TimelineShippingVoucher v-else-if="item.type === 'shipping_voucher'" :item="item"/>
|
||||||
|
<TimelinePlacement v-else-if="item.type === 'placement'" :item="item"/>
|
||||||
|
<TimelineRelatedTicket v-else-if="item.type === 'issue_relation'" :item="item"/>
|
||||||
<p v-else>{{ item }}</p>
|
<p v-else>{{ item }}</p>
|
||||||
</li>
|
</li>
|
||||||
<li class="timeline-item">
|
<li class="timeline-item">
|
||||||
<span class="timeline-item-icon | faded-icon">
|
<slot name="timeline_action1"/>
|
||||||
<font-awesome-icon icon="comment"/>
|
|
||||||
</span>
|
|
||||||
<div class="new-comment card bg-dark">
|
|
||||||
<div class="">
|
|
||||||
<textarea placeholder="add comment..." v-model="newComment" class="form-control">
|
|
||||||
</textarea>
|
|
||||||
<AsyncButton class="btn btn-primary float-right" :task="addCommentAndClear">
|
|
||||||
<font-awesome-icon icon="comment"/>
|
|
||||||
Save Comment
|
|
||||||
</AsyncButton>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</li>
|
</li>
|
||||||
<li class="timeline-item">
|
<li class="timeline-item">
|
||||||
<span class="timeline-item-icon | faded-icon">
|
<slot name="timeline_action2"/>
|
||||||
<font-awesome-icon icon="envelope"/>
|
|
||||||
</span>
|
|
||||||
<div class="new-mail card bg-dark">
|
|
||||||
<div class="card-header">
|
|
||||||
{{ newestMailSubject }}
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<textarea placeholder="reply mail..." v-model="newMail" class="form-control">
|
|
||||||
</textarea>
|
|
||||||
<AsyncButton class="btn btn-primary float-right" :task="sendMailAndClear">
|
|
||||||
<font-awesome-icon icon="envelope"/>
|
|
||||||
Send Mail
|
|
||||||
</AsyncButton>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</li>
|
</li>
|
||||||
</ol>
|
</ol>
|
||||||
</template>
|
</template>
|
||||||
|
@ -78,12 +56,20 @@ import TimelineAssignment from "@/components/TimelineAssignment.vue";
|
||||||
import TimelineRelatedItem from "@/components/TimelineRelatedItem.vue";
|
import TimelineRelatedItem from "@/components/TimelineRelatedItem.vue";
|
||||||
import TimelineShippingVoucher from "@/components/TimelineShippingVoucher.vue";
|
import TimelineShippingVoucher from "@/components/TimelineShippingVoucher.vue";
|
||||||
import AsyncButton from "@/components/inputs/AsyncButton.vue";
|
import AsyncButton from "@/components/inputs/AsyncButton.vue";
|
||||||
|
import TimelinePlacement from "@/components/TimelinePlacement.vue";
|
||||||
|
import TimelineRelatedTicket from "@/components/TimelineRelatedTicket.vue";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'Timeline',
|
name: 'Timeline',
|
||||||
components: {
|
components: {
|
||||||
TimelineShippingVoucher, AsyncButton,
|
TimelineRelatedTicket,
|
||||||
TimelineRelatedItem, TimelineAssignment, TimelineStateChange, TimelineComment, TimelineMail
|
TimelinePlacement,
|
||||||
|
TimelineShippingVoucher,
|
||||||
|
TimelineRelatedItem,
|
||||||
|
TimelineAssignment,
|
||||||
|
TimelineStateChange,
|
||||||
|
TimelineComment,
|
||||||
|
TimelineMail
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
timeline: {
|
timeline: {
|
||||||
|
@ -91,33 +77,13 @@ export default {
|
||||||
default: () => []
|
default: () => []
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
emits: ['sendMail', 'addComment'],
|
|
||||||
data: () => ({
|
|
||||||
newMail: "",
|
|
||||||
newComment: ""
|
|
||||||
}),
|
|
||||||
computed: {
|
computed: {
|
||||||
...mapGetters(['stateInfo']),
|
...mapGetters(['stateInfo'])
|
||||||
newestMailSubject() {
|
|
||||||
const mail = this.timeline.filter(item => item.type === 'mail').pop();
|
|
||||||
return mail ? mail.subject : "";
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
methods: {
|
|
||||||
...mapActions(['sendMail', 'postComment']),
|
|
||||||
sendMailAndClear: async function () {
|
|
||||||
await this.sendMail(this.newMail);
|
|
||||||
this.newMail = "";
|
|
||||||
},
|
|
||||||
addCommentAndClear: async function () {
|
|
||||||
await this.postComment(this.newComment);
|
|
||||||
this.newComment = "";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss">
|
||||||
|
|
||||||
*,
|
*,
|
||||||
*:before,
|
*:before,
|
||||||
|
@ -136,10 +102,10 @@ a {
|
||||||
color: inherit;
|
color: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
/*img {
|
||||||
display: block;
|
display: block;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
}
|
}*/
|
||||||
|
|
||||||
/* End basic CSS override */
|
/* End basic CSS override */
|
||||||
|
|
||||||
|
|
85
web/src/components/TimelinePlacement.vue
Normal file
85
web/src/components/TimelinePlacement.vue
Normal file
|
@ -0,0 +1,85 @@
|
||||||
|
<template>
|
||||||
|
<div class="timeline-item-description">
|
||||||
|
<i class="avatar | small">
|
||||||
|
<font-awesome-icon icon="user"/>
|
||||||
|
</i>
|
||||||
|
<span><a href="#">$USER</a> has placed item in '{{item.box}}' (#{{item.cid}}) at <time
|
||||||
|
:datetime="timestamp">{{ timestamp }}</time>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'TimelinePlacement',
|
||||||
|
props: {
|
||||||
|
'item': {
|
||||||
|
type: Object,
|
||||||
|
required: true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
'timestamp': function () {
|
||||||
|
return new Date(this.item.timestamp).toLocaleString();
|
||||||
|
},
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* End basic CSS override */
|
||||||
|
|
||||||
|
|
||||||
|
.timeline-item-description {
|
||||||
|
display: flex;
|
||||||
|
padding-top: 6px;
|
||||||
|
gap: 8px;
|
||||||
|
color: var(--gray);
|
||||||
|
|
||||||
|
img {
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
/*color: var(--c-grey-500);*/
|
||||||
|
font-weight: 500;
|
||||||
|
text-decoration: none;
|
||||||
|
|
||||||
|
&:hover,
|
||||||
|
&:focus {
|
||||||
|
outline: 0; /* Don't actually do this */
|
||||||
|
color: var(--info);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.avatar {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
border-radius: 50%;
|
||||||
|
overflow: hidden;
|
||||||
|
aspect-ratio: 1 / 1;
|
||||||
|
flex-shrink: 0;
|
||||||
|
width: 40px;
|
||||||
|
height: 40px;
|
||||||
|
|
||||||
|
&.small {
|
||||||
|
width: 28px;
|
||||||
|
height: 28px;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
object-fit: cover;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
</style>
|
|
@ -5,8 +5,12 @@
|
||||||
<i class="avatar | small">
|
<i class="avatar | small">
|
||||||
<font-awesome-icon icon="user"/>
|
<font-awesome-icon icon="user"/>
|
||||||
</i>
|
</i>
|
||||||
<span><!--a href="#">$USER</a--> linked item <span class="badge badge-secondary">#{{ item.item.uid }} </span> on <time
|
<span><!--a href="#">$USER</a--> linked item <span class="badge badge-secondary">#{{
|
||||||
:datetime="timestamp">{{ timestamp }}</time> as <span class="badge badge-primary">{{ item.status }}</span>
|
item.item.id
|
||||||
|
}} </span> on <time
|
||||||
|
:datetime="timestamp">{{ timestamp }}</time> as <span class="badge badge-primary">{{
|
||||||
|
item.status
|
||||||
|
}}</span>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="card bg-dark">
|
<div class="card bg-dark">
|
||||||
|
@ -20,8 +24,10 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<h6 class="card-subtitle text-secondary">uid: {{ item.item.uid }} box: {{ item.item.box }}</h6>
|
<h6 class="card-subtitle text-secondary">id: {{ item.item.id }} box: {{ item.item.box }}</h6>
|
||||||
<h6 class="card-title">{{ item.item.description }}</h6>
|
<router-link :to="{name: 'item', params: {id: item.item.id}}">
|
||||||
|
<h6 class="card-title">{{ item.item.description }}</h6>
|
||||||
|
</router-link>
|
||||||
<!--div class="row mx-auto mt-2">
|
<!--div class="row mx-auto mt-2">
|
||||||
<div class="btn-group">
|
<div class="btn-group">
|
||||||
<button class="btn btn-outline-success"
|
<button class="btn btn-outline-success"
|
||||||
|
|
98
web/src/components/TimelineRelatedTicket.vue
Normal file
98
web/src/components/TimelineRelatedTicket.vue
Normal file
|
@ -0,0 +1,98 @@
|
||||||
|
<template>
|
||||||
|
<div class="timeline-item-wrapper">
|
||||||
|
<div class="timeline-item-description">
|
||||||
|
<i class="avatar | small">
|
||||||
|
<font-awesome-icon icon="user"/>
|
||||||
|
</i>
|
||||||
|
<span> linked ticket <span class="badge badge-secondary">#{{ item.issue_thread.id }} </span> on
|
||||||
|
<time :datetime="timestamp">{{ timestamp }}</time> as
|
||||||
|
<span class="badge badge-primary">{{ item.status }}</span>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div class="timeline-item-description">
|
||||||
|
<router-link :to="{name: 'ticket', params: {id: item.issue_thread.id}}">
|
||||||
|
<h6 class="card-title">Ticket #{{ item.issue_thread.id }} - {{ item.issue_thread.name }}</h6>
|
||||||
|
</router-link>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
|
||||||
|
import AuthenticatedImage from "@/components/AuthenticatedImage.vue";
|
||||||
|
import AuthenticatedDataLink from "@/components/AuthenticatedDataLink.vue";
|
||||||
|
import Lightbox from "@/components/Lightbox.vue";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'TimelineRelatedTicket',
|
||||||
|
components: {Lightbox},
|
||||||
|
props: {
|
||||||
|
'item': {
|
||||||
|
type: Object,
|
||||||
|
required: true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
'timestamp': function () {
|
||||||
|
return new Date(this.item.timestamp).toLocaleString();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
.timeline-item-description {
|
||||||
|
display: flex;
|
||||||
|
padding-top: 6px;
|
||||||
|
gap: 8px;
|
||||||
|
color: var(--gray);
|
||||||
|
|
||||||
|
img {
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
/*color: var(--c-grey-500);*/
|
||||||
|
font-weight: 500;
|
||||||
|
text-decoration: none;
|
||||||
|
|
||||||
|
&:hover,
|
||||||
|
&:focus {
|
||||||
|
outline: 0; /* Don't actually do this */
|
||||||
|
color: var(--info);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.card {
|
||||||
|
border: 1px solid var(--gray);
|
||||||
|
}
|
||||||
|
|
||||||
|
.avatar {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
border-radius: 50%;
|
||||||
|
overflow: hidden;
|
||||||
|
aspect-ratio: 1 / 1;
|
||||||
|
flex-shrink: 0;
|
||||||
|
width: 40px;
|
||||||
|
height: 40px;
|
||||||
|
|
||||||
|
&.small {
|
||||||
|
width: 28px;
|
||||||
|
height: 28px;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
object-fit: cover;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
|
@ -1,39 +1,36 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="form-group">
|
<div class="input-group">
|
||||||
<label :for="label">{{ label }}</label>
|
<div class="input-group-prepend">
|
||||||
<div class="input-group">
|
<button
|
||||||
<div class="input-group-prepend">
|
class="btn btn-outline-secondary dropdown-toggle"
|
||||||
<button
|
type="button"
|
||||||
class="btn btn-outline-secondary dropdown-toggle"
|
data-toggle="dropdown"
|
||||||
type="button"
|
>Search
|
||||||
data-toggle="dropdown"
|
</button>
|
||||||
>Search
|
<div class="dropdown-menu">
|
||||||
</button>
|
<a
|
||||||
<div class="dropdown-menu">
|
v-for="(option, index) in sortedOptions"
|
||||||
<a
|
:key="index"
|
||||||
v-for="(option, index) in sortedOptions"
|
class="dropdown-item"
|
||||||
:key="index"
|
@click="setInternalValue(option)"
|
||||||
class="dropdown-item"
|
:class="{ active: option == selectedOption }"
|
||||||
@click="setInternalValue(option)"
|
|
||||||
:class="{ active: option == selectedOption }"
|
|
||||||
>
|
|
||||||
{{ option[nameKey] }}
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<input type="text" class="form-control" :id="label" v-model="internalName">
|
|
||||||
<div class="input-group-append">
|
|
||||||
<button
|
|
||||||
class="btn"
|
|
||||||
:class="{ 'btn-info disabled': isValid, 'btn-success': !isValid }"
|
|
||||||
v-if="!isValid"
|
|
||||||
@click="addOption()"
|
|
||||||
>
|
>
|
||||||
<font-awesome-icon icon="plus"/>
|
{{ option[nameKey] }}
|
||||||
</button>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<Addon type="Combo Box" :is-valid="isValid"/>
|
|
||||||
</div>
|
</div>
|
||||||
|
<input type="text" class="form-control" :id="label" v-model="internalName">
|
||||||
|
<div class="input-group-append">
|
||||||
|
<button
|
||||||
|
class="btn"
|
||||||
|
:class="{ 'btn-info disabled': isValid, 'btn-success': !isValid }"
|
||||||
|
v-if="!isValid"
|
||||||
|
@click="addOption()"
|
||||||
|
>
|
||||||
|
<font-awesome-icon icon="plus"/>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<Addon type="Combo Box" :is-valid="isValid"/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
@ -27,7 +27,7 @@ const routes = [
|
||||||
{requiresAuth: true, requiresPermission: 'view_item'}
|
{requiresAuth: true, requiresPermission: 'view_item'}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/:event/item/:uid/', name: 'item', component: Items, meta:
|
path: '/:event/item/:id/', name: 'item', component: Item, meta:
|
||||||
{requiresAuth: true, requiresPermission: 'view_item'}
|
{requiresAuth: true, requiresPermission: 'view_item'}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -145,38 +145,34 @@ const store = createStore({
|
||||||
setItems(state, {slug, items}) {
|
setItems(state, {slug, items}) {
|
||||||
state.loadedItems[slug] = items;
|
state.loadedItems[slug] = items;
|
||||||
state.loadedItems = {...state.loadedItems};
|
state.loadedItems = {...state.loadedItems};
|
||||||
console.log(state.loadedItems)
|
|
||||||
},
|
},
|
||||||
replaceItems(state, items) {
|
replaceItems(state, items) {
|
||||||
const groups = Object.groupBy(items, i => i.event ? i.event : 'none')
|
const groups = Object.groupBy(items, i => i.event ? i.event : 'none')
|
||||||
for (const [key, value] of Object.entries(groups)) state.loadedItems[key] = value;
|
for (const [key, value] of Object.entries(groups)) state.loadedItems[key] = value;
|
||||||
state.loadedItems = {...state.loadedItems};
|
state.loadedItems = {...state.loadedItems};
|
||||||
console.log(state.loadedItems)
|
|
||||||
},
|
},
|
||||||
updateItem(state, updatedItem) {
|
updateItem(state, updatedItem) {
|
||||||
const item = state.loadedItems[updatedItem.event?updatedItem.event:'none'].filter(
|
const item = state.loadedItems[updatedItem.event ? updatedItem.event : 'none'].filter(
|
||||||
({uid}) => uid === updatedItem.uid)[0];
|
({id}) => id === updatedItem.id)[0];
|
||||||
Object.assign(item, updatedItem);
|
Object.assign(item, updatedItem);
|
||||||
},
|
},
|
||||||
removeItem(state, item) {
|
removeItem(state, item) {
|
||||||
state.loadedItems[item.event?item.event:'none'] = state.loadedItems[item.event].filter(it => it !== item);
|
state.loadedItems[item.event ? item.event : 'none'] = state.loadedItems[item.event].filter(it => it !== item);
|
||||||
},
|
},
|
||||||
appendItem(state, item) {
|
appendItem(state, item) {
|
||||||
state.loadedItems[item.event?item.event:'none'].push(item);
|
state.loadedItems[item.event ? item.event : 'none'].push(item);
|
||||||
},
|
},
|
||||||
setTickets(state, {slug, tickets}) {
|
setTickets(state, {slug, tickets}) {
|
||||||
state.loadedTickets[slug] = tickets;
|
state.loadedTickets[slug] = tickets;
|
||||||
state.loadedTickets = {...state.loadedTickets};
|
state.loadedTickets = {...state.loadedTickets};
|
||||||
console.log(state.loadedTickets)
|
|
||||||
},
|
},
|
||||||
replaceTickets(state, tickets) {
|
replaceTickets(state, tickets) {
|
||||||
const groups = Object.groupBy(tickets, t => t.event ? t.event : 'none')
|
const groups = Object.groupBy(tickets, t => t.event ? t.event : 'none')
|
||||||
for (const [key, value] of Object.entries(groups)) state.loadedTickets[key] = value;
|
for (const [key, value] of Object.entries(groups)) state.loadedTickets[key] = value;
|
||||||
state.loadedTickets = {...state.loadedTickets};
|
state.loadedTickets = {...state.loadedTickets};
|
||||||
console.log(state.loadedTickets)
|
|
||||||
},
|
},
|
||||||
updateTicket(state, updatedTicket) {
|
updateTicket(state, updatedTicket) {
|
||||||
const ticket = state.loadedTickets[updatedTicket.event?updatedTicket.event:'none'].filter(
|
const ticket = state.loadedTickets[updatedTicket.event ? updatedTicket.event : 'none'].filter(
|
||||||
({id}) => id === updatedTicket.id)[0];
|
({id}) => id === updatedTicket.id)[0];
|
||||||
Object.assign(ticket, updatedTicket);
|
Object.assign(ticket, updatedTicket);
|
||||||
state.loadedTickets = {...state.loadedTickets};
|
state.loadedTickets = {...state.loadedTickets};
|
||||||
|
@ -336,14 +332,13 @@ const store = createStore({
|
||||||
const {data, success} = await getters.session.delete(`/2/events/${event_id}/`);
|
const {data, success} = await getters.session.delete(`/2/events/${event_id}/`);
|
||||||
if (success) {
|
if (success) {
|
||||||
await dispatch('loadEvents')
|
await dispatch('loadEvents')
|
||||||
commit('replaceEvents', [...state.events.filter(e => e.eid !== event_id)])
|
commit('replaceEvents', [...state.events.filter(e => e.id !== event_id)])
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
async updateEvent({commit, dispatch, state}, {id, partial_event}){
|
async updateEvent({commit, dispatch, state}, {id, partial_event}){
|
||||||
console.log(id, partial_event);
|
|
||||||
const {data, success} = await http.patch(`/2/events/${id}/`, partial_event, state.user.token);
|
const {data, success} = await http.patch(`/2/events/${id}/`, partial_event, state.user.token);
|
||||||
if (success) {
|
if (success) {
|
||||||
commit('replaceEvents', [...state.events.filter(e => e.eid !== id), data])
|
commit('replaceEvents', [...state.events.filter(e => e.id !== id), data])
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
async fetchTicketStates({commit, state, getters}) {
|
async fetchTicketStates({commit, state, getters}) {
|
||||||
|
@ -405,16 +400,16 @@ const store = createStore({
|
||||||
async updateItem({commit, getters, state}, item) {
|
async updateItem({commit, getters, state}, item) {
|
||||||
const {
|
const {
|
||||||
data, success
|
data, success
|
||||||
} = await getters.session.put(`/2/${getters.getEventSlug}/item/${item.uid}/`, item);
|
} = await getters.session.put(`/2/${getters.getEventSlug}/item/${item.id}/`, item);
|
||||||
commit('updateItem', data);
|
commit('updateItem', data);
|
||||||
},
|
},
|
||||||
async markItemReturned({commit, getters, state}, item) {
|
async markItemReturned({commit, getters, state}, item) {
|
||||||
await getters.session.patch(`/2/${getters.getEventSlug}/item/${item.uid}/`, {returned: true},
|
await getters.session.patch(`/2/${getters.getEventSlug}/item/${item.id}/`, {returned: true},
|
||||||
state.user.token);
|
state.user.token);
|
||||||
commit('removeItem', item);
|
commit('removeItem', item);
|
||||||
},
|
},
|
||||||
async deleteItem({commit, getters, state}, item) {
|
async deleteItem({commit, getters, state}, item) {
|
||||||
await getters.session.delete(`/2/${getters.getEventSlug}/item/${item.uid}/`, item);
|
await getters.session.delete(`/2/${getters.getEventSlug}/item/${item.id}/`, item);
|
||||||
commit('removeItem', item);
|
commit('removeItem', item);
|
||||||
},
|
},
|
||||||
async postItem({commit, getters, state}, item) {
|
async postItem({commit, getters, state}, item) {
|
||||||
|
|
168
web/src/views/Item.vue
Normal file
168
web/src/views/Item.vue
Normal file
|
@ -0,0 +1,168 @@
|
||||||
|
<template>
|
||||||
|
<AsyncLoader :loaded="!!item.id">
|
||||||
|
<div class="container-fluid px-xl-5 mt-3">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-3 col-xl-2">
|
||||||
|
<div class="card bg-dark text-light mb-2" id="filters">
|
||||||
|
<div class="card bg-dark">
|
||||||
|
<AuthenticatedImage v-if="item.file" cached
|
||||||
|
:src="`/media/2/256/${item.file}/`"
|
||||||
|
class="d-block card-img"
|
||||||
|
@click="openLightboxModalWith(item)"
|
||||||
|
/>
|
||||||
|
<div class="card-body">
|
||||||
|
<h6 class="card-subtitle text-secondary">id: {{ item.id }} box: {{
|
||||||
|
item.box
|
||||||
|
}}</h6>
|
||||||
|
<h6 class="card-title">{{ item.description }}</h6>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-xl-8">
|
||||||
|
<div class="card bg-dark text-light mb-2" id="filters">
|
||||||
|
<div class="card-header">
|
||||||
|
<h3>Item #{{ item.id }} - {{ item.description }}</h3>
|
||||||
|
</div>
|
||||||
|
<Timeline :timeline="item.timeline">
|
||||||
|
<template v-slot:timeline_action1>
|
||||||
|
<span class="timeline-item-icon | faded-icon">
|
||||||
|
<font-awesome-icon icon="comment"/>
|
||||||
|
</span>
|
||||||
|
<div class="new-comment card bg-dark">
|
||||||
|
<div class="">
|
||||||
|
<textarea placeholder="add comment..." v-model="newComment"
|
||||||
|
class="form-control">
|
||||||
|
</textarea>
|
||||||
|
<AsyncButton class="btn btn-primary float-right" :task="addCommentAndClear">
|
||||||
|
<font-awesome-icon icon="comment"/>
|
||||||
|
Save Comment
|
||||||
|
</AsyncButton>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</Timeline>
|
||||||
|
<div class="card-footer d-flex justify-content-between">
|
||||||
|
<button class="btn btn-secondary mr-2" @click="$router.go(-1)">Back</button>
|
||||||
|
<div class="btn-group">
|
||||||
|
<button class="btn btn-outline-success"
|
||||||
|
@click.stop="confirm('return Item?') && markItemReturned(item)"
|
||||||
|
title="returned">
|
||||||
|
<font-awesome-icon icon="check"/>
|
||||||
|
</button>
|
||||||
|
<button class="btn btn-outline-secondary" @click.stop="openEditingModalWith(item)"
|
||||||
|
title="edit">
|
||||||
|
<font-awesome-icon icon="edit"/>
|
||||||
|
</button>
|
||||||
|
<button class="btn btn-outline-danger"
|
||||||
|
@click.stop="confirm('delete Item?') && deleteItem(item)"
|
||||||
|
title="delete">
|
||||||
|
<font-awesome-icon icon="trash"/>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<InputCombo
|
||||||
|
label="box"
|
||||||
|
:model="item"
|
||||||
|
nameKey="box"
|
||||||
|
uniqueKey="cid"
|
||||||
|
:options="boxes"
|
||||||
|
/>
|
||||||
|
<div class="btn-group">
|
||||||
|
<select class="form-control" v-model="selected_state">
|
||||||
|
<option v-for="status in state_options" :value="status.value">{{
|
||||||
|
status.text
|
||||||
|
}}
|
||||||
|
</option>
|
||||||
|
</select>
|
||||||
|
<button class="form-control btn btn-success"
|
||||||
|
@click="changeTicketStatus(item)"
|
||||||
|
:disabled="(selected_state == item.state)">
|
||||||
|
Change Status
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-3 col-xl-2" v-if="item.related_issues && item.related_issues.length">
|
||||||
|
<div class="card bg-dark text-light mb-2" id="filters">
|
||||||
|
<div class="card-body">
|
||||||
|
<h5 class="card-title text-info">Related</h5>
|
||||||
|
</div>
|
||||||
|
<div class="card bg-dark" v-for="issue in item.related_issues" v-bind:key="item.id">
|
||||||
|
<div class="card-body">
|
||||||
|
<router-link :to="{name: 'ticket', params: {id: issue.id}}">
|
||||||
|
<h6 class="card-title">Ticket #{{ issue.id }} - {{ issue.name }}</h6>
|
||||||
|
</router-link>
|
||||||
|
<h6 class="card-subtitle text-secondary">state: {{ issue.state }}</h6>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</AsyncLoader>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import {mapActions, mapGetters, mapState} from 'vuex';
|
||||||
|
import Timeline from "@/components/Timeline.vue";
|
||||||
|
import ClipboardButton from "@/components/inputs/ClipboardButton.vue";
|
||||||
|
import AsyncLoader from "@/components/AsyncLoader.vue";
|
||||||
|
import InputCombo from "@/components/inputs/InputCombo.vue";
|
||||||
|
import InputString from "@/components/inputs/InputString.vue";
|
||||||
|
import AuthenticatedImage from "@/components/AuthenticatedImage.vue";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'Item',
|
||||||
|
components: {AuthenticatedImage, InputString, InputCombo, AsyncLoader, ClipboardButton, Timeline},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
newComment: ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
...mapState(['state_options', 'users']),
|
||||||
|
...mapGetters(['availableShippingVoucherTypes', 'getAllItems', 'route', 'getBoxes']),
|
||||||
|
item() {
|
||||||
|
const id = parseInt(this.route.params.id)
|
||||||
|
const ret = this.getAllItems.find(item => item.id === id);
|
||||||
|
return ret ? ret : {};
|
||||||
|
},
|
||||||
|
boxes() {
|
||||||
|
console.log(this.getBoxes);
|
||||||
|
return this.getBoxes.map(obj => ({cid: obj.cid, box: obj.name}));
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
...mapActions(['deleteItem', 'markItemReturned', 'updateTicketPartial', 'postComment']),
|
||||||
|
...mapActions(['loadTickets', 'fetchTicketStates', 'loadUsers', 'scheduleAfterInit']),
|
||||||
|
...mapActions(['claimShippingVoucher', 'fetchShippingVouchers', 'loadEventItems', 'loadBoxes']),
|
||||||
|
changeTicketStatus(item) {
|
||||||
|
item.state = this.selected_state;
|
||||||
|
this.updateTicketPartial({
|
||||||
|
id: item.id,
|
||||||
|
state: this.selected_state,
|
||||||
|
})
|
||||||
|
},
|
||||||
|
addCommentAndClear: async function () {
|
||||||
|
await this.postComment({
|
||||||
|
id: this.ticket.id,
|
||||||
|
message: this.newComment
|
||||||
|
})
|
||||||
|
this.newComment = "";
|
||||||
|
}
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.scheduleAfterInit(() => [Promise.all([this.loadEventItems(), this.loadBoxes()]).then(() => {
|
||||||
|
this.selected_state = this.item.state;
|
||||||
|
this.selected_assignee = this.item.assigned_to
|
||||||
|
})]);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
</style>
|
|
@ -5,7 +5,7 @@
|
||||||
<template #body>
|
<template #body>
|
||||||
<EditItem
|
<EditItem
|
||||||
:item="editingItem"
|
:item="editingItem"
|
||||||
badge="uid"
|
badge="id"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
<template #buttons>
|
<template #buttons>
|
||||||
|
@ -17,10 +17,10 @@
|
||||||
<div class="row" v-if="layout === 'table'">
|
<div class="row" v-if="layout === 'table'">
|
||||||
<div class="col-xl-8 offset-xl-2">
|
<div class="col-xl-8 offset-xl-2">
|
||||||
<Table
|
<Table
|
||||||
:columns="['uid', 'description', 'box']"
|
:columns="['id', 'description', 'box']"
|
||||||
:items="getEventItems"
|
:items="getEventItems"
|
||||||
:keyName="'uid'"
|
:keyName="'id'"
|
||||||
@itemActivated="openLightboxModalWith($event)"
|
@itemActivated="showItemDetail"
|
||||||
>
|
>
|
||||||
<template #actions="{ item }">
|
<template #actions="{ item }">
|
||||||
<div class="btn-group">
|
<div class="btn-group">
|
||||||
|
@ -43,11 +43,11 @@
|
||||||
</div>
|
</div>
|
||||||
<Cards
|
<Cards
|
||||||
v-if="layout === 'cards'"
|
v-if="layout === 'cards'"
|
||||||
:columns="['uid', 'description', 'box']"
|
:columns="['id', 'description', 'box']"
|
||||||
:items="getEventItems"
|
:items="getEventItems"
|
||||||
:keyName="'uid'"
|
:keyName="'id'"
|
||||||
v-slot="{ item }"
|
v-slot="{ item }"
|
||||||
@itemActivated="openLightboxModalWith($event)"
|
@itemActivated="showItemDetail"
|
||||||
>
|
>
|
||||||
<AuthenticatedImage v-if="item.file" cached
|
<AuthenticatedImage v-if="item.file" cached
|
||||||
:src="`/media/2/256/${item.file}/`"
|
:src="`/media/2/256/${item.file}/`"
|
||||||
|
@ -55,7 +55,7 @@
|
||||||
/>
|
/>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<h6 class="card-title">{{ item.description }}</h6>
|
<h6 class="card-title">{{ item.description }}</h6>
|
||||||
<h6 class="card-subtitle text-secondary">uid: {{ item.uid }} box: {{ item.box }}</h6>
|
<h6 class="card-subtitle text-secondary">id: {{ item.id }} box: {{ item.box }}</h6>
|
||||||
<div class="row mx-auto mt-2">
|
<div class="row mx-auto mt-2">
|
||||||
<div class="btn-group">
|
<div class="btn-group">
|
||||||
<button class="btn btn-outline-success"
|
<button class="btn btn-outline-success"
|
||||||
|
@ -88,6 +88,7 @@ import {mapActions, mapGetters, mapState} from 'vuex';
|
||||||
import Lightbox from '../components/Lightbox';
|
import Lightbox from '../components/Lightbox';
|
||||||
import AuthenticatedImage from "@/components/AuthenticatedImage.vue";
|
import AuthenticatedImage from "@/components/AuthenticatedImage.vue";
|
||||||
import AsyncLoader from "@/components/AsyncLoader.vue";
|
import AsyncLoader from "@/components/AsyncLoader.vue";
|
||||||
|
import router from "@/router";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'Items',
|
name: 'Items',
|
||||||
|
@ -102,6 +103,9 @@ export default {
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
...mapActions(['deleteItem', 'markItemReturned', 'loadEventItems', 'updateItem', 'scheduleAfterInit']),
|
...mapActions(['deleteItem', 'markItemReturned', 'loadEventItems', 'updateItem', 'scheduleAfterInit']),
|
||||||
|
showItemDetail(item) {
|
||||||
|
router.push({name: 'item', params: {id: item.id}});
|
||||||
|
},
|
||||||
openLightboxModalWith(item) {
|
openLightboxModalWith(item) {
|
||||||
this.lightboxHash = item.file;
|
this.lightboxHash = item.file;
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<AsyncLoader :loaded="ticket.id">
|
<AsyncLoader :loaded="!!ticket.id">
|
||||||
<div class="container-fluid px-xl-5 mt-3">
|
<div class="container-fluid px-xl-5 mt-3">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-xl-8 offset-xl-2">
|
<div class="col-xl-8 offset-xl-2">
|
||||||
|
@ -7,7 +7,42 @@
|
||||||
<div class="card-header">
|
<div class="card-header">
|
||||||
<h3>Ticket #{{ ticket.id }} - {{ ticket.name }}</h3>
|
<h3>Ticket #{{ ticket.id }} - {{ ticket.name }}</h3>
|
||||||
</div>
|
</div>
|
||||||
<Timeline :timeline="ticket.timeline" @sendMail="handleMail" @addComment="handleComment"/>
|
<Timeline :timeline="ticket.timeline">
|
||||||
|
<template v-slot:timeline_action1>
|
||||||
|
<span class="timeline-item-icon | faded-icon">
|
||||||
|
<font-awesome-icon icon="comment"/>
|
||||||
|
</span>
|
||||||
|
<div class="new-comment card bg-dark">
|
||||||
|
<div>
|
||||||
|
<textarea placeholder="add comment..." v-model="newComment"
|
||||||
|
class="form-control">
|
||||||
|
</textarea>
|
||||||
|
<AsyncButton class="btn btn-primary float-right" :task="addCommentAndClear">
|
||||||
|
<font-awesome-icon icon="comment"/>
|
||||||
|
Save Comment
|
||||||
|
</AsyncButton>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<template v-slot:timeline_action2>
|
||||||
|
<span class="timeline-item-icon | faded-icon">
|
||||||
|
<font-awesome-icon icon="envelope"/>
|
||||||
|
</span>
|
||||||
|
<div class="new-mail card bg-dark">
|
||||||
|
<div class="card-header">
|
||||||
|
{{ newestMailSubject }}
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<textarea placeholder="reply mail..." v-model="newMail" class="form-control">
|
||||||
|
</textarea>
|
||||||
|
<AsyncButton class="btn btn-primary float-right" :task="sendMailAndClear">
|
||||||
|
<font-awesome-icon icon="envelope"/>
|
||||||
|
Send Mail
|
||||||
|
</AsyncButton>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</Timeline>
|
||||||
<div class="card-footer d-flex justify-content-between">
|
<div class="card-footer d-flex justify-content-between">
|
||||||
<button class="btn btn-secondary mr-2" @click="$router.go(-1)">Back</button>
|
<button class="btn btn-secondary mr-2" @click="$router.go(-1)">Back</button>
|
||||||
<!--button class="btn btn-danger" @click="deleteItem({type: 'tickets', id: ticket.id})">
|
<!--button class="btn btn-danger" @click="deleteItem({type: 'tickets', id: ticket.id})">
|
||||||
|
@ -16,11 +51,14 @@
|
||||||
</button-->
|
</button-->
|
||||||
<div class="btn-group">
|
<div class="btn-group">
|
||||||
<select class="form-control" v-model="selected_assignee">
|
<select class="form-control" v-model="selected_assignee">
|
||||||
<option v-for="user in users" :value="user.username">{{ user.username }}</option>
|
<option v-for="user in users" :value="user.username">{{
|
||||||
|
user.username
|
||||||
|
}}
|
||||||
|
</option>
|
||||||
</select>
|
</select>
|
||||||
<button class="form-control btn btn-success"
|
<button class="form-control btn btn-success"
|
||||||
@click="assignTicket(ticket)"
|
@click="assignTicket(ticket)"
|
||||||
:disabled="!selected_assignee || (selected_assignee == ticket.assigned_to)">
|
:disabled="!selected_assignee || (selected_assignee === ticket.assigned_to)">
|
||||||
Assign Ticket
|
Assign Ticket
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
@ -33,7 +71,7 @@
|
||||||
</select>
|
</select>
|
||||||
<button class="form-control btn btn-success"
|
<button class="form-control btn btn-success"
|
||||||
@click="changeTicketStatus(ticket)"
|
@click="changeTicketStatus(ticket)"
|
||||||
:disabled="(selected_state == ticket.state)">
|
:disabled="(selected_state === ticket.state)">
|
||||||
Change Status
|
Change Status
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
@ -58,6 +96,30 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="col-lg-3 col-xl-2 d-lg-none d-xl-block"
|
||||||
|
v-if="ticket.related_items && ticket.related_items.length">
|
||||||
|
<div class="card bg-dark text-light mb-2" id="filters">
|
||||||
|
<div class="card-body">
|
||||||
|
<h5 class="card-title text-info">Related</h5>
|
||||||
|
<div class="card bg-dark" v-for="item in ticket.related_items" v-bind:key="item.id">
|
||||||
|
<AuthenticatedImage v-if="item.file" cached
|
||||||
|
:src="`/media/2/256/${item.file}/`"
|
||||||
|
class="d-block card-img"
|
||||||
|
@click="openLightboxModalWith(item)"
|
||||||
|
/>
|
||||||
|
<div class="card-body">
|
||||||
|
<!--h6 class="card-title text-info"><span class="badge badge-primary">{{ item.relation_status }}</span></--h6-->
|
||||||
|
<h6 class="card-subtitle text-secondary">id: {{ item.id }} box: {{
|
||||||
|
item.box
|
||||||
|
}}</h6>
|
||||||
|
<router-link :to="{name: 'item', params: {id: item.id}}">
|
||||||
|
<h6 class="card-title">{{ item.description }}</h6>
|
||||||
|
</router-link>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</AsyncLoader>
|
</AsyncLoader>
|
||||||
|
@ -68,15 +130,19 @@ import {mapActions, mapGetters, mapState} from 'vuex';
|
||||||
import Timeline from "@/components/Timeline.vue";
|
import Timeline from "@/components/Timeline.vue";
|
||||||
import ClipboardButton from "@/components/inputs/ClipboardButton.vue";
|
import ClipboardButton from "@/components/inputs/ClipboardButton.vue";
|
||||||
import AsyncLoader from "@/components/AsyncLoader.vue";
|
import AsyncLoader from "@/components/AsyncLoader.vue";
|
||||||
|
import AuthenticatedImage from "@/components/AuthenticatedImage.vue";
|
||||||
|
import AsyncButton from "@/components/inputs/AsyncButton.vue";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'Ticket',
|
name: 'Ticket',
|
||||||
components: {AsyncLoader, ClipboardButton, Timeline},
|
components: {AsyncButton, AuthenticatedImage, AsyncLoader, ClipboardButton, Timeline},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
selected_state: null,
|
selected_state: null,
|
||||||
selected_assignee: null,
|
selected_assignee: null,
|
||||||
shipping_voucher_type: null,
|
shipping_voucher_type: null,
|
||||||
|
newMail: "",
|
||||||
|
newComment: ""
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
@ -90,46 +156,51 @@ export default {
|
||||||
shippingEmail() {
|
shippingEmail() {
|
||||||
const domain = document.location.hostname;
|
const domain = document.location.hostname;
|
||||||
return `ticket+${this.ticket.uuid}@${domain}`;
|
return `ticket+${this.ticket.uuid}@${domain}`;
|
||||||
}
|
},
|
||||||
|
newestMailSubject() {
|
||||||
|
const mail = this.ticket.timeline ? this.ticket.timeline.filter(item => item.type === 'mail').pop() : null;
|
||||||
|
return mail ? mail.subject : "";
|
||||||
|
},
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
...mapActions(['deleteItem', 'markItemReturned', 'sendMail', 'updateTicketPartial', 'postComment']),
|
...mapActions(['deleteItem', 'markItemReturned', 'sendMail', 'updateTicketPartial', 'postComment']),
|
||||||
...mapActions(['loadTickets', 'fetchTicketStates', 'loadUsers', 'scheduleAfterInit']),
|
...mapActions(['loadTickets', 'fetchTicketStates', 'loadUsers', 'scheduleAfterInit']),
|
||||||
...mapActions(['claimShippingVoucher', 'fetchShippingVouchers']),
|
...mapActions(['claimShippingVoucher', 'fetchShippingVouchers']),
|
||||||
handleMail(mail) {
|
changeTicketStatus() {
|
||||||
this.sendMail({
|
this.ticket.state = this.selected_state;
|
||||||
id: this.ticket.id,
|
|
||||||
message: mail
|
|
||||||
})
|
|
||||||
},
|
|
||||||
handleComment(comment) {
|
|
||||||
this.postComment({
|
|
||||||
id: this.ticket.id,
|
|
||||||
message: comment
|
|
||||||
})
|
|
||||||
},
|
|
||||||
changeTicketStatus(ticket) {
|
|
||||||
ticket.state = this.selected_state;
|
|
||||||
this.updateTicketPartial({
|
this.updateTicketPartial({
|
||||||
id: ticket.id,
|
id: this.ticket.id,
|
||||||
state: this.selected_state,
|
state: this.selected_state,
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
assignTicket(ticket) {
|
assignTicket() {
|
||||||
ticket.assigned_to = this.selected_assignee;
|
this.ticket.assigned_to = this.selected_assignee;
|
||||||
this.updateTicketPartial({
|
this.updateTicketPartial({
|
||||||
id: ticket.id,
|
id: this.ticket.id,
|
||||||
assigned_to: this.selected_assignee
|
assigned_to: this.selected_assignee
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
sendMailAndClear: async function () {
|
||||||
|
await this.sendMail({
|
||||||
|
id: this.ticket.id,
|
||||||
|
message: this.newMail,
|
||||||
|
})
|
||||||
|
this.newMail = "";
|
||||||
|
},
|
||||||
|
addCommentAndClear: async function () {
|
||||||
|
await this.postComment({
|
||||||
|
id: this.ticket.id,
|
||||||
|
message: this.newComment
|
||||||
|
})
|
||||||
|
this.newComment = "";
|
||||||
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.scheduleAfterInit(() => [Promise.all([this.fetchTicketStates(), this.loadTickets(), this.loadUsers(), this.fetchShippingVouchers()]).then(() => {
|
this.scheduleAfterInit(() => [Promise.all([this.fetchTicketStates(), this.loadTickets(), this.loadUsers(), this.fetchShippingVouchers()]).then(() => {
|
||||||
if (this.ticket.state == "pending_new") {
|
if (this.ticket.state === "pending_new") {
|
||||||
this.selected_state = "pending_open";
|
this.selected_state = "pending_open";
|
||||||
this.changeTicketStatus(this.ticket)
|
this.changeTicketStatus()
|
||||||
}
|
}
|
||||||
;
|
|
||||||
this.selected_state = this.ticket.state;
|
this.selected_state = this.ticket.state;
|
||||||
this.selected_assignee = this.ticket.assigned_to
|
this.selected_assignee = this.ticket.assigned_to
|
||||||
})]);
|
})]);
|
||||||
|
|
|
@ -12,11 +12,11 @@
|
||||||
>
|
>
|
||||||
<template v-slot:actions="{item}">
|
<template v-slot:actions="{item}">
|
||||||
<div class="btn-group">
|
<div class="btn-group">
|
||||||
<a class="btn btn-primary" :href="'/'+ getEventSlug + '/ticket/' + item.id" title="view"
|
<router-link :to="{name: 'ticket', params: {id: item.id}}" class="btn btn-primary"
|
||||||
@click.prevent="gotoDetail(item)">
|
title="view">
|
||||||
<font-awesome-icon icon="eye"/>
|
<font-awesome-icon icon="eye"/>
|
||||||
View
|
View
|
||||||
</a>
|
</router-link>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</Table>
|
</Table>
|
||||||
|
@ -39,11 +39,11 @@
|
||||||
<td v-if="getEventSlug==='all'">{{ item.event }}</td>
|
<td v-if="getEventSlug==='all'">{{ item.event }}</td>
|
||||||
<td>
|
<td>
|
||||||
<div class="btn-group">
|
<div class="btn-group">
|
||||||
<a class="btn btn-primary" :href="'/'+ getEventSlug + '/ticket/' + item.id" title="view"
|
<router-link :to="{name: 'ticket', params: {id: item.id}}" class="btn btn-primary"
|
||||||
@click.prevent="gotoDetail(item)">
|
title="view">
|
||||||
<font-awesome-icon icon="eye"/>
|
<font-awesome-icon icon="eye"/>
|
||||||
View
|
View
|
||||||
</a>
|
</router-link>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
Loading…
Reference in a new issue