mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-25 21:39:21 +00:00
Show which groups are Forez groups
This commit is contained in:
parent
09df12759a
commit
8705fc6581
@ -9,7 +9,7 @@ const GroupSectionHeader = {
|
|||||||
/**
|
/**
|
||||||
* Display groups page header
|
* Display groups page header
|
||||||
*
|
*
|
||||||
* @param {Object} info Information about the group to display
|
* @param {AdvancedGroupInfo} info Information about the group to display
|
||||||
* @param {HTMLElement} target The target for the header
|
* @param {HTMLElement} target The target for the header
|
||||||
*/
|
*/
|
||||||
display: function(info, target){
|
display: function(info, target){
|
||||||
@ -89,6 +89,14 @@ const GroupSectionHeader = {
|
|||||||
class: "col-md-7 col-metadata"
|
class: "col-md-7 col-metadata"
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Forez group
|
||||||
|
if (info.is_forez_group) {
|
||||||
|
createElem2({
|
||||||
|
appendTo: thirdColumn,
|
||||||
|
type: "div",
|
||||||
|
innerHTML: "<span><i class='fa fa-leaf'></i> Forez Group</span>"
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
// Display membership level
|
// Display membership level
|
||||||
ComunicWeb.pages.groups.sections.membershipBlock.display(info, thirdColumn);
|
ComunicWeb.pages.groups.sections.membershipBlock.display(info, thirdColumn);
|
||||||
@ -97,6 +105,7 @@ const GroupSectionHeader = {
|
|||||||
if(signed_in() && ComunicWeb.components.groups.utils.isGroupMember(info))
|
if(signed_in() && ComunicWeb.components.groups.utils.isGroupMember(info))
|
||||||
ComunicWeb.pages.groups.sections.followBlock.display(info, thirdColumn);
|
ComunicWeb.pages.groups.sections.followBlock.display(info, thirdColumn);
|
||||||
|
|
||||||
|
// Likes block
|
||||||
ComunicWeb.components.like.button.display(
|
ComunicWeb.components.like.button.display(
|
||||||
"group",
|
"group",
|
||||||
info.id,
|
info.id,
|
||||||
@ -107,7 +116,6 @@ const GroupSectionHeader = {
|
|||||||
type: "div"
|
type: "div"
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
};
|
};
|
||||||
|
1
assets/js/typings/Group.d.ts
vendored
1
assets/js/typings/Group.d.ts
vendored
@ -12,6 +12,7 @@ declare interface AdvancedGroupInfo extends Group {
|
|||||||
number_likes: Number,
|
number_likes: Number,
|
||||||
is_liking: Boolean,
|
is_liking: Boolean,
|
||||||
conversations: Conversation[],
|
conversations: Conversation[],
|
||||||
|
is_forez_group: boolean,
|
||||||
}
|
}
|
||||||
|
|
||||||
declare interface GroupSettings extends AdvancedGroupInfo {}
|
declare interface GroupSettings extends AdvancedGroupInfo {}
|
Loading…
Reference in New Issue
Block a user