forked from go-gitea/gitea
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove jQuery from the repo migration form (go-gitea#29229)
- Switched to plain JavaScript - Tested the repo migration form functionality and it works as before # Demo using JavaScript without jQuery ![action](https://github.com/go-gitea/gitea/assets/20454870/3496ec05-48a7-449e-8cdd-f8372ba0d589) --------- Signed-off-by: Yarden Shoham <git@yardenshoham.com> Co-authored-by: silverwind <me@silverwind.io>
- Loading branch information
1 parent
20cbb4e
commit 10e3a71
Showing
1 changed file
with
40 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,63 +1,69 @@ | ||
import $ from 'jquery'; | ||
import {hideElem, showElem, toggleElem} from '../utils/dom.js'; | ||
|
||
const $service = $('#service_type'); | ||
const $user = $('#auth_username'); | ||
const $pass = $('#auth_password'); | ||
const $token = $('#auth_token'); | ||
const $mirror = $('#mirror'); | ||
const $lfs = $('#lfs'); | ||
const $lfsSettings = $('#lfs_settings'); | ||
const $lfsEndpoint = $('#lfs_endpoint'); | ||
const $items = $('#migrate_items').find('input[type=checkbox]'); | ||
const service = document.getElementById('service_type'); | ||
const user = document.getElementById('auth_username'); | ||
const pass = document.getElementById('auth_password'); | ||
const token = document.getElementById('auth_token'); | ||
const mirror = document.getElementById('mirror'); | ||
const lfs = document.getElementById('lfs'); | ||
const lfsSettings = document.getElementById('lfs_settings'); | ||
const lfsEndpoint = document.getElementById('lfs_endpoint'); | ||
const items = document.querySelectorAll('#migrate_items input[type=checkbox]'); | ||
|
||
export function initRepoMigration() { | ||
checkAuth(); | ||
setLFSSettingsVisibility(); | ||
|
||
$user.on('input', () => {checkItems(false)}); | ||
$pass.on('input', () => {checkItems(false)}); | ||
$token.on('input', () => {checkItems(true)}); | ||
$mirror.on('change', () => {checkItems(true)}); | ||
$('#lfs_settings_show').on('click', () => { showElem($lfsEndpoint); return false }); | ||
$lfs.on('change', setLFSSettingsVisibility); | ||
|
||
const $cloneAddr = $('#clone_addr'); | ||
$cloneAddr.on('change', () => { | ||
const $repoName = $('#repo_name'); | ||
if ($cloneAddr.val().length > 0 && $repoName.val().length === 0) { // Only modify if repo_name input is blank | ||
$repoName.val($cloneAddr.val().match(/^(.*\/)?((.+?)(\.git)?)$/)[3]); | ||
user?.addEventListener('input', () => {checkItems(false)}); | ||
pass?.addEventListener('input', () => {checkItems(false)}); | ||
token?.addEventListener('input', () => {checkItems(true)}); | ||
mirror?.addEventListener('change', () => {checkItems(true)}); | ||
document.getElementById('lfs_settings_show')?.addEventListener('click', (e) => { | ||
e.preventDefault(); | ||
e.stopPropagation(); | ||
showElem(lfsEndpoint); | ||
}); | ||
lfs?.addEventListener('change', setLFSSettingsVisibility); | ||
|
||
const cloneAddr = document.getElementById('clone_addr'); | ||
cloneAddr?.addEventListener('change', () => { | ||
const repoName = document.getElementById('repo_name'); | ||
if (cloneAddr.value && !repoName?.value) { // Only modify if repo_name input is blank | ||
repoName.value = cloneAddr.value.match(/^(.*\/)?((.+?)(\.git)?)$/)[3]; | ||
} | ||
}); | ||
} | ||
|
||
function checkAuth() { | ||
const serviceType = $service.val(); | ||
if (!service) return; | ||
const serviceType = Number(service.value); | ||
|
||
checkItems(serviceType !== 1); | ||
} | ||
|
||
function checkItems(tokenAuth) { | ||
let enableItems; | ||
if (tokenAuth) { | ||
enableItems = $token.val() !== ''; | ||
enableItems = token?.value !== ''; | ||
} else { | ||
enableItems = $user.val() !== '' || $pass.val() !== ''; | ||
enableItems = user?.value !== '' || pass?.value !== ''; | ||
} | ||
if (enableItems && $service.val() > 1) { | ||
if ($mirror.is(':checked')) { | ||
$items.not('[name="wiki"]').attr('disabled', true); | ||
$items.filter('[name="wiki"]').attr('disabled', false); | ||
if (enableItems && Number(service?.value) > 1) { | ||
if (mirror?.checked) { | ||
for (const item of items) { | ||
item.disabled = item.name !== 'wiki'; | ||
} | ||
return; | ||
} | ||
$items.attr('disabled', false); | ||
for (const item of items) item.disabled = false; | ||
} else { | ||
$items.attr('disabled', true); | ||
for (const item of items) item.disabled = true; | ||
} | ||
} | ||
|
||
function setLFSSettingsVisibility() { | ||
const visible = $lfs.is(':checked'); | ||
toggleElem($lfsSettings, visible); | ||
hideElem($lfsEndpoint); | ||
if (!lfs) return; | ||
const visible = lfs.checked; | ||
toggleElem(lfsSettings, visible); | ||
hideElem(lfsEndpoint); | ||
} |