From 3d4779c2af6825b53c60564720cef693f9146bd3 Mon Sep 17 00:00:00 2001 From: luNunezProcessmaker Date: Thu, 25 Jul 2024 16:24:25 -0400 Subject: [PATCH 1/7] feature/FOUR-17027 --- .../components/NotificationsList.vue | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/resources/js/notifications/components/NotificationsList.vue b/resources/js/notifications/components/NotificationsList.vue index f11e10e4f5..3e73436028 100644 --- a/resources/js/notifications/components/NotificationsList.vue +++ b/resources/js/notifications/components/NotificationsList.vue @@ -27,7 +27,19 @@ -
+ + + +
import moment from "moment"; import datatableMixin from "../../components/common/mixins/datatable"; +import dataLoadingMixin from "../../components/common/mixins/apiDataLoading"; import AvatarImage from "../../components/AvatarImage"; import NotificationMessage from "./notification-message"; import NotificationUser from "./notification-user"; @@ -115,7 +128,7 @@ export default { NotificationUser, AvatarImage, }, - mixins: [datatableMixin], + mixins: [datatableMixin, dataLoadingMixin], props: ["filter", "filterComments", "type", "showTime"], data() { return { @@ -123,6 +136,7 @@ export default { orderBy: "", showTime: true, sortOrder: [], + loading: false, fields: [ { title: () => this.$t("Status"), From b1117c213808219d4ea058047d4157e1788d5f8c Mon Sep 17 00:00:00 2001 From: luNunezProcessmaker Date: Thu, 25 Jul 2024 16:27:18 -0400 Subject: [PATCH 2/7] feature/FOUR-17027 --- resources/js/notifications/components/NotificationsList.vue | 2 -- 1 file changed, 2 deletions(-) diff --git a/resources/js/notifications/components/NotificationsList.vue b/resources/js/notifications/components/NotificationsList.vue index 3e73436028..325dd35f99 100644 --- a/resources/js/notifications/components/NotificationsList.vue +++ b/resources/js/notifications/components/NotificationsList.vue @@ -27,7 +27,6 @@
- -
Date: Fri, 26 Jul 2024 16:42:50 -0400 Subject: [PATCH 3/7] feature/FOUR-17027 --- resources/js/notifications/components/NotificationsList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/js/notifications/components/NotificationsList.vue b/resources/js/notifications/components/NotificationsList.vue index 325dd35f99..fa8bb40d34 100644 --- a/resources/js/notifications/components/NotificationsList.vue +++ b/resources/js/notifications/components/NotificationsList.vue @@ -35,7 +35,7 @@ empty-icon="noData" />
Date: Wed, 31 Jul 2024 16:19:46 -0400 Subject: [PATCH 4/7] feature/FOUR-17027 --- resources/js/notifications/components/NotificationsList.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/resources/js/notifications/components/NotificationsList.vue b/resources/js/notifications/components/NotificationsList.vue index fa8bb40d34..d624718914 100644 --- a/resources/js/notifications/components/NotificationsList.vue +++ b/resources/js/notifications/components/NotificationsList.vue @@ -132,7 +132,6 @@ export default { return { response: null, orderBy: "", - showTime: true, sortOrder: [], loading: false, fields: [ From 31bd85553c7ee331564394e7c1f11b0423def204 Mon Sep 17 00:00:00 2001 From: luNunezProcessmaker Date: Thu, 1 Aug 2024 12:17:45 -0400 Subject: [PATCH 5/7] feature/FOUR-17027 --- .../components/NotificationsList.vue | 194 +++++++++--------- 1 file changed, 98 insertions(+), 96 deletions(-) diff --git a/resources/js/notifications/components/NotificationsList.vue b/resources/js/notifications/components/NotificationsList.vue index d624718914..9dbea4d886 100644 --- a/resources/js/notifications/components/NotificationsList.vue +++ b/resources/js/notifications/components/NotificationsList.vue @@ -1,123 +1,125 @@