pinafore/routes/settings/instances/[instanceName].html

167 lines
5.5 KiB
HTML
Raw Normal View History

2018-01-13 20:12:17 +00:00
<:Head>
<title>{{params.instanceName}}</title>
</:Head>
<Layout page='settings'>
<SettingsLayout page='settings/instances/{{params.instanceName}}' label="{{params.instanceName}}">
<h1>{{params.instanceName}}</h1>
2018-01-13 22:19:51 +00:00
2018-01-14 04:07:11 +00:00
{{#if instanceUserAccount}}
2018-01-14 02:59:49 +00:00
<h2>Logged in as:</h2>
2018-01-14 19:34:53 +00:00
<div class="acct-current-user">
2018-01-15 03:30:04 +00:00
<img alt="Profile picture for @{{instanceUserAccount.acct}}"
2018-01-14 19:34:53 +00:00
class="acct-avatar" src="{{instanceUserAccount.avatar}}" />
<a class="acct-handle" rel="noopener" target="_blank"
href="{{instanceUserAccount.url}}">@{{instanceUserAccount.acct}}</a>
<span class="acct-display-name">{{instanceUserAccount.display_name}}</span>
2018-01-14 02:59:49 +00:00
</div>
<h2>Theme:</h2>
<form class="theme-chooser">
{{#each themes as theme}}
<div class="theme-group">
<input type="radio" id="choice-theme-{{theme.name}}"
value="{{theme.name}}" checked="$currentTheme === theme.name"
bind:group="selectedTheme" on:change="onThemeChange()">
<label for="choice-theme-{{theme.name}}">{{theme.label}}</label>
</div>
{{/each}}
</form>
<form class="instance-actions">
2018-01-14 20:00:22 +00:00
{{#if $loggedInInstancesInOrder.length > 1}}
<button class="primary" disabled="{{$currentInstance === params.instanceName}}"
on:click="onSwitchToThisInstance()">
2018-01-14 20:09:36 +00:00
{{$currentInstance === params.instanceName ? 'This is your current instance' : 'Switch to this instance'}}
2018-01-14 20:00:22 +00:00
</button>
{{/if}}
<button on:click="onLogOut()">Log out</button>
2018-01-14 02:59:49 +00:00
</form>
2018-01-13 22:19:51 +00:00
{{/if}}
2018-01-13 20:12:17 +00:00
</SettingsLayout>
</Layout>
2018-01-13 22:19:51 +00:00
<style>
2018-01-14 19:34:53 +00:00
.acct-current-user {
2018-01-14 20:00:22 +00:00
background: var(--form-bg);
border: 1px solid var(--main-border);
border-radius: 4px;
2018-01-13 22:19:51 +00:00
padding: 20px;
2018-01-14 19:34:53 +00:00
display: grid;
2018-01-13 22:19:51 +00:00
align-items: center;
font-size: 1.3em;
2018-01-14 19:34:53 +00:00
grid-template-areas:
"avatar handle"
"avatar display-name";
grid-gap: 20px;
2018-01-13 22:19:51 +00:00
}
2018-01-14 19:34:53 +00:00
.acct-avatar {
2018-01-13 22:19:51 +00:00
width: 64px;
height: 64px;
border-radius: 4px;
2018-01-14 19:34:53 +00:00
grid-area: avatar;
2018-01-13 22:19:51 +00:00
}
2018-01-14 19:34:53 +00:00
.acct-handle {
grid-area: handle;
2018-01-13 22:19:51 +00:00
}
.theme-chooser {
2018-01-14 20:00:22 +00:00
background: var(--form-bg);
border: 1px solid var(--main-border);
border-radius: 4px;
2018-01-13 22:19:51 +00:00
display: block;
padding: 20px;
line-height: 2em;
}
.theme-group {
display: flex;
align-items: center;
}
.theme-chooser label {
margin: 2px 10px 0;
}
2018-01-14 02:59:49 +00:00
.instance-actions {
width: 100%;
display: flex;
justify-content: right;
2018-01-14 20:00:22 +00:00
margin: 20px 0;
2018-01-14 02:59:49 +00:00
}
.instance-actions button {
margin: 0 5px;
2018-01-14 02:59:49 +00:00
flex-basis: 100%;
}
2018-01-13 22:19:51 +00:00
</style>
2018-01-13 20:12:17 +00:00
<script>
import { store } from '../../_utils/store'
import Layout from '../../_components/Layout.html'
import SettingsLayout from '../_components/SettingsLayout.html'
2018-01-14 04:07:11 +00:00
import { getThisUserAccount } from '../../_utils/mastodon/user'
2018-01-14 01:41:15 +00:00
import { themes } from '../../_static/themes'
2018-01-14 02:59:49 +00:00
import { switchToTheme } from '../../_utils/themeEngine'
2018-01-14 20:00:22 +00:00
import { goto } from 'sapper/runtime.js'
import { toast } from '../../_utils/toast'
2018-01-13 20:12:17 +00:00
export default {
components: {
Layout,
SettingsLayout
},
2018-01-13 22:19:51 +00:00
store: () => store,
2018-01-14 01:41:15 +00:00
data: () => ({
themes: themes
}),
2018-01-13 22:19:51 +00:00
oncreate: async function () {
2018-01-14 04:07:11 +00:00
let instanceName = this.get('params').instanceName
let loggedInInstances = this.store.get('loggedInInstances')
let instanceThemes = this.store.get('instanceThemes')
let instanceData = loggedInInstances[instanceName]
let instanceUserAccount = await getThisUserAccount(instanceName, instanceData.access_token)
2018-01-14 01:41:15 +00:00
this.set({
2018-01-14 04:07:11 +00:00
instanceUserAccount: instanceUserAccount,
selectedTheme: instanceThemes[instanceName]
2018-01-14 01:41:15 +00:00
})
},
methods: {
2018-01-14 04:07:11 +00:00
onThemeChange() {
2018-01-14 01:41:15 +00:00
let newTheme = this.get('selectedTheme')
2018-01-14 04:07:11 +00:00
let instanceName = this.get('params').instanceName
2018-01-14 01:41:15 +00:00
let instanceThemes = this.store.get('instanceThemes')
instanceThemes[instanceName] = newTheme
this.store.set({instanceThemes: instanceThemes})
this.store.save()
2018-01-14 02:59:49 +00:00
if (this.get('params').instanceName === this.store.get('currentInstance')) {
switchToTheme(newTheme)
}
2018-01-14 04:07:11 +00:00
},
onSwitchToThisInstance() {
let instanceName = this.get('params').instanceName
let instanceThemes = this.store.get('instanceThemes')
this.store.set({
currentInstance: instanceName
})
this.store.save()
switchToTheme(instanceThemes[instanceName])
2018-01-14 20:00:22 +00:00
},
onLogOut() {
let loggedInInstances = this.store.get('loggedInInstances')
let instanceThemes = this.store.get('instanceThemes')
let loggedInInstancesInOrder = this.store.get('loggedInInstancesInOrder')
let instanceName = this.get('params').instanceName
let currentInstance = this.store.get('currentInstance')
loggedInInstancesInOrder.splice(loggedInInstancesInOrder.indexOf(instanceName), 1)
let newInstance = instanceName === currentInstance ?
loggedInInstancesInOrder[0] :
currentInstance
delete loggedInInstances[instanceName]
delete instanceThemes[instanceName]
this.store.set({
loggedInInstances: loggedInInstances,
instanceThemes: instanceThemes,
loggedInInstancesInOrder: loggedInInstancesInOrder,
currentInstance: newInstance
})
this.store.save()
switchToTheme(instanceThemes[newInstance] || 'default')
toast.say(`Logged out of ${instanceName}`)
2018-01-14 20:00:22 +00:00
goto('/settings/instances')
2018-01-14 01:41:15 +00:00
}
2018-01-13 22:19:51 +00:00
}
2018-01-13 20:12:17 +00:00
}
</script>