mirror of
https://github.com/tdurieux/anonymous_github.git
synced 2026-09-12 21:58:57 +02:00
27 lines
2.5 KiB
HTML
27 lines
2.5 KiB
HTML
<div v-code-editor="{ content: content, options: aceOption }" v-if="type == 'text'"></div>
|
|
<div class="file-content markdown-body" v-if="type == 'html'" v-html="sanitize(content)"></div>
|
|
<html-doc v-if="type == 'html-doc' && !showSource && content != null" :content="content" :base-url="(fileBaseUrl)" :allow-scripts="allowScripts"></html-doc>
|
|
<div v-code-editor="{ content: content, options: aceOption }" v-if="(type == 'code' || (type == 'html-doc' && showSource)) && content != null"></div>
|
|
<img class="image-content" v-if="type == 'image'" :src="safeUrl((url))">
|
|
<iframe class="h-100 overflow-auto w-100 b-0" v-if="type == 'media'" :src="safeUrl((url))"></iframe>
|
|
<pdfviewer v-if="type == 'pdf'" :src="safeUrl((url))"></pdfviewer>
|
|
<div v-if="type == 'audio'"><audio controls="controls"><source :src="safeUrl((url))"></audio></div>
|
|
<div v-if="type == 'IPython'"><notebook :file="url" :content="content"></notebook></div>
|
|
<div class="file-error container d-flex h-100" v-if="type == 'rate_limited'">
|
|
<div class="paper-ratelimit-card m-auto" style="max-width:520px;">
|
|
<div class="paper-ratelimit-head">
|
|
<i class="fas fa-hourglass-half"></i>
|
|
<div>
|
|
<div class="paper-error-eyebrow">Temporarily paused</div>
|
|
<div class="paper-error-title">GitHub API rate limit reached</div>
|
|
</div>
|
|
</div>
|
|
<p class="paper-error-msg">This repository will be available in <strong>{{ rateLimitCountdown }}</strong>. The page will reload automatically.</p>
|
|
</div>
|
|
</div>
|
|
<div class="file-error container d-flex h-100" v-if="type == 'error'"><h1 class="paper-empty-title m-auto" v-text="fmt.translate("ERRORS." + (content))">Error</h1></div>
|
|
<div class="file-error container d-flex h-100" v-if="type == 'loading' && !error"><h1 class="paper-empty-title m-auto">Loading…</h1></div>
|
|
<div class="file-error container d-flex h-100" v-if="type == 'empty'"><h1 class="paper-empty-title m-auto">Empty <em>repository</em>.</h1></div>
|
|
<div class="file-error container d-flex h-100" v-if="content == null && type != 'empty'"><h1 class="paper-empty-title m-auto">Empty <em>file</em>.</h1></div>
|
|
<div class="file-error container d-flex h-100" v-if="type == 'binary'"><h1 class="paper-empty-title m-auto">Unsupported <em>binary file</em>. You can <a target="_blank" :href="safeUrl((url) + "&download=true")">download it</a>.</h1></div>
|