1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-09-06 23:44:20 -04:00

Remove jQuery from the installation page (#29284)

- Switched to plain JavaScript
- Tested the installation page functionality and it works as before

# Demo using JavaScript without jQuery

![action](https://github.com/go-gitea/gitea/assets/20454870/286475b3-1919-4d99-b790-def10fa36e66)

Signed-off-by: Yarden Shoham <git@yardenshoham.com>
This commit is contained in:
Yarden Shoham 2024-02-21 10:13:48 +02:00 committed by GitHub
parent 7f45dfb030
commit 4e536edaea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,19 +1,17 @@
import $ from 'jquery';
import {hideElem, showElem} from '../utils/dom.js'; import {hideElem, showElem} from '../utils/dom.js';
import {GET} from '../modules/fetch.js'; import {GET} from '../modules/fetch.js';
export function initInstall() { export function initInstall() {
const $page = $('.page-content.install'); const page = document.querySelector('.page-content.install');
if ($page.length === 0) { if (!page) {
return; return;
} }
if ($page.is('.post-install')) { if (page.classList.contains('post-install')) {
initPostInstall(); initPostInstall();
} else { } else {
initPreInstall(); initPreInstall();
} }
} }
function initPreInstall() { function initPreInstall() {
const defaultDbUser = 'gitea'; const defaultDbUser = 'gitea';
const defaultDbName = 'gitea'; const defaultDbName = 'gitea';
@ -24,83 +22,82 @@ function initPreInstall() {
mssql: '127.0.0.1:1433' mssql: '127.0.0.1:1433'
}; };
const $dbHost = $('#db_host'); const dbHost = document.getElementById('db_host');
const $dbUser = $('#db_user'); const dbUser = document.getElementById('db_user');
const $dbName = $('#db_name'); const dbName = document.getElementById('db_name');
// Database type change detection. // Database type change detection.
$('#db_type').on('change', function () { document.getElementById('db_type').addEventListener('change', function () {
const dbType = $(this).val(); const dbType = this.value;
hideElem($('div[data-db-setting-for]')); hideElem('div[data-db-setting-for]');
showElem($(`div[data-db-setting-for=${dbType}]`)); showElem(`div[data-db-setting-for=${dbType}]`);
if (dbType !== 'sqlite3') { if (dbType !== 'sqlite3') {
// for most remote database servers // for most remote database servers
showElem($(`div[data-db-setting-for=common-host]`)); showElem('div[data-db-setting-for=common-host]');
const lastDbHost = $dbHost.val(); const lastDbHost = dbHost.value;
const isDbHostDefault = !lastDbHost || Object.values(defaultDbHosts).includes(lastDbHost); const isDbHostDefault = !lastDbHost || Object.values(defaultDbHosts).includes(lastDbHost);
if (isDbHostDefault) { if (isDbHostDefault) {
$dbHost.val(defaultDbHosts[dbType] ?? ''); dbHost.value = defaultDbHosts[dbType] ?? '';
} }
if (!$dbUser.val() && !$dbName.val()) { if (!dbUser.value && !dbName.value) {
$dbUser.val(defaultDbUser); dbUser.value = defaultDbUser;
$dbName.val(defaultDbName); dbName.value = defaultDbName;
} }
} // else: for SQLite3, the default path is always prepared by backend code (setting) } // else: for SQLite3, the default path is always prepared by backend code (setting)
}).trigger('change'); });
document.getElementById('db_type').dispatchEvent(new Event('change'));
const $appUrl = $('#app_url'); const appUrl = document.getElementById('app_url');
const configAppUrl = $appUrl.val(); if (appUrl.value.includes('://localhost')) {
if (configAppUrl.includes('://localhost')) { appUrl.value = window.location.href;
$appUrl.val(window.location.href);
} }
const $domain = $('#domain'); const domain = document.getElementById('domain');
const configDomain = $domain.val().trim(); if (domain.value.trim() === 'localhost') {
if (configDomain === 'localhost') { domain.value = window.location.hostname;
$domain.val(window.location.hostname);
} }
// TODO: better handling of exclusive relations. // TODO: better handling of exclusive relations.
$('#offline-mode input').on('change', function () { document.querySelector('#offline-mode input').addEventListener('change', function () {
if ($(this).is(':checked')) { if (this.checked) {
$('#disable-gravatar').checkbox('check'); document.querySelector('#disable-gravatar input').checked = true;
$('#federated-avatar-lookup').checkbox('uncheck'); document.querySelector('#federated-avatar-lookup input').checked = false;
} }
}); });
$('#disable-gravatar input').on('change', function () { document.querySelector('#disable-gravatar input').addEventListener('change', function () {
if ($(this).is(':checked')) { if (this.checked) {
$('#federated-avatar-lookup').checkbox('uncheck'); document.querySelector('#federated-avatar-lookup input').checked = false;
} else { } else {
$('#offline-mode').checkbox('uncheck'); document.querySelector('#offline-mode input').checked = false;
} }
}); });
$('#federated-avatar-lookup input').on('change', function () { document.querySelector('#federated-avatar-lookup input').addEventListener('change', function () {
if ($(this).is(':checked')) { if (this.checked) {
$('#disable-gravatar').checkbox('uncheck'); document.querySelector('#disable-gravatar input').checked = false;
$('#offline-mode').checkbox('uncheck'); document.querySelector('#offline-mode input').checked = false;
} }
}); });
$('#enable-openid-signin input').on('change', function () { document.querySelector('#enable-openid-signin input').addEventListener('change', function () {
if ($(this).is(':checked')) { if (this.checked) {
if (!$('#disable-registration input').is(':checked')) { if (!document.querySelector('#disable-registration input').checked) {
$('#enable-openid-signup').checkbox('check'); document.querySelector('#enable-openid-signup input').checked = true;
} }
} else { } else {
$('#enable-openid-signup').checkbox('uncheck'); document.querySelector('#enable-openid-signup input').checked = false;
} }
}); });
$('#disable-registration input').on('change', function () { document.querySelector('#disable-registration input').addEventListener('change', function () {
if ($(this).is(':checked')) { if (this.checked) {
$('#enable-captcha').checkbox('uncheck'); document.querySelector('#enable-captcha input').checked = false;
$('#enable-openid-signup').checkbox('uncheck'); document.querySelector('#enable-openid-signup input').checked = false;
} else { } else {
$('#enable-openid-signup').checkbox('check'); document.querySelector('#enable-openid-signup input').checked = true;
} }
}); });
$('#enable-captcha input').on('change', function () { document.querySelector('#enable-captcha input').addEventListener('change', function () {
if ($(this).is(':checked')) { if (this.checked) {
$('#disable-registration').checkbox('uncheck'); document.querySelector('#disable-registration input').checked = false;
} }
}); });
} }