ComunicWeb/assets/js/pages/groups/sections/tabs.js

42 lines
1.2 KiB
JavaScript
Raw Normal View History

2021-03-15 17:04:20 +00:00
/**
* Group tags
*
* @author Pierre Hubert
*/
const GroupTabs = {
/**
* @param {AdvancedGroupInfo} group Group information
* @param {HTMLElement} target Target
* @param {String} activePage Current active page
* @param {String} firstArg First argument passed after page (if any)
2021-03-15 17:04:20 +00:00
*/
show: async function(group, target, activePage, firstArgument) {
2021-03-15 17:04:20 +00:00
// Load template
const tpl = await Page.loadHTMLTemplate("pages/groups/sections/GroupTabs.html");
const el = document.createElement("div")
el.innerHTML = tpl;
target.appendChild(el);
Vue.createApp({
data: () => {
return {
isAdmin: group.membership == "administrator",
canSeeMembers: group.is_members_list_public || group.membership == "administrator" || group.membership == "moderator",
activePage: activePage,
firstArgument: firstArgument,
conversations: group.conversations,
2021-04-21 14:48:50 +00:00
is_forez: group.is_forez_group
2021-03-15 17:04:20 +00:00
}
},
methods: {
openPage: (uri) => openPage("groups/" + group.id + "/" + uri)
}
}).mount(el);
}
}