summaryrefslogtreecommitdiffstats
path: root/web_src/js/features/repo-settings.js
diff options
context:
space:
mode:
authorwxiaoguang <wxiaoguang@gmail.com>2021-10-17 01:28:04 +0800
committerGitHub <noreply@github.com>2021-10-17 01:28:04 +0800
commit1a7473ff459479a7fd3ba62a0b7b04b237565bed (patch)
tree518aab9c14f36ed012831b389c0370adef2ab738 /web_src/js/features/repo-settings.js
parent3728f1daa08e4c228db212844612555e9e2904df (diff)
downloadgitea-1a7473ff459479a7fd3ba62a0b7b04b237565bed.tar.gz
gitea-1a7473ff459479a7fd3ba62a0b7b04b237565bed.zip
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>
Diffstat (limited to 'web_src/js/features/repo-settings.js')
-rw-r--r--web_src/js/features/repo-settings.js66
1 files changed, 66 insertions, 0 deletions
diff --git a/web_src/js/features/repo-settings.js b/web_src/js/features/repo-settings.js
new file mode 100644
index 0000000000..e063448936
--- /dev/null
+++ b/web_src/js/features/repo-settings.js
@@ -0,0 +1,66 @@
+import {createMonaco} from './codeeditor.js';
+import {initRepoCommonFilterSearchDropdown} from './repo-common.js';
+
+const {AppSubUrl, csrf} = window.config;
+
+export function initRepoSettingsCollaboration() {
+ // Change collaborator access mode
+ $('.access-mode.menu .item').on('click', function () {
+ const $menu = $(this).parent();
+ $.post($menu.data('url'), {
+ _csrf: csrf,
+ uid: $menu.data('uid'),
+ mode: $(this).data('value')
+ });
+ });
+}
+
+export function initRepoSettingSearchTeamBox() {
+ const $searchTeamBox = $('#search-team-box');
+ $searchTeamBox.search({
+ minCharacters: 2,
+ apiSettings: {
+ url: `${AppSubUrl}/api/v1/orgs/${$searchTeamBox.data('org')}/teams/search?q={query}`,
+ headers: {'X-Csrf-Token': csrf},
+ onResponse(response) {
+ const items = [];
+ $.each(response.data, (_i, item) => {
+ const title = `${item.name} (${item.permission} access)`;
+ items.push({
+ title,
+ });
+ });
+
+ return {results: items};
+ }
+ },
+ searchFields: ['name', 'description'],
+ showNoResults: false
+ });
+}
+
+
+export async function initRepoSettingGitHook() {
+ if ($('.edit.githook').length === 0) return;
+ const filename = document.querySelector('.hook-filename').textContent;
+ await createMonaco($('#content')[0], filename, {language: 'shell'});
+}
+
+export function initRepoSettingBranches() {
+ // Branches
+ if ($('.repository.settings.branches').length > 0) {
+ initRepoCommonFilterSearchDropdown('.protected-branches .dropdown');
+ $('.enable-protection, .enable-whitelist, .enable-statuscheck').on('change', function () {
+ if (this.checked) {
+ $($(this).data('target')).removeClass('disabled');
+ } else {
+ $($(this).data('target')).addClass('disabled');
+ }
+ });
+ $('.disable-whitelist').on('change', function () {
+ if (this.checked) {
+ $($(this).data('target')).addClass('disabled');
+ }
+ });
+ }
+}