import React from 'dom-chef'; import select from 'select-dom'; import PlusIcon from 'octicon/plus.svg'; import SearchIcon from 'octicon/search.svg'; import * as pageDetect from 'github-url-detection'; import features from '.'; import {groupButtons} from '../github-helpers/group-buttons'; function init(): void { const searchButton = select('.btn[data-hotkey="t"]')!; searchButton.classList.add('tooltipped', 'tooltipped-ne'); searchButton.setAttribute('aria-label', 'Go to file'); searchButton.firstChild!.replaceWith(); const addButtonWrapper = searchButton.nextElementSibling!; const addButton = select('.dropdown-caret', addButtonWrapper)?.parentElement; if (addButton) { addButton.classList.add('d-md-block', 'tooltipped', 'tooltipped-ne'); addButton.classList.remove('d-md-flex', 'ml-2'); addButton.setAttribute('aria-label', 'Add file'); addButton.textContent = ''; addButton.append(); searchButton.classList.remove('mr-2'); groupButtons([searchButton, addButtonWrapper]); } const downloadButton = select('get-repo details'); if (downloadButton) { downloadButton.classList.add('tooltipped', 'tooltipped-ne'); downloadButton.setAttribute('aria-label', 'Clone or download'); select('.octicon-download', downloadButton)!.nextSibling!.remove(); } } void features.add({ id: __filebasename, description: 'Replaces the labels of some simple buttons on repository filelists with icons, making them take less space.', screenshot: 'https://user-images.githubusercontent.com/44045911/88551471-7a3f7c80-d055-11ea-82f1-c558b7871824.png' }, { include: [ pageDetect.isRepoTree, pageDetect.isSingleFile ], init });