2018-01-13 20:12:17 +00:00
|
|
|
<:Head>
|
|
|
|
<title>Instances</title>
|
|
|
|
</:Head>
|
|
|
|
|
|
|
|
<Layout page='settings'>
|
|
|
|
<SettingsLayout page='settings/instances' label="Instances">
|
|
|
|
<h1>Instances</h1>
|
|
|
|
|
|
|
|
{{#if $isUserLoggedIn}}
|
|
|
|
<p>Instances you've connected to:</p>
|
|
|
|
<SettingsList>
|
|
|
|
{{#each $loggedInInstancesAsList as instance}}
|
2018-01-14 04:07:11 +00:00
|
|
|
<SettingsListItem offsetForIcon="{{instance.name !== $currentInstance}}"
|
|
|
|
icon="{{instance.name === $currentInstance ? '#fa-star' : ''}}"
|
|
|
|
href="/settings/instances/{{instance.name}}"
|
|
|
|
label="{{instance.name}}" />
|
2018-01-13 20:12:17 +00:00
|
|
|
{{/each}}
|
|
|
|
</SettingsList>
|
2018-01-13 21:18:40 +00:00
|
|
|
<p><a href="/settings/instances/add">Add another instance</a></p>
|
2018-01-13 20:12:17 +00:00
|
|
|
{{else}}
|
|
|
|
<p><a href="/settings/instances/add">Connect to an instance</a> to start using Pinafore.</p>
|
|
|
|
{{/if}}
|
|
|
|
</SettingsLayout>
|
|
|
|
</Layout>
|
|
|
|
<script>
|
|
|
|
import { store } from '../../_utils/store'
|
|
|
|
import Layout from '../../_components/Layout.html'
|
|
|
|
import SettingsLayout from '../_components/SettingsLayout.html'
|
|
|
|
import SettingsList from '../_components/SettingsList.html'
|
|
|
|
import SettingsListItem from '../_components/SettingsListItem.html'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
Layout,
|
|
|
|
SettingsLayout,
|
|
|
|
SettingsList,
|
|
|
|
SettingsListItem
|
|
|
|
},
|
|
|
|
store: () => store
|
|
|
|
}
|
|
|
|
</script>
|