hugo-sandstorm/pages/index.vue

165 lines
5.1 KiB
Vue

<template>
<div>
<template v-if="isLoading">
<p>
Loading public site information...
</p>
</template>
<template v-else-if="loadError">
<p>
Unable to load public site information! Try restarting the grain.
This is a known bug.
</p>
</template>
<template v-else>
<p>Your public site is available at <a :href="url" rel="noopener" target="_blank">{{ url }}</a>.</p>
<div v-if="!isDemo">
<p>To set up your domain to point at your public site, add the following DNS records to your domain. Replace <code>blog.example.com</code> with your site's hostname.</p>
<table>
<thead>
<th>Name</th>
<th>Type</th>
<th>Value</th>
</thead>
<tbody>
<tr>
<td>blog.example.com</td>
<td>CNAME</td>
<td>{{ domain }}</td>
</tr>
<tr>
<td>sandstorm-www.blog.example.com</td>
<td>TXT</td>
<td>{{ publicId }}</td>
</tr>
</tbody>
</table>
</div>
</template>
<h2>Editing Your Site</h2>
<p>To check out the Git repository containing your site, first add an authorization key to Git:</p>
<render-template
rpcId="gitAuthorize"
:template="'echo url=' + this.gitHost + ' | git -c credential.helper=store credential approve'"/>
<p>Then run the following to clone the site:</p>
<render-template
rpcId="gitClone"
:template="'git clone -c credential.helper=store ' + this.gitUrl + ' site'"/>
<p>Here are a few pointers to help you get started:</p>
<ul>
<li>Choose a theme to make your site look nice. Hugo's <a href="https://themes.gohugo.io">theme showcase</a> is a good place to start.</li>
<li>Add the theme to your Git repository as a subtree at <code>themes/themename</code>.</li>
<li>Add <code>theme = "themename"</code> to <code>Config.toml</code>.</li>
<li>Push the repository, and your new site will be immediately published.</li>
</ul>
<h2>Pushing Existing Site</h2>
<p>If you have an existing Hugo site, run the following to publish in this grain:</p>
<render-template
rpcId="gitPush"
:template="'git remote add origin ' + this.gitUrl + '\ngit push -fu origin master'"/>
<h2>Upgrade notes from the 0.20 Sandstorm release:</h2>
<ul>
<li>
If you were using inline HTML in any Markdown files, enter the following into
your <code>config.toml</code> file:
<pre>
[markup.goldmark.renderer]
unsafe= true
</pre>
</li>
</ul>
<p>
Be sure to <a href="https://gohugo.io/news/">read through the Hugo release notes</a>
if you notice any other odd behavior after upgrading.
</p>
<h2>Admin Interface (<a href="https://cloudcmd.io/">Cloud Commander</a>)</h2>
<a :class="{disabled: !dirty}" class="button" @click="commitLocal">Commit &amp; publish local changes</a>
<a :class="{disabled: !dirty}" class="button" @click="deleteLocal">Delete local changes (git reset --hard)</a>
<iframe id="files" src="/admin" style="width: 100%; height: 800px; margin-top: 1rem"></iframe>
</div>
</template>
<script>
import "isomorphic-fetch"
import RenderTemplate from "~components/render-template"
export default {
data: () => ({
isDemo: true,
url: "",
domain: "",
publicId: "",
isLoading: true,
loadError: null,
dirty: false
}),
computed: {
gitHost: () => {
if(process.BROWSER_BUILD)
return window.location.protocol+"//git:$API_TOKEN@$API_HOST"
else
return ""
},
gitUrl: () => {
if(process.BROWSER_BUILD)
return `${window.location.protocol}//git@$API_HOST/git`
else
return ""
}
},
// mounted actions occur immediately. we use async here to
// simplify promise handling.
async mounted () {
this.isLoading = true
try {
const result = await fetch("/publicId", {
credentials: "same-origin"
})
const jsonResult = await result.json()
this.isDemo = jsonResult.isDemo
this.url = jsonResult.url
this.publicId = jsonResult.publicId
this.domain = jsonResult.domain
} catch (e) {
console.error(e)
this.loadError = e
} finally {
this.isLoading = false
}
setInterval(this.checkDirty, 5000)
},
head: {
title: "Home"
},
methods: {
async commitLocal () {
if (!this.dirty) return
if (confirm('Are you sure?')) {
await fetch('/commit')
}
},
async deleteLocal () {
if (!this.dirty) return
if (confirm('Are you sure?')) {
await fetch('/reset-local')
document.getElementById('files').contentWindow.location.reload(true)
}
},
async checkDirty () {
const response = await fetch('/dirty')
const json = await response.json()
if (json.hasOwnProperty('dirty')) {
this.dirty = json.dirty
}
}
},
components: {RenderTemplate}
}
</script>