Changes for page Profile of XWikiUserSheet
Last modified by Ludovic Dubost on 2024/07/22 15:51
From version 3.1
edited by Thomas Mortagne
on 2014/09/29 12:41
on 2014/09/29 12:41
Change comment:
Install extension [org.xwiki.platform:xwiki-platform-user-profile-ui-6.2]
To version 4.1
edited by Ludovic Dubost
on 2015/09/01 11:46
on 2015/09/01 11:46
Change comment:
Install extension [org.xwiki.platform:xwiki-platform-user-profile-ui-7.1]
Summary
-
Page properties (1 modified, 0 added, 0 removed)
-
Objects (2 modified, 0 added, 0 removed)
Details
- Page properties
-
- Author
-
... ... @@ -1,1 +1,1 @@ 1 -xwiki:XWiki. ThomasMortagne1 +xwiki:XWiki.ludovic
- XWiki.JavaScriptExtension[0]
-
- Code
-
... ... @@ -11,7 +11,7 @@ 11 11 this.tabsContainer.select('.category-tab').each(function (tabElement) { 12 12 tabElement.observe('click', function(event) { 13 13 Event.stop(event); 14 - this.switchTab(tabElement.id); 14 + this.switchTab(tabElement.id, true); 15 15 }.bindAsEventListener(this)); 16 16 }.bind(this)); 17 17 this.tabsContainer.select('.category-tab.current').each(function (activeTab) { ... ... @@ -19,9 +19,20 @@ 19 19 document.fire('xwiki:profile:switchedCategory', {'category' : activeTab.id}); 20 20 }.bind(this)); 21 21 this.handleCancelAction(); 22 + 23 + // History navigation through our pushed states. 24 + window.addEventListener('popstate', function(event) { 25 + if (event.state && event.state.category) { 26 + this.switchTab('vertical-menu-' + event.state.category); 27 + } 28 + }.bindAsEventListener(this)); 29 + // Store the initial history state so we can go back. 30 + history.replaceState({ 31 + category: window.location.search.toQueryParams().category || 'profile' 32 + }, document.title, document.location.href); 22 22 }, 23 23 24 - switchTab : function(tab) { 35 + switchTab : function(tab, pushHistory) { 25 25 var tabName = tab.substring(14); // 14 = len('vertical-menu-') 26 26 $("user-page-content").select("div.user-page-pane").each(function(pane){ 27 27 pane.addClassName('hidden'); ... ... @@ -32,6 +32,9 @@ 32 32 }); 33 33 $(tab).addClassName('current'); 34 34 this.updateCategoryFields(tab); 46 + if (pushHistory) { 47 + this.updateURL(tabName); 48 + } 35 35 document.fire('xwiki:profile:switchedCategory', {'category' : tab}); 36 36 }, 37 37 ... ... @@ -43,6 +43,17 @@ 43 43 this.updateField('category', category); 44 44 }, 45 45 60 + updateURL : function (category) { 61 + if (history.pushState) { 62 + var params = window.location.search.toQueryParams(); 63 + params.category = category; 64 + newQueryString = Object.toQueryString(params); 65 + 66 + var newURL = window.location.protocol + '//' + window.location.host + window.location.pathname + '?' + newQueryString; 67 + window.history.pushState({category : category}, '', newURL); 68 + } 69 + }, 70 + 46 46 updateField : function (fieldName, value) { 47 47 var element = $$('input[name=' + fieldName + ']'); 48 48 if (element && element.size() > 0) {
- XWiki.StyleSheetExtension[0]
-
- Code
-
... ... @@ -6,6 +6,10 @@ 6 6 width: 13em; 7 7 } 8 8 9 +#avatar p { 10 + text-align: center; 11 +} 12 + 9 9 #avatar img { 10 10 border: 1px solid $theme.borderColor; 11 11 border-radius: 5px 5px 5px 5px;