Skip to content
Snippets Groups Projects
Commit e39cbe9f authored by chris's avatar chris
Browse files

add aria labels

parent 67d09bf1
No related branches found
No related tags found
1 merge request!458Hhmi accessibility
This commit is part of merge request !458. Comments created here will be created in the context of that merge request.
...@@ -264,6 +264,7 @@ export default ({ node, view, getPos }) => { ...@@ -264,6 +264,7 @@ export default ({ node, view, getPos }) => {
{option.label}   {option.label}  
{!readOnly && ( {!readOnly && (
<ActionButton <ActionButton
aria-label={`delete ${option.label}`}
onClick={() => removeOption(option.value)} onClick={() => removeOption(option.value)}
ref={setRef(option.value)} ref={setRef(option.value)}
type="button" type="button"
...@@ -289,7 +290,12 @@ export default ({ node, view, getPos }) => { ...@@ -289,7 +290,12 @@ export default ({ node, view, getPos }) => {
type="text" type="text"
value={optionText} value={optionText}
/> />
<button onClick={addOption} ref={addOptionBtnRef} type="button"> <button
aria-label="add new option"
onClick={addOption}
ref={addOptionBtnRef}
type="button"
>
Add Option Add Option
</button> </button>
</AddOption> </AddOption>
......
...@@ -120,11 +120,19 @@ export default ({ node, view, getPos }) => { ...@@ -120,11 +120,19 @@ export default ({ node, view, getPos }) => {
<Option> <Option>
{!readOnly && ( {!readOnly && (
<ButtonsContainer> <ButtonsContainer>
<ActionButton onClick={addAnswer} type="button"> <ActionButton
aria-label="add new option"
onClick={addAnswer}
type="button"
>
<StyledIconAction name="plusSquare" /> <StyledIconAction name="plusSquare" />
</ActionButton> </ActionButton>
{!node.attrs.isfirst && ( {!node.attrs.isfirst && (
<ActionButton onClick={removeAnswer} type="button"> <ActionButton
aria-label="delete this option"
onClick={removeAnswer}
type="button"
>
<StyledIconAction name="deleteOutlined" /> <StyledIconAction name="deleteOutlined" />
</ActionButton> </ActionButton>
)} )}
......
...@@ -230,6 +230,7 @@ export default ({ node, view, getPos }) => { ...@@ -230,6 +230,7 @@ export default ({ node, view, getPos }) => {
<IconsWrapper> <IconsWrapper>
{!readOnly && ( {!readOnly && (
<ActionButton <ActionButton
aria-label="add new option"
onClick={() => addOption(node.attrs.id)} onClick={() => addOption(node.attrs.id)}
ref={addOptionBtnRef} ref={addOptionBtnRef}
type="button" type="button"
...@@ -239,6 +240,7 @@ export default ({ node, view, getPos }) => { ...@@ -239,6 +240,7 @@ export default ({ node, view, getPos }) => {
)} )}
{!readOnly && ( {!readOnly && (
<ActionButton <ActionButton
aria-label="delete this option"
onClick={removeOption} onClick={removeOption}
ref={removeOptionBtnRef} ref={removeOptionBtnRef}
type="button" type="button"
......
...@@ -230,6 +230,7 @@ export default ({ node, view, getPos }) => { ...@@ -230,6 +230,7 @@ export default ({ node, view, getPos }) => {
<IconsWrapper> <IconsWrapper>
{!readOnly && ( {!readOnly && (
<ActionButton <ActionButton
aria-label="add new option"
onClick={() => addOption(node.attrs.id)} onClick={() => addOption(node.attrs.id)}
ref={addOptionBtnRef} ref={addOptionBtnRef}
type="button" type="button"
...@@ -239,6 +240,7 @@ export default ({ node, view, getPos }) => { ...@@ -239,6 +240,7 @@ export default ({ node, view, getPos }) => {
)} )}
{!readOnly && ( {!readOnly && (
<ActionButton <ActionButton
aria-label="delete this option"
onClick={removeOption} onClick={removeOption}
ref={removeOptionBtnRef} ref={removeOptionBtnRef}
type="button" type="button"
......
...@@ -230,6 +230,7 @@ export default ({ node, view, getPos }) => { ...@@ -230,6 +230,7 @@ export default ({ node, view, getPos }) => {
<IconsWrapper> <IconsWrapper>
{!readOnly && ( {!readOnly && (
<ActionButton <ActionButton
aria-label="add new option"
onClick={() => addOption(node.attrs.id)} onClick={() => addOption(node.attrs.id)}
ref={addOptionBtnRef} ref={addOptionBtnRef}
type="button" type="button"
...@@ -239,6 +240,7 @@ export default ({ node, view, getPos }) => { ...@@ -239,6 +240,7 @@ export default ({ node, view, getPos }) => {
)} )}
{!readOnly && ( {!readOnly && (
<ActionButton <ActionButton
aria-label="delete this option"
onClick={removeOption} onClick={removeOption}
ref={removeOptionBtnRef} ref={removeOptionBtnRef}
type="button" type="button"
......
...@@ -228,6 +228,7 @@ export default ({ node, view, getPos }) => { ...@@ -228,6 +228,7 @@ export default ({ node, view, getPos }) => {
<IconsWrapper> <IconsWrapper>
{!readOnly && ( {!readOnly && (
<ActionButton <ActionButton
aria-label="add new option"
onClick={() => addOption(node.attrs.id)} onClick={() => addOption(node.attrs.id)}
ref={addOptionBtnRef} ref={addOptionBtnRef}
type="button" type="button"
...@@ -237,6 +238,7 @@ export default ({ node, view, getPos }) => { ...@@ -237,6 +238,7 @@ export default ({ node, view, getPos }) => {
)} )}
{!readOnly && ( {!readOnly && (
<ActionButton <ActionButton
aria-label="delete this option"
onClick={removeOption} onClick={removeOption}
ref={removeOptionBtnRef} ref={removeOptionBtnRef}
type="button" type="button"
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment