JS refactors (#22227)

- Replace all default exports with named exports, except for Vue SFCs
- Remove names from Vue SFCs, they are automatically inferred from the
filename
- Misc whitespace-related tweaks
This commit is contained in:
silverwind 2022-12-23 17:03:11 +01:00 committed by GitHub
parent 71ca3067bc
commit 2cf0cf0de1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
35 changed files with 47 additions and 89 deletions

View file

@ -18,7 +18,6 @@
import {CalendarHeatmap} from 'vue3-calendar-heatmap'; import {CalendarHeatmap} from 'vue3-calendar-heatmap';
export default { export default {
name: 'ActivityHeatmap',
components: {CalendarHeatmap}, components: {CalendarHeatmap},
props: { props: {
values: { values: {

View file

@ -46,19 +46,13 @@ const luminance = (colorString) => {
const luminanceThreshold = 0.179; const luminanceThreshold = 0.179;
export default { export default {
name: 'ContextPopup', components: {SvgIcon},
components: {
SvgIcon,
},
data: () => ({ data: () => ({
loading: false, loading: false,
issue: null, issue: null,
i18nErrorOccurred: i18n.error_occurred, i18nErrorOccurred: i18n.error_occurred,
i18nErrorMessage: null, i18nErrorMessage: null,
}), }),
computed: { computed: {
createdAt() { createdAt() {
return new Date(this.issue.created_at).toLocaleDateString(undefined, {year: 'numeric', month: 'short', day: 'numeric'}); return new Date(this.issue.created_at).toLocaleDateString(undefined, {year: 'numeric', month: 'short', day: 'numeric'});
@ -107,7 +101,6 @@ export default {
}); });
} }
}, },
mounted() { mounted() {
this.$refs.root.addEventListener('us-load-context-popup', (e) => { this.$refs.root.addEventListener('us-load-context-popup', (e) => {
const data = e.detail; const data = e.detail;
@ -116,7 +109,6 @@ export default {
} }
}); });
}, },
methods: { methods: {
load(data) { load(data) {
this.loading = true; this.loading = true;

View file

@ -27,12 +27,9 @@ import {doLoadMoreFiles} from '../features/repo-diff.js';
const {pageData} = window.config; const {pageData} = window.config;
export default { export default {
name: 'DiffFileList',
data: () => { data: () => {
return pageData.diffFileInfo; return pageData.diffFileInfo;
}, },
watch: { watch: {
fileListIsVisible(newValue) { fileListIsVisible(newValue) {
if (newValue === true) { if (newValue === true) {
@ -44,15 +41,12 @@ export default {
} }
} }
}, },
mounted() { mounted() {
document.getElementById('show-file-list-btn').addEventListener('click', this.toggleFileList); document.getElementById('show-file-list-btn').addEventListener('click', this.toggleFileList);
}, },
unmounted() { unmounted() {
document.getElementById('show-file-list-btn').removeEventListener('click', this.toggleFileList); document.getElementById('show-file-list-btn').removeEventListener('click', this.toggleFileList);
}, },
methods: { methods: {
toggleFileList() { toggleFileList() {
this.fileListIsVisible = !this.fileListIsVisible; this.fileListIsVisible = !this.fileListIsVisible;

View file

@ -21,15 +21,12 @@ const {pageData} = window.config;
const LOCAL_STORAGE_KEY = 'diff_file_tree_visible'; const LOCAL_STORAGE_KEY = 'diff_file_tree_visible';
export default { export default {
name: 'DiffFileTree',
components: {DiffFileTreeItem}, components: {DiffFileTreeItem},
data: () => { data: () => {
const fileTreeIsVisible = localStorage.getItem(LOCAL_STORAGE_KEY) === 'true'; const fileTreeIsVisible = localStorage.getItem(LOCAL_STORAGE_KEY) === 'true';
pageData.diffFileInfo.fileTreeIsVisible = fileTreeIsVisible; pageData.diffFileInfo.fileTreeIsVisible = fileTreeIsVisible;
return pageData.diffFileInfo; return pageData.diffFileInfo;
}, },
computed: { computed: {
fileTree() { fileTree() {
const result = []; const result = [];
@ -94,7 +91,6 @@ export default {
return result; return result;
} }
}, },
mounted() { mounted() {
// ensure correct buttons when we are mounted to the dom // ensure correct buttons when we are mounted to the dom
this.adjustToggleButton(this.fileTreeIsVisible); this.adjustToggleButton(this.fileTreeIsVisible);
@ -125,7 +121,7 @@ export default {
doLoadMoreFiles(this.link, this.diffEnd, () => { doLoadMoreFiles(this.link, this.diffEnd, () => {
this.isLoadingNewData = false; this.isLoadingNewData = false;
}); });
} },
}, },
}; };
</script> </script>

View file

@ -43,11 +43,7 @@
import {SvgIcon} from '../svg.js'; import {SvgIcon} from '../svg.js';
export default { export default {
name: 'DiffFileTreeItem', components: {SvgIcon},
components: {
SvgIcon,
},
props: { props: {
item: { item: {
type: Object, type: Object,
@ -59,7 +55,6 @@ export default {
default: true default: true
} }
}, },
data: () => ({ data: () => ({
collapsed: false, collapsed: false,
}), }),

View file

@ -111,11 +111,7 @@ import {SvgIcon} from '../svg.js';
const {csrfToken, pageData} = window.config; const {csrfToken, pageData} = window.config;
export default { export default {
name: 'PullRequestMergeForm', components: {SvgIcon},
components: {
SvgIcon,
},
data: () => ({ data: () => ({
csrfToken, csrfToken,
mergeForm: pageData.pullRequestMergeForm, mergeForm: pageData.pullRequestMergeForm,
@ -137,20 +133,17 @@ export default {
showMergeStyleMenu: false, showMergeStyleMenu: false,
showActionForm: false, showActionForm: false,
}), }),
computed: { computed: {
mergeButtonStyleClass() { mergeButtonStyleClass() {
if (this.mergeForm.allOverridableChecksOk) return 'green'; if (this.mergeForm.allOverridableChecksOk) return 'green';
return this.autoMergeWhenSucceed ? 'blue' : 'red'; return this.autoMergeWhenSucceed ? 'blue' : 'red';
} }
}, },
watch: { watch: {
mergeStyle(val) { mergeStyle(val) {
this.mergeStyleDetail = this.mergeForm.mergeStyles.find((e) => e.name === val); this.mergeStyleDetail = this.mergeForm.mergeStyles.find((e) => e.name === val);
} }
}, },
created() { created() {
this.mergeStyleAllowedCount = this.mergeForm.mergeStyles.reduce((v, msd) => v + (msd.allowed ? 1 : 0), 0); this.mergeStyleAllowedCount = this.mergeForm.mergeStyles.reduce((v, msd) => v + (msd.allowed ? 1 : 0), 0);
@ -158,15 +151,12 @@ export default {
if (!mergeStyle) mergeStyle = this.mergeForm.mergeStyles.find((e) => e.allowed)?.name; if (!mergeStyle) mergeStyle = this.mergeForm.mergeStyles.find((e) => e.allowed)?.name;
this.switchMergeStyle(mergeStyle, !this.mergeForm.canMergeNow); this.switchMergeStyle(mergeStyle, !this.mergeForm.canMergeNow);
}, },
mounted() { mounted() {
document.addEventListener('mouseup', this.hideMergeStyleMenu); document.addEventListener('mouseup', this.hideMergeStyleMenu);
}, },
unmounted() { unmounted() {
document.removeEventListener('mouseup', this.hideMergeStyleMenu); document.removeEventListener('mouseup', this.hideMergeStyleMenu);
}, },
methods: { methods: {
hideMergeStyleMenu() { hideMergeStyleMenu() {
this.showMergeStyleMenu = false; this.showMergeStyleMenu = false;

View file

@ -44,7 +44,7 @@ function fallbackCopyToClipboard(text) {
// For all DOM elements with [data-clipboard-target] or [data-clipboard-text], // For all DOM elements with [data-clipboard-target] or [data-clipboard-text],
// this copy-to-clipboard will work for them // this copy-to-clipboard will work for them
export default function initGlobalCopyToClipboardListener() { export function initGlobalCopyToClipboardListener() {
document.addEventListener('click', (e) => { document.addEventListener('click', (e) => {
let target = e.target; let target = e.target;
// in case <button data-clipboard-text><svg></button>, so we just search // in case <button data-clipboard-text><svg></button>, so we just search

View file

@ -1,4 +1,4 @@
export default async function createColorPicker($els) { export async function createColorPicker($els) {
if (!$els || !$els.length) return; if (!$els || !$els.length) return;
await Promise.all([ await Promise.all([

View file

@ -1,7 +1,7 @@
import $ from 'jquery'; import $ from 'jquery';
import 'jquery.are-you-sure'; import 'jquery.are-you-sure';
import {mqBinarySearch} from '../utils.js'; import {mqBinarySearch} from '../utils.js';
import createDropzone from './dropzone.js'; import {createDropzone} from './dropzone.js';
import {initCompColorPicker} from './comp/ColorPicker.js'; import {initCompColorPicker} from './comp/ColorPicker.js';
import {showGlobalErrorMessage} from '../bootstrap.js'; import {showGlobalErrorMessage} from '../bootstrap.js';
import {attachDropdownAria} from './aria.js'; import {attachDropdownAria} from './aria.js';

View file

@ -1,5 +1,5 @@
import $ from 'jquery'; import $ from 'jquery';
import createColorPicker from '../colorpicker.js'; import {createColorPicker} from '../colorpicker.js';
export function initCompColorPicker() { export function initCompColorPicker() {
createColorPicker($('.color-picker')); createColorPicker($('.color-picker'));

View file

@ -1,5 +1,5 @@
import $ from 'jquery'; import $ from 'jquery';
import attachTribute from '../tribute.js'; import {attachTribute} from '../tribute.js';
import {handleGlobalEnterQuickSubmit} from './QuickSubmit.js'; import {handleGlobalEnterQuickSubmit} from './QuickSubmit.js';
/** /**

View file

@ -2,7 +2,6 @@ import $ from 'jquery';
import {htmlEscape} from 'escape-goat'; import {htmlEscape} from 'escape-goat';
const {appSubUrl} = window.config; const {appSubUrl} = window.config;
const looksLikeEmailAddressCheck = /^\S+@\S+$/; const looksLikeEmailAddressCheck = /^\S+@\S+$/;
export function initCompSearchUserBox() { export function initCompSearchUserBox() {

View file

@ -1,4 +1,5 @@
import $ from 'jquery'; import $ from 'jquery';
const {csrfToken} = window.config; const {csrfToken} = window.config;
export function initCompWebHookEditor() { export function initCompWebHookEditor() {

View file

@ -4,7 +4,7 @@ import ContextPopup from '../components/ContextPopup.vue';
import {parseIssueHref} from '../utils.js'; import {parseIssueHref} from '../utils.js';
import {createTippy} from '../modules/tippy.js'; import {createTippy} from '../modules/tippy.js';
export default function initContextPopups() { export function initContextPopups() {
const refIssues = $('.ref-issue'); const refIssues = $('.ref-issue');
if (!refIssues.length) return; if (!refIssues.length) return;

View file

@ -1,6 +1,7 @@
import {copyToClipboard} from './clipboard.js'; import {copyToClipboard} from './clipboard.js';
import {showTemporaryTooltip} from '../modules/tippy.js'; import {showTemporaryTooltip} from '../modules/tippy.js';
import {convertImage} from '../utils.js'; import {convertImage} from '../utils.js';
const {i18n} = window.config; const {i18n} = window.config;
async function doCopy(content, btn) { async function doCopy(content, btn) {

View file

@ -1,4 +1,4 @@
export default async function createDropzone(el, opts) { export async function createDropzone(el, opts) {
const [{Dropzone}] = await Promise.all([ const [{Dropzone}] = await Promise.all([
import(/* webpackChunkName: "dropzone" */'dropzone'), import(/* webpackChunkName: "dropzone" */'dropzone'),
import(/* webpackChunkName: "dropzone" */'dropzone/dist/dropzone.css'), import(/* webpackChunkName: "dropzone" */'dropzone/dist/dropzone.css'),

View file

@ -1,7 +1,6 @@
import emojis from '../../../assets/emoji.json'; import emojis from '../../../assets/emoji.json';
const {assetUrlPrefix} = window.config; const {assetUrlPrefix, customEmojis} = window.config;
const {customEmojis} = window.config;
const tempMap = {...customEmojis}; const tempMap = {...customEmojis};
for (const {emoji, aliases} of emojis) { for (const {emoji, aliases} of emojis) {

View file

@ -1,6 +1,5 @@
import {svg} from '../svg.js'; import {svg} from '../svg.js';
// Hides the file if newFold is true, and shows it otherwise. The actual hiding is performed using CSS. // Hides the file if newFold is true, and shows it otherwise. The actual hiding is performed using CSS.
// //
// The fold arrow is the icon displayed on the upper left of the file box, especially intended for components having the 'fold-file' class. // The fold arrow is the icon displayed on the upper left of the file box, especially intended for components having the 'fold-file' class.

View file

@ -1,7 +1,6 @@
import {prettyNumber} from '../utils.js'; import {prettyNumber} from '../utils.js';
const {lang} = document.documentElement; const {lang} = document.documentElement;
const dateFormatter = new Intl.DateTimeFormat(lang, {year: 'numeric', month: 'long', day: 'numeric'}); const dateFormatter = new Intl.DateTimeFormat(lang, {year: 'numeric', month: 'long', day: 'numeric'});
const shortDateFormatter = new Intl.DateTimeFormat(lang, {year: 'numeric', month: 'short', day: 'numeric'}); const shortDateFormatter = new Intl.DateTimeFormat(lang, {year: 'numeric', month: 'short', day: 'numeric'});
const dateTimeFormatter = new Intl.DateTimeFormat(lang, {year: 'numeric', month: 'short', day: 'numeric', hour: 'numeric', minute: 'numeric', second: 'numeric'}); const dateTimeFormatter = new Intl.DateTimeFormat(lang, {year: 'numeric', month: 'short', day: 'numeric', hour: 'numeric', minute: 'numeric', second: 'numeric'});

View file

@ -1,7 +1,8 @@
import {createApp} from 'vue'; import {createApp} from 'vue';
import ActivityHeatmap from '../components/ActivityHeatmap.vue'; import ActivityHeatmap from '../components/ActivityHeatmap.vue';
import {translateMonth, translateDay} from '../utils.js'; import {translateMonth, translateDay} from '../utils.js';
export default function initHeatmap() {
export function initHeatmap() {
const el = document.getElementById('user-heatmap'); const el = document.getElementById('user-heatmap');
if (!el) return; if (!el) return;

View file

@ -34,7 +34,7 @@ function getDefaultSvgBoundsIfUndefined(svgXml, src) {
return null; return null;
} }
export default function initImageDiff() { export function initImageDiff() {
function createContext(image1, image2) { function createContext(image1, image2) {
const size1 = { const size1 = {
width: image1 && image1.width || 0, width: image1 && image1.width || 0,

View file

@ -2,7 +2,7 @@ import {createApp} from 'vue';
import DiffFileTree from '../components/DiffFileTree.vue'; import DiffFileTree from '../components/DiffFileTree.vue';
import DiffFileList from '../components/DiffFileList.vue'; import DiffFileList from '../components/DiffFileList.vue';
export default function initDiffFileTree() { export function initDiffFileTree() {
const el = document.getElementById('diff-file-tree'); const el = document.getElementById('diff-file-tree');
if (!el) return; if (!el) return;

View file

@ -1,6 +1,6 @@
import $ from 'jquery'; import $ from 'jquery';
import {svg} from '../svg.js'; import {svg} from '../svg.js';
const {csrf} = window.config; const {csrf} = window.config;
const threshold = 50; const threshold = 50;

View file

@ -1,6 +1,6 @@
import $ from 'jquery'; import $ from 'jquery';
export default function initRepoGraphGit() { export function initRepoGraphGit() {
const graphContainer = document.getElementById('git-graph-container'); const graphContainer = document.getElementById('git-graph-container');
if (!graphContainer) return; if (!graphContainer) return;

View file

@ -1,7 +1,7 @@
import {createApp} from 'vue'; import {createApp} from 'vue';
import PullRequestMergeForm from '../components/PullRequestMergeForm.vue'; import PullRequestMergeForm from '../components/PullRequestMergeForm.vue';
export default function initPullRequestMergeForm() { export function initRepoPullRequestMergeForm() {
const el = document.getElementById('pull-request-merge-form'); const el = document.getElementById('pull-request-merge-form');
if (!el) return; if (!el) return;

View file

@ -1,6 +1,6 @@
import $ from 'jquery'; import $ from 'jquery';
import {htmlEscape} from 'escape-goat'; import {htmlEscape} from 'escape-goat';
import attachTribute from './tribute.js'; import {attachTribute} from './tribute.js';
import {createCommentEasyMDE, getAttachedEasyMDE} from './comp/EasyMDE.js'; import {createCommentEasyMDE, getAttachedEasyMDE} from './comp/EasyMDE.js';
import {initEasyMDEImagePaste} from './comp/ImagePaste.js'; import {initEasyMDEImagePaste} from './comp/ImagePaste.js';
import {initCompMarkupContentPreviewTab} from './comp/MarkupContentPreview.js'; import {initCompMarkupContentPreviewTab} from './comp/MarkupContentPreview.js';

View file

@ -3,33 +3,28 @@ import {createCommentEasyMDE, getAttachedEasyMDE} from './comp/EasyMDE.js';
import {initCompMarkupContentPreviewTab} from './comp/MarkupContentPreview.js'; import {initCompMarkupContentPreviewTab} from './comp/MarkupContentPreview.js';
import {initEasyMDEImagePaste} from './comp/ImagePaste.js'; import {initEasyMDEImagePaste} from './comp/ImagePaste.js';
import { import {
initRepoIssueBranchSelect, initRepoIssueCodeCommentCancel, initRepoIssueBranchSelect, initRepoIssueCodeCommentCancel, initRepoIssueCommentDelete,
initRepoIssueCommentDelete, initRepoIssueComments, initRepoIssueDependencyDelete, initRepoIssueReferenceIssue,
initRepoIssueComments, initRepoIssueDependencyDelete, initRepoIssueStatusButton, initRepoIssueTitleEdit, initRepoIssueWipToggle,
initRepoIssueReferenceIssue, initRepoIssueStatusButton, initRepoPullRequestUpdate, updateIssuesMeta,
initRepoIssueTitleEdit,
initRepoIssueWipToggle, initRepoPullRequestUpdate,
updateIssuesMeta,
} from './repo-issue.js'; } from './repo-issue.js';
import {initUnicodeEscapeButton} from './repo-unicode-escape.js'; import {initUnicodeEscapeButton} from './repo-unicode-escape.js';
import {svg} from '../svg.js'; import {svg} from '../svg.js';
import {htmlEscape} from 'escape-goat'; import {htmlEscape} from 'escape-goat';
import {initRepoBranchTagDropdown} from '../components/RepoBranchTagDropdown.js'; import {initRepoBranchTagDropdown} from '../components/RepoBranchTagDropdown.js';
import { import {
initRepoCloneLink, initRepoCloneLink, initRepoCommonBranchOrTagDropdown, initRepoCommonFilterSearchDropdown,
initRepoCommonBranchOrTagDropdown,
initRepoCommonFilterSearchDropdown,
initRepoCommonLanguageStats, initRepoCommonLanguageStats,
} from './repo-common.js'; } from './repo-common.js';
import {initCitationFileCopyContent} from './citation.js'; import {initCitationFileCopyContent} from './citation.js';
import {initCompLabelEdit} from './comp/LabelEdit.js'; import {initCompLabelEdit} from './comp/LabelEdit.js';
import {initRepoDiffConversationNav} from './repo-diff.js'; import {initRepoDiffConversationNav} from './repo-diff.js';
import attachTribute from './tribute.js'; import {attachTribute} from './tribute.js';
import createDropzone from './dropzone.js'; import {createDropzone} from './dropzone.js';
import {initCommentContent, initMarkupContent} from '../markup/content.js'; import {initCommentContent, initMarkupContent} from '../markup/content.js';
import {initCompReactionSelector} from './comp/ReactionSelector.js'; import {initCompReactionSelector} from './comp/ReactionSelector.js';
import {initRepoSettingBranches} from './repo-settings.js'; import {initRepoSettingBranches} from './repo-settings.js';
import initRepoPullRequestMergeForm from './repo-issue-pr-form.js'; import {initRepoPullRequestMergeForm} from './repo-issue-pr-form.js';
const {csrfToken} = window.config; const {csrfToken} = window.config;

View file

@ -10,7 +10,7 @@ const $lfsSettings = $('#lfs_settings');
const $lfsEndpoint = $('#lfs_endpoint'); const $lfsEndpoint = $('#lfs_endpoint');
const $items = $('#migrate_items').find('input[type=checkbox]'); const $items = $('#migrate_items').find('input[type=checkbox]');
export default function initRepoMigration() { export function initRepoMigration() {
checkAuth(); checkAuth();
setLFSSettingsVisibility(); setLFSSettingsVisibility();

View file

@ -84,7 +84,7 @@ async function initRepoProjectSortable() {
} }
} }
export default function initRepoProject() { export function initRepoProject() {
if (!$('.repository.projects').length) { if (!$('.repository.projects').length) {
return; return;
} }

View file

@ -1,5 +1,5 @@
import $ from 'jquery'; import $ from 'jquery';
import attachTribute from './tribute.js'; import {attachTribute} from './tribute.js';
import {initCompMarkupContentPreviewTab} from './comp/MarkupContentPreview.js'; import {initCompMarkupContentPreviewTab} from './comp/MarkupContentPreview.js';
import {initEasyMDEImagePaste} from './comp/ImagePaste.js'; import {initEasyMDEImagePaste} from './comp/ImagePaste.js';
import {createCommentEasyMDE} from './comp/EasyMDE.js'; import {createCommentEasyMDE} from './comp/EasyMDE.js';

View file

@ -35,7 +35,7 @@ async function checkCacheValidity() {
} }
} }
export default async function initServiceWorker() { export async function initServiceWorker() {
if (!('serviceWorker' in navigator)) return; if (!('serviceWorker' in navigator)) return;
if (useServiceWorker) { if (useServiceWorker) {

View file

@ -1,4 +1,4 @@
export default function initTableSort() { export function initTableSort() {
for (const header of document.querySelectorAll('th[data-sortt-asc]') || []) { for (const header of document.querySelectorAll('th[data-sortt-asc]') || []) {
const sorttAsc = header.getAttribute('data-sortt-asc'); const sorttAsc = header.getAttribute('data-sortt-asc');
const sorttDesc = header.getAttribute('data-sortt-desc'); const sorttDesc = header.getAttribute('data-sortt-desc');

View file

@ -49,7 +49,7 @@ function makeCollections({mentions, emoji}) {
return collections; return collections;
} }
export default async function attachTribute(elementOrNodeList, {mentions, emoji} = {}) { export async function attachTribute(elementOrNodeList, {mentions, emoji} = {}) {
if (!window.config.requireTribute || !elementOrNodeList) return; if (!window.config.requireTribute || !elementOrNodeList) return;
const nodes = Array.from('length' in elementOrNodeList ? elementOrNodeList : [elementOrNodeList]); const nodes = Array.from('length' in elementOrNodeList ? elementOrNodeList : [elementOrNodeList]);
if (!nodes.length) return; if (!nodes.length) return;

View file

@ -6,16 +6,16 @@ import {initVueEnv} from './components/VueComponentLoader.js';
import {initRepoActivityTopAuthorsChart} from './components/RepoActivityTopAuthors.vue'; import {initRepoActivityTopAuthorsChart} from './components/RepoActivityTopAuthors.vue';
import {initDashboardRepoList} from './components/DashboardRepoList.js'; import {initDashboardRepoList} from './components/DashboardRepoList.js';
import attachTribute from './features/tribute.js'; import {attachTribute} from './features/tribute.js';
import initGlobalCopyToClipboardListener from './features/clipboard.js'; import {initGlobalCopyToClipboardListener} from './features/clipboard.js';
import initContextPopups from './features/contextpopup.js'; import {initContextPopups} from './features/contextpopup.js';
import initRepoGraphGit from './features/repo-graph.js'; import {initRepoGraphGit} from './features/repo-graph.js';
import initHeatmap from './features/heatmap.js'; import {initHeatmap} from './features/heatmap.js';
import initImageDiff from './features/imagediff.js'; import {initImageDiff} from './features/imagediff.js';
import initRepoMigration from './features/repo-migration.js'; import {initRepoMigration} from './features/repo-migration.js';
import initRepoProject from './features/repo-projects.js'; import {initRepoProject} from './features/repo-projects.js';
import initServiceWorker from './features/serviceworker.js'; import {initServiceWorker} from './features/serviceworker.js';
import initTableSort from './features/tablesort.js'; import {initTableSort} from './features/tablesort.js';
import {initAdminUserListSearchForm} from './features/admin/users.js'; import {initAdminUserListSearchForm} from './features/admin/users.js';
import {initAdminConfigs} from './features/admin/config.js'; import {initAdminConfigs} from './features/admin/config.js';
import {initMarkupAnchors} from './markup/anchors.js'; import {initMarkupAnchors} from './markup/anchors.js';
@ -24,7 +24,7 @@ import {initRepoIssueContentHistory} from './features/repo-issue-content.js';
import {initStopwatch} from './features/stopwatch.js'; import {initStopwatch} from './features/stopwatch.js';
import {initFindFileInRepo} from './features/repo-findfile.js'; import {initFindFileInRepo} from './features/repo-findfile.js';
import {initCommentContent, initMarkupContent} from './markup/content.js'; import {initCommentContent, initMarkupContent} from './markup/content.js';
import initDiffFileTree from './features/repo-diff-filetree.js'; import {initDiffFileTree} from './features/repo-diff-filetree.js';
import {initUserAuthLinkAccountView, initUserAuthOauth2} from './features/user-auth.js'; import {initUserAuthLinkAccountView, initUserAuthOauth2} from './features/user-auth.js';
import { import {

View file

@ -26,7 +26,6 @@ import octiconSidebarExpand from '../../public/img/svg/octicon-sidebar-expand.sv
import octiconTriangleDown from '../../public/img/svg/octicon-triangle-down.svg'; import octiconTriangleDown from '../../public/img/svg/octicon-triangle-down.svg';
import octiconX from '../../public/img/svg/octicon-x.svg'; import octiconX from '../../public/img/svg/octicon-x.svg';
export const svgs = { export const svgs = {
'octicon-chevron-down': octiconChevronDown, 'octicon-chevron-down': octiconChevronDown,
'octicon-chevron-right': octiconChevronRight, 'octicon-chevron-right': octiconChevronRight,
@ -57,7 +56,6 @@ export const svgs = {
'octicon-x': octiconX, 'octicon-x': octiconX,
}; };
const parser = new DOMParser(); const parser = new DOMParser();
const serializer = new XMLSerializer(); const serializer = new XMLSerializer();