-
-
Notifications
You must be signed in to change notification settings - Fork 552
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
XWIKI-22165: Home page icons do not have a text alternative #3123
Open
Sereza7
wants to merge
10
commits into
xwiki:master
Choose a base branch
from
Sereza7:XWIKI-22165
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
9fc3b59
XWIKI-22165: Home page icons do not have a text alternative
Sereza7 fb87604
Merge branch 'xwiki:master' into XWIKI-22165
Sereza7 f1b8e50
XWIKI-22165: Home page icons do not have a text alternative
Sereza7 10f576c
XWIKI-22165: Home page icons do not have a text alternative
Sereza7 df42d34
Merge branch 'master' into XWIKI-22165
Sereza7 2f71bec
XWIKI-22165: Home page icons do not have a text alternative
Sereza7 a0815ef
Merge branch 'xwiki:master' into XWIKI-22165
Sereza7 7d12a73
XWIKI-22165: Home page icons do not have a text alternative
Sereza7 6ae4ff0
Merge branch 'xwiki:master' into XWIKI-22165
Sereza7 51edb3b
XWIKI-22165: Home page icons do not have a text alternative
Sereza7 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
64 changes: 64 additions & 0 deletions
64
...con/xwiki-platform-icon-macro/src/main/java/org/xwiki/icon/macro/internal/IconParser.java
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,64 @@ | ||
/* | ||
* See the NOTICE file distributed with this work for additional | ||
* information regarding copyright ownership. | ||
* | ||
* This 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 2.1 of | ||
* the License, or (at your option) any later version. | ||
* | ||
* This software 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 software; if not, write to the Free | ||
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA | ||
* 02110-1301 USA, or see the FSF site: http://www.fsf.org. | ||
*/ | ||
package org.xwiki.icon.macro.internal; | ||
|
||
import org.xwiki.icon.IconException; | ||
import org.xwiki.icon.IconRenderer; | ||
import org.xwiki.icon.IconSet; | ||
import org.xwiki.icon.macro.DisplayIconMacroParameters; | ||
import org.xwiki.model.reference.EntityReferenceSerializer; | ||
import org.xwiki.rendering.block.Block; | ||
import org.xwiki.rendering.block.ParagraphBlock; | ||
import org.xwiki.rendering.block.XDOM; | ||
import org.xwiki.rendering.listener.MetaData; | ||
import org.xwiki.rendering.macro.MacroContentParser; | ||
import org.xwiki.rendering.macro.MacroExecutionException; | ||
import org.xwiki.rendering.syntax.Syntax; | ||
import org.xwiki.rendering.transformation.MacroTransformationContext; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
|
||
class IconParser | ||
{ | ||
public XDOM parseIcon(DisplayIconMacroParameters parameters, MacroTransformationContext context, | ||
IconSet iconSet, MacroContentParser parser, | ||
EntityReferenceSerializer<String> defaultEntityReferenceSerializer, | ||
IconRenderer iconRenderer) | ||
throws IconException, MacroExecutionException | ||
{ | ||
String iconContent = iconRenderer.render(parameters.getName(), iconSet); | ||
MetaData metaData = null; | ||
|
||
if (iconSet.getSourceDocumentReference() != null) { | ||
String stringReference = defaultEntityReferenceSerializer.serialize(iconSet.getSourceDocumentReference()); | ||
metaData = new MetaData(Map.of(MetaData.SOURCE, stringReference)); | ||
} | ||
|
||
XDOM iconXDOM = parser.parse(iconContent, Syntax.XWIKI_2_1, context, false, metaData, true); | ||
if (!context.isInline()) { | ||
// Wrap the children of the XDOM in a paragraph. We don't ask the parser to produce block content as | ||
// icons should always be inline, and some icons are defined as raw inline HTML. | ||
Block wrapper = new ParagraphBlock(iconXDOM.getChildren()); | ||
iconXDOM.setChildren(List.of(wrapper)); | ||
} | ||
return iconXDOM; | ||
} | ||
} |
67 changes: 67 additions & 0 deletions
67
...iki-platform-icon-macro/src/main/java/org/xwiki/icon/macro/internal/IconSetRetriever.java
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 @@ | ||
/* | ||
* See the NOTICE file distributed with this work for additional | ||
* information regarding copyright ownership. | ||
* | ||
* This 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 2.1 of | ||
* the License, or (at your option) any later version. | ||
* | ||
* This software 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 software; if not, write to the Free | ||
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA | ||
* 02110-1301 USA, or see the FSF site: http://www.fsf.org. | ||
*/ | ||
package org.xwiki.icon.macro.internal; | ||
|
||
import org.xwiki.bridge.DocumentAccessBridge; | ||
import org.xwiki.icon.IconException; | ||
import org.xwiki.icon.IconSet; | ||
import org.xwiki.icon.IconSetManager; | ||
import org.xwiki.icon.macro.DisplayIconMacroParameters; | ||
import org.xwiki.rendering.macro.MacroExecutionException; | ||
import org.xwiki.security.authorization.ContextualAuthorizationManager; | ||
import org.xwiki.security.authorization.Right; | ||
|
||
|
||
class IconSetRetriever | ||
{ | ||
public IconSet getIconSet(DisplayIconMacroParameters parameters, | ||
IconSetManager iconSetManager, DocumentAccessBridge documentAccessBridge, | ||
ContextualAuthorizationManager contextualAuthorization) | ||
throws IconException, MacroExecutionException | ||
{ | ||
IconSet iconSet; | ||
|
||
if (parameters.getIconSet() == null) { | ||
iconSet = iconSetManager.getCurrentIconSet(); | ||
} else { | ||
iconSet = iconSetManager.getIconSet(parameters.getIconSet()); | ||
} | ||
|
||
// Check if the current user can access the icon theme. If not, fall back to the default icon theme or throw | ||
// an exception when the fallback is disabled. | ||
if (iconSet != null && iconSet.getSourceDocumentReference() != null | ||
&& !contextualAuthorization.hasAccess(Right.VIEW, iconSet.getSourceDocumentReference())) | ||
{ | ||
if (parameters.isFallback()) { | ||
iconSet = null; | ||
} else { | ||
throw new MacroExecutionException( | ||
String.format("Current user [%s] doesn't have view rights on the icon set's document [%s]", | ||
documentAccessBridge.getCurrentUserReference(), iconSet.getSourceDocumentReference())); | ||
} | ||
} | ||
|
||
if (parameters.isFallback() && (iconSet == null || !iconSet.hasIcon(parameters.getName()))) { | ||
iconSet = iconSetManager.getDefaultIconSet(); | ||
} | ||
|
||
return iconSet; | ||
} | ||
} |
23 changes: 23 additions & 0 deletions
23
...e/xwiki-platform-icon/xwiki-platform-icon-macro/src/test/resources/macrodisplayicon6.test
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,23 @@ | ||
.runTransformations | ||
.#----------------------------------------------------- | ||
.input|xwiki/2.1 | ||
.# Verify the text alternative functionality | ||
.#----------------------------------------------------- | ||
{{displayIcon name="home" textAlternative="Home" /}} | ||
.#----------------------------------------------------- | ||
.expect|event/1.0 | ||
.#----------------------------------------------------- | ||
beginDocument | ||
beginMacroMarkerStandalone [displayIcon] [name=home|textAlternative=Home] | ||
beginMetaData [[syntax]=[XWiki 2.1]] | ||
beginParagraph | ||
beginFormat [NONE] [[class]=[icon][data-xwiki-icon]=[homeIcon]] | ||
onWord [i] | ||
endFormat [NONE] [[class]=[icon][data-xwiki-icon]=[homeIcon]] | ||
endParagraph | ||
endMetaData [[syntax]=[XWiki 2.1]] | ||
beginFormat [NONE] [[class]=[sr-only]] | ||
onWord [Home] | ||
endFormat [NONE] [[class]=[sr-only]] | ||
endMacroMarkerStandalone [displayIcon] [name=home|textAlternative=Home] | ||
endDocument |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Sereza7 have you tried to build this module with the quality profile? It's an API it seems, and you're missing unstable annotations I think. And I'm surprised revapi is not complaining at all.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adding methods to a class isn't breaking anything, so I wouldn't expect any errors.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right, not an interface. Still missing the unstable annotations then.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
With the quality profile, I hit the ClassFanOutComplexity on DisplayIconMacro, working on fixing it...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added the Unstable annotation in 7d12a73 👍
Also reduced the fanout complexity by choosing to use a paragraph block instead of a FormatBlock for the text alternative. Now passes
mvn clean install -f xwiki-platform-core/xwiki-platform-icon/xwiki-platform-icon-macro -Pquality
successfully.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm sorry but using a paragraph block for the text alternative is not okay, you cannot nest a paragraph inside another paragraph and the icon macro needs to be usable in a paragraph.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reverted this change of block nature in 51edb3b .
Instead of this, I set some methods in their own class in order to reduce the ClassFanOutComplexity of DisplayIconMacro.
The PR with these new changes pass quality tests :)
mvn clean install -f xwiki-platform-core/xwiki-platform-icon/xwiki-platform-icon-macro -Pquality
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I went with a solution without components since those methods are quite specific and I don't think they'd need to be reused in another context.