mirror of https://github.com/go-gitea/gitea.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.1 KiB
32 lines
1.1 KiB
import $ from 'jquery'; |
|
import {queryElemChildren} from '../../utils/dom.ts'; |
|
|
|
export function initFomanticDimmer() { |
|
// stand-in for removed dimmer module |
|
$.fn.dimmer = function (this: any, arg0: string, arg1: any) { |
|
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; |
|
}; |
|
}
|
|
|