Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [1841](https://github.com/microsoft/BotFramework-Emulator/pull/1841)
- [1842](https://github.com/microsoft/BotFramework-Emulator/pull/1842)
- [1843](https://github.com/microsoft/BotFramework-Emulator/pull/1843)
- [1844](https://github.com/microsoft/BotFramework-Emulator/pull/1844)
- [1845](https://github.com/microsoft/BotFramework-Emulator/pull/1845)

- [client] Fixed an issue with the transcripts path input inside of the resource settings dialog in PR [1836](https://github.com/microsoft/BotFramework-Emulator/pull/1836)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ describe('<EmulatorContainer/>', () => {
const defaultView = instance.renderDefaultView();

expect(defaultView).not.toBeNull();
expect(defaultView.key).toEqual('convo1');
expect(defaultView.props.children[1].key).toEqual('convo1');
});

it('should get the veritcal splitter sizes', () => {
Expand Down
18 changes: 10 additions & 8 deletions packages/app/client/src/ui/editor/emulator/emulator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ export class Emulator extends React.Component<EmulatorProps, {}> {

const { mode, document } = this.props;
return (
<div className={styles.emulator} key={this.getConversationId()}>
<div className={styles.emulator}>
<div className={styles.header}>
<ToolBar>
{mode === 'debug' && (
Expand All @@ -302,17 +302,19 @@ export class Emulator extends React.Component<EmulatorProps, {}> {
onClick={this.onStartOverClick}
buttonRef={this.setRestartButtonRef}
/>
<button
className={`${styles.saveIcon} ${styles.toolbarIcon || ''}`}
onClick={this.onExportTranscriptClick}
>
Save transcript
</button>
<div role="menuitem">
<button
className={`${styles.saveIcon} ${styles.toolbarIcon || ''}`}
onClick={this.onExportTranscriptClick}
>
Save transcript
</button>
</div>
</>
)}
</ToolBar>
</div>
<div className={`${styles.content} ${styles.vertical}`}>
<div key={this.getConversationId()} className={`${styles.content} ${styles.vertical}`}>
<Splitter
orientation="vertical"
primaryPaneIndex={0}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,8 @@ import * as React from 'react';

import * as styles from './toolbar.scss';

export const ToolBar = (props: { children: React.ReactNode }) => <div className={styles.toolbar}>{props.children}</div>;
export const ToolBar = (props: { children: React.ReactNode }) => (
<div role="menubar" className={styles.toolbar}>
{props.children}
</div>
);
6 changes: 5 additions & 1 deletion packages/sdk/ui-react/src/widget/splitButton/splitButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,16 +89,20 @@ export class SplitButton extends React.Component<SplitButtonProps, SplitButtonSt
id={id}
onClick={onClickDefault}
ref={setButtonRef}
role={'menuitem'}
>
<span>{defaultLabel}</span>
</button>
<div className={styles.separator} />
<button
aria-label={defaultLabel}
className={styles.caretButton + expandedClass}
ref={setCaretRef}
onClick={onClickCaret}
aria-haspopup={'listbox'}
aria-expanded={expanded}
aria-haspopup={true}
disabled={disabled}
role={'menuitem'}
/>
</div>
<SplitButtonPanel
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export class SplitButtonPanel extends React.Component<SplitButtonPanelProps> {
className={styles.panel}
style={inlineStyle}
ref={this.setPanelRef}
role={'listbox'}
role={'menu'}
tabIndex={-1}
aria-activedescendant={this.getOptionId(selected)}
onKeyDown={onKeyDown}
Expand All @@ -97,7 +97,7 @@ export class SplitButtonPanel extends React.Component<SplitButtonPanelProps> {
id={this.getOptionId(index)}
key={option}
className={styles.option + selectedClass}
role={'option'}
role={'menuitem'}
aria-selected={isSelected}
onClick={e => this.onSelectOption(e, index)}
>
Expand Down