126 lines
		
	
	
		
			No EOL
		
	
	
		
			3.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			126 lines
		
	
	
		
			No EOL
		
	
	
		
			3.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<:Head>
 | 
						|
  <title>{{params.instanceName}}</title>
 | 
						|
</:Head>
 | 
						|
 | 
						|
<Layout page='settings'>
 | 
						|
  <SettingsLayout page='settings/instances/{{params.instanceName}}' label="{{params.instanceName}}">
 | 
						|
    <h1>{{params.instanceName}}</h1>
 | 
						|
 | 
						|
    {{#if instanceUserAccount}}
 | 
						|
      <h2>Logged in as:</h2>
 | 
						|
      <div class="current-user">
 | 
						|
        <img src="{{instanceUserAccount.avatar}}" />
 | 
						|
        <a rel="noopener" target="_blank" href="{{instanceUserAccount.url}}">@{{instanceUserAccount.acct}}</a>
 | 
						|
        <span class="acct-name">{{instanceUserAccount.display_name}}</span>
 | 
						|
      </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">
 | 
						|
        <button class="primary" disabled="{{$currentInstance === params.instanceName}}"
 | 
						|
          on:click="onSwitchToThisInstance()">
 | 
						|
          Switch to this instance
 | 
						|
        </button>
 | 
						|
        <button>Log out</button>
 | 
						|
      </form>
 | 
						|
    {{/if}}
 | 
						|
  </SettingsLayout>
 | 
						|
</Layout>
 | 
						|
<style>
 | 
						|
  .current-user {
 | 
						|
    padding: 20px;
 | 
						|
    display: flex;
 | 
						|
    align-items: center;
 | 
						|
    font-size: 1.3em;
 | 
						|
  }
 | 
						|
  .current-user img {
 | 
						|
    width: 64px;
 | 
						|
    height: 64px;
 | 
						|
    border-radius: 4px;
 | 
						|
  }
 | 
						|
  .current-user img, .current-user a, .current-user span {
 | 
						|
    margin-right: 20px;
 | 
						|
  }
 | 
						|
  .theme-chooser {
 | 
						|
    display: block;
 | 
						|
    padding: 20px;
 | 
						|
    line-height: 2em;
 | 
						|
  }
 | 
						|
  .theme-group {
 | 
						|
    display: flex;
 | 
						|
    align-items: center;
 | 
						|
  }
 | 
						|
  .theme-chooser label {
 | 
						|
    margin: 2px 10px 0;
 | 
						|
  }
 | 
						|
  .instance-actions {
 | 
						|
    width: 100%;
 | 
						|
    display: flex;
 | 
						|
    justify-content: right;
 | 
						|
  }
 | 
						|
  .instance-actions button {
 | 
						|
    margin: 0 20px;
 | 
						|
    flex-basis: 100%;
 | 
						|
  }
 | 
						|
</style>
 | 
						|
<script>
 | 
						|
  import { store } from '../../_utils/store'
 | 
						|
  import Layout from '../../_components/Layout.html'
 | 
						|
  import SettingsLayout from '../_components/SettingsLayout.html'
 | 
						|
  import { getThisUserAccount } from '../../_utils/mastodon/user'
 | 
						|
  import { themes } from '../../_static/themes'
 | 
						|
  import { switchToTheme } from '../../_utils/themeEngine'
 | 
						|
 | 
						|
  export default {
 | 
						|
    components: {
 | 
						|
      Layout,
 | 
						|
      SettingsLayout
 | 
						|
    },
 | 
						|
    store: () => store,
 | 
						|
    data: () => ({
 | 
						|
      themes: themes
 | 
						|
    }),
 | 
						|
    oncreate: async function () {
 | 
						|
      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)
 | 
						|
      this.set({
 | 
						|
        instanceUserAccount: instanceUserAccount,
 | 
						|
        selectedTheme: instanceThemes[instanceName]
 | 
						|
      })
 | 
						|
    },
 | 
						|
    methods: {
 | 
						|
      onThemeChange() {
 | 
						|
        let newTheme = this.get('selectedTheme')
 | 
						|
        let instanceName = this.get('params').instanceName
 | 
						|
        let instanceThemes = this.store.get('instanceThemes')
 | 
						|
        instanceThemes[instanceName] = newTheme
 | 
						|
        this.store.set({instanceThemes: instanceThemes})
 | 
						|
        this.store.save()
 | 
						|
        if (this.get('params').instanceName === this.store.get('currentInstance')) {
 | 
						|
          switchToTheme(newTheme)
 | 
						|
        }
 | 
						|
      },
 | 
						|
      onSwitchToThisInstance() {
 | 
						|
        let instanceName = this.get('params').instanceName
 | 
						|
        let instanceThemes = this.store.get('instanceThemes')
 | 
						|
        this.store.set({
 | 
						|
          currentInstance: instanceName
 | 
						|
        })
 | 
						|
        this.store.save()
 | 
						|
        switchToTheme(instanceThemes[instanceName])
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }
 | 
						|
</script> |