mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 19:06:18 +01:00 
			
		
		
		
	Convert frontend code to typescript (#31559)
None of the frontend js/ts files was touched besides these two commands
(edit: no longer true, I touched one file in
61105d0618
because of a deprecation that was not showing before the rename).
`tsc` currently reports 778 errors, so I have disabled it in CI as
planned.
Everything appears to work fine.
			
			
This commit is contained in:
		
							
								
								
									
										32
									
								
								web_src/js/modules/fomantic/dimmer.ts
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										32
									
								
								web_src/js/modules/fomantic/dimmer.ts
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,32 @@ | ||||
| import $ from 'jquery'; | ||||
| import {queryElemChildren} from '../../utils/dom.ts'; | ||||
|  | ||||
| export function initFomanticDimmer() { | ||||
|   // stand-in for removed dimmer module | ||||
|   $.fn.dimmer = function (arg0, arg1) { | ||||
|     if (arg0 === 'add content') { | ||||
|       const $el = arg1; | ||||
|       const existingDimmer = document.querySelector('body > .ui.dimmer'); | ||||
|       if (existingDimmer) { | ||||
|         queryElemChildren(existingDimmer, '*', (el) => el.classList.add('hidden')); | ||||
|         this._dimmer = existingDimmer; | ||||
|       } else { | ||||
|         this._dimmer = document.createElement('div'); | ||||
|         this._dimmer.classList.add('ui', 'dimmer'); | ||||
|         document.body.append(this._dimmer); | ||||
|       } | ||||
|       this._dimmer.append($el[0]); | ||||
|     } else if (arg0 === 'get dimmer') { | ||||
|       return $(this._dimmer); | ||||
|     } else if (arg0 === 'show') { | ||||
|       this._dimmer.classList.add('active'); | ||||
|       document.body.classList.add('tw-overflow-hidden'); | ||||
|     } else if (arg0 === 'hide') { | ||||
|       const cb = arg1; | ||||
|       this._dimmer.classList.remove('active'); | ||||
|       document.body.classList.remove('tw-overflow-hidden'); | ||||
|       cb(); | ||||
|     } | ||||
|     return this; | ||||
|   }; | ||||
| } | ||||
		Reference in New Issue
	
	Block a user