-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…o/MIPs#159 (#4210) Add button from Spaces List drawer to access Space Form Drawer.
- Loading branch information
Showing
12 changed files
with
159 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
/* | ||
* This file is part of the Meeds project (https://meeds.io/). | ||
* | ||
* Copyright (C) 2020 - 2024 Meeds Association [email protected] | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU Lesser General Public | ||
* License as published by the Free Software Foundation; either | ||
* version 3 of the License, or (at your option) any later version. | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with this program; if not, write to the Free Software Foundation, | ||
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
*/ | ||
import './initComponents.js'; | ||
import './services.js'; | ||
|
||
// get overridden components if exists | ||
if (extensionRegistry) { | ||
const components = extensionRegistry.loadComponents('SpaceTemplatesManagement'); | ||
if (components && components.length > 0) { | ||
components.forEach(cmp => { | ||
Vue.component(cmp.componentName, cmp.componentOptions); | ||
}); | ||
} | ||
} | ||
|
||
const appId = 'spaceFormDrawer'; | ||
const lang = eXo?.env.portal.language || 'en'; | ||
const url = `/social/i18n/locale.portlet.social.SpacesListApplication?lang=${lang}`; | ||
|
||
export function open(templateId, isExternalFeatureEnabled) { | ||
if (window.spaceFormAdded) { | ||
document.dispatchEvent(new CustomEvent('addNewSpace', {detail: templateId})); | ||
} else { | ||
const spaceFormElement = document.createElement('div'); | ||
spaceFormElement.setAttribute('id', appId); | ||
document.querySelector('#vuetify-apps').append(spaceFormElement); | ||
return exoi18n.loadLanguageAsync(lang, url) | ||
.then(i18n => | ||
Vue.createApp({ | ||
data: { | ||
isExternalFeatureEnabled, | ||
collator: new Intl.Collator(eXo.env.portal.language, { | ||
numeric: true, | ||
sensitivity: 'base' | ||
}), | ||
}, | ||
computed: { | ||
isMobile() { | ||
return this.$vuetify.breakpoint.mobile; | ||
}, | ||
}, | ||
mounted() { | ||
this.$root.$emit('addNewSpace', templateId); | ||
}, | ||
template: '<space-form-drawer />', | ||
vuetify: Vue.prototype.vuetifyOptions, | ||
i18n, | ||
}, spaceFormElement, 'Space Form') | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/* | ||
* This file is part of the Meeds project (https://meeds.io/). | ||
* | ||
* Copyright (C) 2020 - 2024 Meeds Association [email protected] | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU Lesser General Public | ||
* License as published by the Free Software Foundation; either | ||
* version 3 of the License, or (at your option) any later version. | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with this program; if not, write to the Free Software Foundation, | ||
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
*/ | ||
|
||
import * as spaceTemplateService from '../space-templates-management/js/SpaceTemplateService.js'; | ||
|
||
if (!Vue.prototype.$spaceTemplateService) { | ||
window.Object.defineProperty(Vue.prototype, '$spaceTemplateService', { | ||
value: spaceTemplateService, | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters