mirror of
https://github.com/go-gitea/gitea.git
synced 2025-12-02 13:59:48 +09:00
/claim #35898 Resolves #35898 ### Summary of key changes: 1. Add file name search/Go to file functionality to repo button row. 2. Add backend functionality to delete directory 3. Add context menu for directories with functionality to copy path & delete a directory 4. Move Add/Upload file dropdown to right for parity with Github UI 5. Add tree view to the edit/upload UI --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
42 lines
1.6 KiB
TypeScript
42 lines
1.6 KiB
TypeScript
import {createApp} from 'vue';
|
|
import {toggleElem} from '../utils/dom.ts';
|
|
import {POST} from '../modules/fetch.ts';
|
|
import ViewFileTree from '../components/ViewFileTree.vue';
|
|
import {registerGlobalEventFunc} from '../modules/observer.ts';
|
|
|
|
const {appSubUrl} = window.config;
|
|
|
|
function isUserSignedIn() {
|
|
return Boolean(document.querySelector('#navbar .user-menu'));
|
|
}
|
|
|
|
async function toggleSidebar(btn: HTMLElement) {
|
|
const elToggleShow = document.querySelector('.repo-view-file-tree-toggle[data-toggle-action="show"]');
|
|
const elFileTreeContainer = document.querySelector('.repo-view-file-tree-container');
|
|
const shouldShow = btn.getAttribute('data-toggle-action') === 'show';
|
|
toggleElem(elFileTreeContainer, shouldShow);
|
|
toggleElem(elToggleShow, !shouldShow);
|
|
|
|
// FIXME: need to remove "full height" style from parent element
|
|
|
|
if (!isUserSignedIn()) return;
|
|
await POST(`${appSubUrl}/user/settings/update_preferences`, {
|
|
data: {codeViewShowFileTree: shouldShow},
|
|
});
|
|
}
|
|
|
|
export async function initRepoViewFileTree() {
|
|
const sidebar = document.querySelector<HTMLElement>('.repo-view-file-tree-container');
|
|
const repoViewContent = document.querySelector('.repo-view-content');
|
|
if (!sidebar || !repoViewContent) return;
|
|
|
|
registerGlobalEventFunc('click', 'onRepoViewFileTreeToggle', toggleSidebar);
|
|
|
|
const fileTree = sidebar.querySelector('#view-file-tree');
|
|
createApp(ViewFileTree, {
|
|
repoLink: fileTree.getAttribute('data-repo-link'),
|
|
treePath: fileTree.getAttribute('data-tree-path'),
|
|
currentRefNameSubURL: fileTree.getAttribute('data-current-ref-name-sub-url'),
|
|
}).mount(fileTree);
|
|
}
|