-
Notifications
You must be signed in to change notification settings - Fork 390
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1761 from yuvipanda/split
Split big index.js file into multiple smaller files
- Loading branch information
Showing
6 changed files
with
178 additions
and
171 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
|
||
export const BASE_URL = $('#base-url').data().url; | ||
export const BADGE_BASE_URL = $('#badge-base-url').data().url; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import { getPathType } from './path'; | ||
|
||
|
||
export function getBuildFormValues() { | ||
const providerPrefix = $('#provider_prefix').val().trim(); | ||
let repo = $('#repository').val().trim(); | ||
if (providerPrefix !== 'git') { | ||
repo = repo.replace(/^(https?:\/\/)?gist.github.com\//, ''); | ||
repo = repo.replace(/^(https?:\/\/)?github.com\//, ''); | ||
repo = repo.replace(/^(https?:\/\/)?gitlab.com\//, ''); | ||
} | ||
// trim trailing or leading '/' on repo | ||
repo = repo.replace(/(^\/)|(\/?$)/g, ''); | ||
// git providers encode the URL of the git repository as the repo | ||
// argument. | ||
if (repo.includes("://") || providerPrefix === 'gl') { | ||
repo = encodeURIComponent(repo); | ||
} | ||
|
||
let ref = $('#ref').val().trim() || $("#ref").attr("placeholder"); | ||
if (providerPrefix === 'zenodo' || providerPrefix === 'figshare' || providerPrefix === 'dataverse' || | ||
providerPrefix === 'hydroshare') { | ||
ref = ""; | ||
} | ||
const path = $('#filepath').val().trim(); | ||
return { | ||
'providerPrefix': providerPrefix, 'repo': repo, | ||
'ref': ref, 'path': path, 'pathType': getPathType() | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
import { Terminal } from 'xterm'; | ||
import { FitAddon } from 'xterm-addon-fit'; | ||
|
||
export function setUpLog() { | ||
const log = new Terminal({ | ||
convertEol: true, | ||
disableStdin: true | ||
}); | ||
|
||
const fitAddon = new FitAddon(); | ||
log.loadAddon(fitAddon); | ||
const logMessages = []; | ||
|
||
log.open(document.getElementById('log'), false); | ||
fitAddon.fit(); | ||
|
||
$(window).resize(function () { | ||
fitAddon.fit(); | ||
}); | ||
|
||
const $panelBody = $("div.panel-body"); | ||
log.show = function () { | ||
$('#toggle-logs button.toggle').text('hide'); | ||
$panelBody.removeClass('hidden'); | ||
}; | ||
|
||
log.hide = function () { | ||
$('#toggle-logs button.toggle').text('show'); | ||
$panelBody.addClass('hidden'); | ||
}; | ||
|
||
log.toggle = function () { | ||
if ($panelBody.hasClass('hidden')) { | ||
log.show(); | ||
} else { | ||
log.hide(); | ||
} | ||
}; | ||
|
||
$('#view-raw-logs').on('click', function (ev) { | ||
const blob = new Blob([logMessages.join('')], { type: 'text/plain' }); | ||
this.href = window.URL.createObjectURL(blob); | ||
// Prevent the toggle action from firing | ||
ev.stopPropagation(); | ||
}); | ||
|
||
$('#toggle-logs').click(log.toggle); | ||
|
||
log.writeAndStore = function (msg) { | ||
logMessages.push(msg); | ||
log.write(msg); | ||
}; | ||
|
||
return [log, fitAddon]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import { BASE_URL } from "./constants"; | ||
|
||
let configDict = {}; | ||
|
||
function setLabels() { | ||
const provider = $("#provider_prefix").val(); | ||
const text = configDict[provider]["text"]; | ||
const tag_text = configDict[provider]["tag_text"]; | ||
const ref_prop_disabled = configDict[provider]["ref_prop_disabled"]; | ||
const label_prop_disabled = configDict[provider]["label_prop_disabled"]; | ||
const placeholder = "HEAD"; | ||
|
||
$("#ref").attr('placeholder', placeholder).prop("disabled", ref_prop_disabled); | ||
$("label[for=ref]").text(tag_text).prop("disabled", label_prop_disabled); | ||
$("#repository").attr('placeholder', text); | ||
$("label[for=repository]").text(text); | ||
} | ||
|
||
export function updateRepoText() { | ||
if (Object.keys(configDict).length === 0) { | ||
const configUrl = BASE_URL + "_config"; | ||
fetch(configUrl).then(resp => { | ||
resp.json().then(data => { | ||
configDict = data | ||
setLabels(); | ||
}); | ||
}) | ||
} else { | ||
setLabels(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
import { makeBadgeMarkup } from './badge'; | ||
import { getBuildFormValues } from './form'; | ||
import { BADGE_BASE_URL, BASE_URL } from './constants'; | ||
|
||
function v2url(providerPrefix, repository, ref, path, pathType) { | ||
// return a v2 url from a providerPrefix, repository, ref, and (file|url)path | ||
if (repository.length === 0) { | ||
// no repo, no url | ||
return null; | ||
} | ||
let url; | ||
if (BADGE_BASE_URL) { | ||
url = BADGE_BASE_URL + 'v2/' + providerPrefix + '/' + repository + '/' + ref; | ||
} | ||
else { | ||
url = window.location.origin + BASE_URL + 'v2/' + providerPrefix + '/' + repository + '/' + ref; | ||
} | ||
if (path && path.length > 0) { | ||
// encode the path, it will be decoded in loadingMain | ||
url = url + '?' + pathType + 'path=' + encodeURIComponent(path); | ||
} | ||
return url; | ||
} | ||
|
||
export function updateUrls(formValues) { | ||
if (typeof formValues === "undefined") { | ||
formValues = getBuildFormValues(); | ||
} | ||
const url = v2url( | ||
formValues.providerPrefix, | ||
formValues.repo, | ||
formValues.ref, | ||
formValues.path, | ||
formValues.pathType | ||
); | ||
|
||
if ((url || '').trim().length > 0) { | ||
// update URLs and links (badges, etc.) | ||
$("#badge-link").attr('href', url); | ||
$('#basic-url-snippet').text(url); | ||
$('#markdown-badge-snippet').text( | ||
makeBadgeMarkup(BADGE_BASE_URL, BASE_URL, url, 'markdown') | ||
); | ||
$('#rst-badge-snippet').text( | ||
makeBadgeMarkup(BADGE_BASE_URL, BASE_URL, url, 'rst') | ||
); | ||
} else { | ||
['#basic-url-snippet', '#markdown-badge-snippet', '#rst-badge-snippet'].map(function (item) { | ||
const el = $(item); | ||
el.text(el.attr('data-default')); | ||
}); | ||
} | ||
} |