mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 03:18:24 +00:00 
			
		
		
		
	Backport #31445 by wxiaoguang Fix #19031 Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
This commit is contained in:
		| @@ -131,22 +131,22 @@ class ComboMarkdownEditor { | |||||||
|   } |   } | ||||||
|  |  | ||||||
|   setupTab() { |   setupTab() { | ||||||
|     const $container = $(this.container); |     const tabs = this.container.querySelectorAll('.tabular.menu > .item'); | ||||||
|     const tabs = $container[0].querySelectorAll('.tabular.menu > .item'); |  | ||||||
|  |  | ||||||
|     // Fomantic Tab requires the "data-tab" to be globally unique. |     // Fomantic Tab requires the "data-tab" to be globally unique. | ||||||
|     // So here it uses our defined "data-tab-for" and "data-tab-panel" to generate the "data-tab" attribute for Fomantic. |     // So here it uses our defined "data-tab-for" and "data-tab-panel" to generate the "data-tab" attribute for Fomantic. | ||||||
|     const tabEditor = Array.from(tabs).find((tab) => tab.getAttribute('data-tab-for') === 'markdown-writer'); |     this.tabEditor = Array.from(tabs).find((tab) => tab.getAttribute('data-tab-for') === 'markdown-writer'); | ||||||
|     const tabPreviewer = Array.from(tabs).find((tab) => tab.getAttribute('data-tab-for') === 'markdown-previewer'); |     this.tabPreviewer = Array.from(tabs).find((tab) => tab.getAttribute('data-tab-for') === 'markdown-previewer'); | ||||||
|     tabEditor.setAttribute('data-tab', `markdown-writer-${elementIdCounter}`); |     this.tabEditor.setAttribute('data-tab', `markdown-writer-${elementIdCounter}`); | ||||||
|     tabPreviewer.setAttribute('data-tab', `markdown-previewer-${elementIdCounter}`); |     this.tabPreviewer.setAttribute('data-tab', `markdown-previewer-${elementIdCounter}`); | ||||||
|     const panelEditor = $container[0].querySelector('.ui.tab[data-tab-panel="markdown-writer"]'); |  | ||||||
|     const panelPreviewer = $container[0].querySelector('.ui.tab[data-tab-panel="markdown-previewer"]'); |     const panelEditor = this.container.querySelector('.ui.tab[data-tab-panel="markdown-writer"]'); | ||||||
|  |     const panelPreviewer = this.container.querySelector('.ui.tab[data-tab-panel="markdown-previewer"]'); | ||||||
|     panelEditor.setAttribute('data-tab', `markdown-writer-${elementIdCounter}`); |     panelEditor.setAttribute('data-tab', `markdown-writer-${elementIdCounter}`); | ||||||
|     panelPreviewer.setAttribute('data-tab', `markdown-previewer-${elementIdCounter}`); |     panelPreviewer.setAttribute('data-tab', `markdown-previewer-${elementIdCounter}`); | ||||||
|     elementIdCounter++; |     elementIdCounter++; | ||||||
|  |  | ||||||
|     tabEditor.addEventListener('click', () => { |     this.tabEditor.addEventListener('click', () => { | ||||||
|       requestAnimationFrame(() => { |       requestAnimationFrame(() => { | ||||||
|         this.focus(); |         this.focus(); | ||||||
|       }); |       }); | ||||||
| @@ -154,11 +154,11 @@ class ComboMarkdownEditor { | |||||||
|  |  | ||||||
|     $(tabs).tab(); |     $(tabs).tab(); | ||||||
|  |  | ||||||
|     this.previewUrl = tabPreviewer.getAttribute('data-preview-url'); |     this.previewUrl = this.tabPreviewer.getAttribute('data-preview-url'); | ||||||
|     this.previewContext = tabPreviewer.getAttribute('data-preview-context'); |     this.previewContext = this.tabPreviewer.getAttribute('data-preview-context'); | ||||||
|     this.previewMode = this.options.previewMode ?? 'comment'; |     this.previewMode = this.options.previewMode ?? 'comment'; | ||||||
|     this.previewWiki = this.options.previewWiki ?? false; |     this.previewWiki = this.options.previewWiki ?? false; | ||||||
|     tabPreviewer.addEventListener('click', async () => { |     this.tabPreviewer.addEventListener('click', async () => { | ||||||
|       const formData = new FormData(); |       const formData = new FormData(); | ||||||
|       formData.append('mode', this.previewMode); |       formData.append('mode', this.previewMode); | ||||||
|       formData.append('context', this.previewContext); |       formData.append('context', this.previewContext); | ||||||
| @@ -170,6 +170,10 @@ class ComboMarkdownEditor { | |||||||
|     }); |     }); | ||||||
|   } |   } | ||||||
|  |  | ||||||
|  |   switchTabToEditor() { | ||||||
|  |     this.tabEditor.click(); | ||||||
|  |   } | ||||||
|  |  | ||||||
|   prepareEasyMDEToolbarActions() { |   prepareEasyMDEToolbarActions() { | ||||||
|     this.easyMDEToolbarDefault = [ |     this.easyMDEToolbarDefault = [ | ||||||
|       'bold', 'italic', 'strikethrough', '|', 'heading-1', 'heading-2', 'heading-3', |       'bold', 'italic', 'strikethrough', '|', 'heading-1', 'heading-2', 'heading-3', | ||||||
|   | |||||||
| @@ -172,6 +172,7 @@ async function onEditContent(event) { | |||||||
|   if (!comboMarkdownEditor.value()) { |   if (!comboMarkdownEditor.value()) { | ||||||
|     comboMarkdownEditor.value(rawContent.textContent); |     comboMarkdownEditor.value(rawContent.textContent); | ||||||
|   } |   } | ||||||
|  |   comboMarkdownEditor.switchTabToEditor(); | ||||||
|   comboMarkdownEditor.focus(); |   comboMarkdownEditor.focus(); | ||||||
| } | } | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user