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

hhmi fixes

parent 3786fb05
No related branches found
No related tags found
No related merge requests found
...@@ -22,7 +22,8 @@ const DropDownButton = styled.button` ...@@ -22,7 +22,8 @@ const DropDownButton = styled.button`
background: #fff; background: #fff;
border: none; border: none;
color: #000; color: #000;
cursor: ${props => (props.disabled ? `cursor` : `pointer`)}; cursor: ${props => (props.disabled ? 'not-allowed' : 'pointer')};
opacity: ${props => (props.disabled ? `0.4` : `1`)};
display: flex; display: flex;
position: relative; position: relative;
width: 160px; width: 160px;
...@@ -81,7 +82,8 @@ const DropComponent = ({ getPos, node, view, uniqueId }) => { ...@@ -81,7 +82,8 @@ const DropComponent = ({ getPos, node, view, uniqueId }) => {
return editable; return editable;
}); });
const isDisabled = !isEditable; let isDisabled = !isEditable;
if (node.attrs.options.length === 0) isDisabled = true;
const onChange = option => { const onChange = option => {
const allNodes = getNodes(main); const allNodes = getNodes(main);
...@@ -117,8 +119,8 @@ const DropComponent = ({ getPos, node, view, uniqueId }) => { ...@@ -117,8 +119,8 @@ const DropComponent = ({ getPos, node, view, uniqueId }) => {
const onKeyDown = (e, index) => { const onKeyDown = (e, index) => {
e.preventDefault(); e.preventDefault();
// arrow down
if (e.keyCode === 40) { if (e.keyCode === 40) {
// arrow down
if (index === itemRefs.current.length - 1) { if (index === itemRefs.current.length - 1) {
itemRefs.current[0].current.focus(); itemRefs.current[0].current.focus();
} else { } else {
...@@ -128,7 +130,10 @@ const DropComponent = ({ getPos, node, view, uniqueId }) => { ...@@ -128,7 +130,10 @@ const DropComponent = ({ getPos, node, view, uniqueId }) => {
// arrow up // arrow up
if (e.keyCode === 38) { if (e.keyCode === 38) {
if (index === 0) { if (
index === 0 &&
itemRefs.current[itemRefs.current.length - 1].current
) {
itemRefs.current[itemRefs.current.length - 1].current.focus(); itemRefs.current[itemRefs.current.length - 1].current.focus();
} else { } else {
itemRefs.current[index - 1].current.focus(); itemRefs.current[index - 1].current.focus();
...@@ -162,6 +167,7 @@ const DropComponent = ({ getPos, node, view, uniqueId }) => { ...@@ -162,6 +167,7 @@ const DropComponent = ({ getPos, node, view, uniqueId }) => {
disabled={isDisabled} disabled={isDisabled}
onKeyDown={e => { onKeyDown={e => {
if (e.keyCode === 40) { if (e.keyCode === 40) {
if (!itemRefs.current[0].current) return;
itemRefs.current[0].current.focus(); itemRefs.current[0].current.focus();
} }
if (e.keyCode === 27) { if (e.keyCode === 27) {
...@@ -205,7 +211,7 @@ const DropComponent = ({ getPos, node, view, uniqueId }) => { ...@@ -205,7 +211,7 @@ const DropComponent = ({ getPos, node, view, uniqueId }) => {
</DropDownMenu> </DropDownMenu>
</Wrapper> </Wrapper>
); );
}, [node.attrs.options, selectedOption, isOpen]); }, [node.attrs.options, selectedOption, isOpen, isDisabled]);
return MultipleDropDown; return MultipleDropDown;
}; };
......
...@@ -23,7 +23,7 @@ export default class MultipleDropDownContainerNodeView extends QuestionsNodeView ...@@ -23,7 +23,7 @@ export default class MultipleDropDownContainerNodeView extends QuestionsNodeView
} }
stopEvent(event) { stopEvent(event) {
if (event.target.type === 'textarea') { if (event.target.type === 'textarea' || event.target.type === 'text') {
return true; return true;
} }
const innerView = this.context.pmViews[this.node.attrs.id]; const innerView = this.context.pmViews[this.node.attrs.id];
......
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