Revert "FEATURE: Send notification when member was accepted to group. (#7503)"

This reverts commit 42c82d544ecfe138da5b0b5a336be2109179cf26.
This commit is contained in:
Penar Musaraj
2019-05-27 15:19:59 -04:00
parent c108131ad4
commit dfcc2e7ad8
9 changed files with 14 additions and 40 deletions

View File

@ -35,8 +35,7 @@ const REPLACEMENTS = {
"notification.topic_reminder": "far-clock", "notification.topic_reminder": "far-clock",
"notification.watching_first_post": "far-dot-circle", "notification.watching_first_post": "far-dot-circle",
"notification.group_message_summary": "group", "notification.group_message_summary": "group",
"notification.post_approved": "check", "notification.post_approved": "check"
"notification.group_invite": "user-plus"
}; };
// TODO: use lib/svg_sprite/fa4-renames.json here // TODO: use lib/svg_sprite/fa4-renames.json here

View File

@ -1,3 +0,0 @@
<% Notification.types.each do |key, value| %>
export const <%= key.upcase %>_TYPE = <%= value %>;
<% end %>

View File

@ -10,15 +10,13 @@ import {
formatUsername formatUsername
} from "discourse/lib/utilities"; } from "discourse/lib/utilities";
import { setTransientHeader } from "discourse/lib/ajax"; import { setTransientHeader } from "discourse/lib/ajax";
import { groupPath, userPath } from "discourse/lib/url"; import { userPath } from "discourse/lib/url";
import { iconNode } from "discourse-common/lib/icon-library"; import { iconNode } from "discourse-common/lib/icon-library";
import {
LIKED_TYPE, const LIKED_TYPE = 5;
INVITED_TYPE, const INVITED_TYPE = 8;
GROUP_SUMMARY_TYPE, const GROUP_SUMMARY_TYPE = 16;
LIKED_CONSOLIDATED_TYPE, export const LIKED_CONSOLIDATED_TYPE = 19;
GROUP_INVITE_TYPE
} from "discourse/components/concerns/notification-types";
createWidget("notification-item", { createWidget("notification-item", {
tagName: "li", tagName: "li",
@ -74,10 +72,6 @@ createWidget("notification-item", {
); );
} }
if (attrs.notification_type === GROUP_INVITE_TYPE) {
return groupPath(data.group_name);
}
if (data.group_id) { if (data.group_id) {
return userPath(data.username + "/messages/group/" + data.group_name); return userPath(data.username + "/messages/group/" + data.group_name);
} }
@ -120,11 +114,8 @@ createWidget("notification-item", {
if (notificationType === GROUP_SUMMARY_TYPE) { if (notificationType === GROUP_SUMMARY_TYPE) {
const count = data.inbox_count; const count = data.inbox_count;
const groupName = data.group_name; const group_name = data.group_name;
return I18n.t(scope, { count, group_name: groupName }); return I18n.t(scope, { count, group_name });
} else if (notificationType === GROUP_INVITE_TYPE) {
const groupName = data.group_name;
return I18n.t(scope, { group_name: groupName });
} }
const username = formatUsername(data.display_username); const username = formatUsername(data.display_username);

View File

@ -341,7 +341,7 @@ class GroupsController < ApplicationController
raise Discourse::InvalidParameters.new(:user_id) if user.blank? raise Discourse::InvalidParameters.new(:user_id) if user.blank?
if params[:accept] if params[:accept]
group.add(user, notify: true) group.add(user)
GroupActionLogger.new(current_user, group).log_add_user_to_group(user) GroupActionLogger.new(current_user, group).log_add_user_to_group(user)
end end

View File

@ -506,20 +506,9 @@ class Group < ActiveRecord::Base
PUBLISH_CATEGORIES_LIMIT = 10 PUBLISH_CATEGORIES_LIMIT = 10
def add(user, notify: false) def add(user)
self.users.push(user) unless self.users.include?(user) self.users.push(user) unless self.users.include?(user)
if notify
Notification.create!(
notification_type: Notification.types[:group_invite],
user_id: user.id,
data: {
group_id: id,
group_name: name
}.to_json
)
end
if self.categories.count < PUBLISH_CATEGORIES_LIMIT if self.categories.count < PUBLISH_CATEGORIES_LIMIT
MessageBus.publish('/categories', { MessageBus.publish('/categories', {
categories: ActiveModel::ArraySerializer.new(self.categories).as_json categories: ActiveModel::ArraySerializer.new(self.categories).as_json

View File

@ -63,8 +63,7 @@ class Notification < ActiveRecord::Base
watching_first_post: 17, watching_first_post: 17,
topic_reminder: 18, topic_reminder: 18,
liked_consolidated: 19, liked_consolidated: 19,
post_approved: 20, post_approved: 20
group_invite: 21
) )
end end

View File

@ -1689,7 +1689,6 @@ en:
granted_badge: "Earned '{{description}}'" granted_badge: "Earned '{{description}}'"
topic_reminder: "<span>{{username}}</span> {{description}}" topic_reminder: "<span>{{username}}</span> {{description}}"
watching_first_post: "<span>New Topic</span> {{description}}" watching_first_post: "<span>New Topic</span> {{description}}"
group_invite: "Invited to '{{group_name}}'"
group_message_summary: group_message_summary:
one: "{{count}} message in your {{group_name}} inbox" one: "{{count}} message in your {{group_name}} inbox"

View File

@ -1,5 +1,5 @@
/*jshint maxlen:10000000 */ /*jshint maxlen:10000000 */
import { LIKED_CONSOLIDATED_TYPE } from "discourse/components/concerns/notification-types"; import { LIKED_CONSOLIDATED_TYPE } from "discourse/widgets/notification-item";
export default { export default {
"/notifications": { "/notifications": {

View File

@ -1,4 +1,4 @@
import { LIKED_CONSOLIDATED_TYPE } from "discourse/components/concerns/notification-types"; import { LIKED_CONSOLIDATED_TYPE } from "discourse/widgets/notification-item";
export default { export default {
"site.json": { "site.json": {