Split index.js
to separate files (#17315)
* split `index.js` to separate files * tune clipboard * fix promise * fix document * remove intermediate empty file * fix async event listener * use `export function` instead of `export {}`, add more comments Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: 6543 <6543@obermui.de>
This commit is contained in:
parent
3728f1daa0
commit
1a7473ff45
42 changed files with 3686 additions and 3501 deletions
91
web_src/js/features/install.js
Normal file
91
web_src/js/features/install.js
Normal file
|
@ -0,0 +1,91 @@
|
|||
export function initInstall() {
|
||||
if ($('.install').length === 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
if ($('#db_host').val() === '') {
|
||||
$('#db_host').val('127.0.0.1:3306');
|
||||
$('#db_user').val('gitea');
|
||||
$('#db_name').val('gitea');
|
||||
}
|
||||
|
||||
// Database type change detection.
|
||||
$('#db_type').on('change', function () {
|
||||
const sqliteDefault = 'data/gitea.db';
|
||||
const tidbDefault = 'data/gitea_tidb';
|
||||
|
||||
const dbType = $(this).val();
|
||||
if (dbType === 'SQLite3') {
|
||||
$('#sql_settings').hide();
|
||||
$('#pgsql_settings').hide();
|
||||
$('#mysql_settings').hide();
|
||||
$('#sqlite_settings').show();
|
||||
|
||||
if (dbType === 'SQLite3' && $('#db_path').val() === tidbDefault) {
|
||||
$('#db_path').val(sqliteDefault);
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
const dbDefaults = {
|
||||
MySQL: '127.0.0.1:3306',
|
||||
PostgreSQL: '127.0.0.1:5432',
|
||||
MSSQL: '127.0.0.1:1433'
|
||||
};
|
||||
|
||||
$('#sqlite_settings').hide();
|
||||
$('#sql_settings').show();
|
||||
|
||||
$('#pgsql_settings').toggle(dbType === 'PostgreSQL');
|
||||
$('#mysql_settings').toggle(dbType === 'MySQL');
|
||||
$.each(dbDefaults, (_type, defaultHost) => {
|
||||
if ($('#db_host').val() === defaultHost) {
|
||||
$('#db_host').val(dbDefaults[dbType]);
|
||||
return false;
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
// TODO: better handling of exclusive relations.
|
||||
$('#offline-mode input').on('change', function () {
|
||||
if ($(this).is(':checked')) {
|
||||
$('#disable-gravatar').checkbox('check');
|
||||
$('#federated-avatar-lookup').checkbox('uncheck');
|
||||
}
|
||||
});
|
||||
$('#disable-gravatar input').on('change', function () {
|
||||
if ($(this).is(':checked')) {
|
||||
$('#federated-avatar-lookup').checkbox('uncheck');
|
||||
} else {
|
||||
$('#offline-mode').checkbox('uncheck');
|
||||
}
|
||||
});
|
||||
$('#federated-avatar-lookup input').on('change', function () {
|
||||
if ($(this).is(':checked')) {
|
||||
$('#disable-gravatar').checkbox('uncheck');
|
||||
$('#offline-mode').checkbox('uncheck');
|
||||
}
|
||||
});
|
||||
$('#enable-openid-signin input').on('change', function () {
|
||||
if ($(this).is(':checked')) {
|
||||
if (!$('#disable-registration input').is(':checked')) {
|
||||
$('#enable-openid-signup').checkbox('check');
|
||||
}
|
||||
} else {
|
||||
$('#enable-openid-signup').checkbox('uncheck');
|
||||
}
|
||||
});
|
||||
$('#disable-registration input').on('change', function () {
|
||||
if ($(this).is(':checked')) {
|
||||
$('#enable-captcha').checkbox('uncheck');
|
||||
$('#enable-openid-signup').checkbox('uncheck');
|
||||
} else {
|
||||
$('#enable-openid-signup').checkbox('check');
|
||||
}
|
||||
});
|
||||
$('#enable-captcha input').on('change', function () {
|
||||
if ($(this).is(':checked')) {
|
||||
$('#disable-registration').checkbox('uncheck');
|
||||
}
|
||||
});
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue