136 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			Plaintext
		
	
	
			
		
		
	
	
			136 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			Plaintext
		
	
	
| // Jest Snapshot v1, https://goo.gl/fbAQLP
 | |
| 
 | |
| exports[`RoomGeneralContextMenu renders an empty context menu for archived rooms 1`] = `
 | |
| <div>
 | |
|   <div
 | |
|     class="mx_ContextualMenu_wrapper"
 | |
|     style="top: 1px; left: 1px;"
 | |
|   >
 | |
|     <div
 | |
|       class="mx_ContextualMenu_background"
 | |
|     />
 | |
|     <div
 | |
|       class="mx_ContextualMenu mx_ContextualMenu_withChevron_left"
 | |
|       role="menu"
 | |
|     >
 | |
|       <div
 | |
|         class="mx_ContextualMenu_chevron_left"
 | |
|       />
 | |
|       <div
 | |
|         class="mx_IconizedContextMenu mx_RoomGeneralContextMenu mx_IconizedContextMenu_compact"
 | |
|       >
 | |
|         <div
 | |
|           class="mx_IconizedContextMenu_optionList mx_IconizedContextMenu_optionList_notFirst"
 | |
|         >
 | |
|           <div
 | |
|             aria-checked="false"
 | |
|             aria-label="Mark as read"
 | |
|             class="mx_AccessibleButton mx_IconizedContextMenu_item"
 | |
|             role="menuitemcheckbox"
 | |
|             tabindex="0"
 | |
|           >
 | |
|             <span
 | |
|               class="mx_IconizedContextMenu_icon mx_RoomGeneralContextMenu_iconMarkAsRead"
 | |
|             />
 | |
|             <span
 | |
|               class="mx_IconizedContextMenu_label"
 | |
|             >
 | |
|               Mark as read
 | |
|             </span>
 | |
|             <span
 | |
|               class="mx_IconizedContextMenu_icon mx_IconizedContextMenu_unchecked"
 | |
|             />
 | |
|           </div>
 | |
|         </div>
 | |
|         <div
 | |
|           class="mx_IconizedContextMenu_optionList mx_IconizedContextMenu_optionList_notFirst mx_IconizedContextMenu_optionList_red"
 | |
|         >
 | |
|           <div
 | |
|             aria-label="Forget Room"
 | |
|             class="mx_AccessibleButton mx_IconizedContextMenu_option_red mx_IconizedContextMenu_item"
 | |
|             role="menuitem"
 | |
|             tabindex="-1"
 | |
|           >
 | |
|             <span
 | |
|               class="mx_IconizedContextMenu_icon mx_RoomGeneralContextMenu_iconSignOut"
 | |
|             />
 | |
|             <span
 | |
|               class="mx_IconizedContextMenu_label"
 | |
|             >
 | |
|               Forget Room
 | |
|             </span>
 | |
|           </div>
 | |
|         </div>
 | |
|       </div>
 | |
|     </div>
 | |
|   </div>
 | |
| </div>
 | |
| `;
 | |
| 
 | |
| exports[`RoomGeneralContextMenu renders the default context menu 1`] = `
 | |
| <div>
 | |
|   <div
 | |
|     class="mx_ContextualMenu_wrapper"
 | |
|     style="top: 1px; left: 1px;"
 | |
|   >
 | |
|     <div
 | |
|       class="mx_ContextualMenu_background"
 | |
|     />
 | |
|     <div
 | |
|       class="mx_ContextualMenu mx_ContextualMenu_withChevron_left"
 | |
|       role="menu"
 | |
|     >
 | |
|       <div
 | |
|         class="mx_ContextualMenu_chevron_left"
 | |
|       />
 | |
|       <div
 | |
|         class="mx_IconizedContextMenu mx_RoomGeneralContextMenu mx_IconizedContextMenu_compact"
 | |
|       >
 | |
|         <div
 | |
|           class="mx_IconizedContextMenu_optionList mx_IconizedContextMenu_optionList_notFirst"
 | |
|         >
 | |
|           <div
 | |
|             aria-checked="false"
 | |
|             aria-label="Mark as read"
 | |
|             class="mx_AccessibleButton mx_IconizedContextMenu_item"
 | |
|             role="menuitemcheckbox"
 | |
|             tabindex="0"
 | |
|           >
 | |
|             <span
 | |
|               class="mx_IconizedContextMenu_icon mx_RoomGeneralContextMenu_iconMarkAsRead"
 | |
|             />
 | |
|             <span
 | |
|               class="mx_IconizedContextMenu_label"
 | |
|             >
 | |
|               Mark as read
 | |
|             </span>
 | |
|             <span
 | |
|               class="mx_IconizedContextMenu_icon mx_IconizedContextMenu_unchecked"
 | |
|             />
 | |
|           </div>
 | |
|         </div>
 | |
|         <div
 | |
|           class="mx_IconizedContextMenu_optionList mx_IconizedContextMenu_optionList_notFirst mx_IconizedContextMenu_optionList_red"
 | |
|         >
 | |
|           <div
 | |
|             aria-label="Forget Room"
 | |
|             class="mx_AccessibleButton mx_IconizedContextMenu_option_red mx_IconizedContextMenu_item"
 | |
|             role="menuitem"
 | |
|             tabindex="-1"
 | |
|           >
 | |
|             <span
 | |
|               class="mx_IconizedContextMenu_icon mx_RoomGeneralContextMenu_iconSignOut"
 | |
|             />
 | |
|             <span
 | |
|               class="mx_IconizedContextMenu_label"
 | |
|             >
 | |
|               Forget Room
 | |
|             </span>
 | |
|           </div>
 | |
|         </div>
 | |
|       </div>
 | |
|     </div>
 | |
|   </div>
 | |
| </div>
 | |
| `;
 |