use svelte store and localstorage for ui state
This commit is contained in:
parent
6d90d44abc
commit
e7e17f3899
|
@ -0,0 +1,31 @@
|
||||||
|
import { Store } from 'svelte/store.js'
|
||||||
|
|
||||||
|
const key = 'ui-store'
|
||||||
|
|
||||||
|
class LocalStorageStore extends Store {
|
||||||
|
constructor(state) {
|
||||||
|
super(state)
|
||||||
|
if (process.browser) {
|
||||||
|
let cached = localStorage.getItem(key)
|
||||||
|
if (cached) {
|
||||||
|
this.set(JSON.parse(cached))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
save() {
|
||||||
|
if (process.browser) {
|
||||||
|
localStorage.setItem(key, JSON.stringify(this._state))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const store = new LocalStorageStore({
|
||||||
|
instanceNameInSearch: ''
|
||||||
|
})
|
||||||
|
|
||||||
|
if (process.browser) {
|
||||||
|
window.store = store
|
||||||
|
}
|
||||||
|
|
||||||
|
export { store }
|
|
@ -16,24 +16,23 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import Layout from './_components/Layout.html'
|
import Layout from './_components/Layout.html'
|
||||||
import { databasePromise } from './_utils/database'
|
import { store } from './_utils/store'
|
||||||
import { getHomeTimeline } from './_utils/mastodon'
|
import { getHomeTimeline } from './_utils/mastodon'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
oncreate: function () {
|
oncreate: function () {
|
||||||
if (process.browser) {
|
if (process.browser) {
|
||||||
(async () => {
|
(async () => {
|
||||||
let db = await databasePromise
|
let instanceData = this.store.get('currentOauthInstance')
|
||||||
let instanceData = await db.get('instance')
|
|
||||||
if (!instanceData) {
|
if (!instanceData) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
let response = await (await getHomeTimeline(instanceData.instanceName, instanceData.access_token)).json()
|
let response = await (await getHomeTimeline(instanceData.instanceName, instanceData.access_token)).json()
|
||||||
console.log(response)
|
console.log(response)
|
||||||
|
|
||||||
})()
|
})()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
store: () => store,
|
||||||
components: {
|
components: {
|
||||||
Layout
|
Layout
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
<form on:submit='handleSubmit(event)'>
|
<form on:submit='handleSubmit(event)'>
|
||||||
<label for="instanceInput">Instance name:</label>
|
<label for="instanceInput">Instance name:</label>
|
||||||
<input type="text" id="instanceInput" bind:value='instanceName' placeholder=''>
|
<input type="text" id="instanceInput" bind:value='$instanceNameInSearch' placeholder=''>
|
||||||
<button class="primary" type="submit" id="submitButton">Add instance</button>
|
<button class="primary" type="submit" id="submitButton">Add instance</button>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
|
@ -45,6 +45,7 @@
|
||||||
import Layout from '../_components/Layout.html';
|
import Layout from '../_components/Layout.html';
|
||||||
import { registerApplication, generateAuthLink, getAccessTokenFromAuthCode } from '../_utils/mastodon'
|
import { registerApplication, generateAuthLink, getAccessTokenFromAuthCode } from '../_utils/mastodon'
|
||||||
import { databasePromise } from '../_utils/database'
|
import { databasePromise } from '../_utils/database'
|
||||||
|
import { store } from '../_utils/store'
|
||||||
import { goto } from 'sapper/runtime.js'
|
import { goto } from 'sapper/runtime.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
@ -53,20 +54,7 @@
|
||||||
(async () => {
|
(async () => {
|
||||||
let params = new URLSearchParams(location.search)
|
let params = new URLSearchParams(location.search)
|
||||||
if (params.has('code')) {
|
if (params.has('code')) {
|
||||||
let db = await databasePromise
|
this.onReceivedOauthCode(params.get('code'))
|
||||||
let instanceData = await db.get('instance')
|
|
||||||
this.set({instanceName: instanceData.instanceName})
|
|
||||||
let code = params.get('code')
|
|
||||||
instanceData.code = code
|
|
||||||
let response = await (await getAccessTokenFromAuthCode(
|
|
||||||
instanceData.instanceName,
|
|
||||||
instanceData.client_id,
|
|
||||||
instanceData.client_secret,
|
|
||||||
instanceData.code
|
|
||||||
)).json()
|
|
||||||
instanceData = Object.assign(instanceData, response)
|
|
||||||
await db.set(`instance`, instanceData)
|
|
||||||
goto('/')
|
|
||||||
}
|
}
|
||||||
})()
|
})()
|
||||||
}
|
}
|
||||||
|
@ -74,18 +62,33 @@
|
||||||
components: {
|
components: {
|
||||||
Layout
|
Layout
|
||||||
},
|
},
|
||||||
data: () => ({
|
store: () => store,
|
||||||
instanceName: ''
|
|
||||||
}),
|
|
||||||
methods: {
|
methods: {
|
||||||
|
onReceivedOauthCode: async function(code) {
|
||||||
|
let instanceData = this.store.get('currentOauthInstance')
|
||||||
|
instanceData.code = code
|
||||||
|
let response = await (await getAccessTokenFromAuthCode(
|
||||||
|
instanceData.instanceName,
|
||||||
|
instanceData.client_id,
|
||||||
|
instanceData.client_secret,
|
||||||
|
instanceData.code
|
||||||
|
)).json()
|
||||||
|
instanceData = Object.assign(instanceData, response)
|
||||||
|
this.store.set({
|
||||||
|
'currentOauthInstance': instanceData,
|
||||||
|
'instanceNameInSearch': '',
|
||||||
|
})
|
||||||
|
this.store.save()
|
||||||
|
goto('/')
|
||||||
|
},
|
||||||
handleSubmit: async function(event) {
|
handleSubmit: async function(event) {
|
||||||
event.preventDefault()
|
event.preventDefault()
|
||||||
let instanceName = this.get('instanceName')
|
let instanceName = this.store.get('instanceNameInSearch')
|
||||||
instanceName = instanceName.replace(/^https?:\/\//, '').replace('/$', '')
|
instanceName = instanceName.replace(/^https?:\/\//, '').replace('/$', '')
|
||||||
let data = await (await registerApplication(instanceName)).json()
|
let data = await (await registerApplication(instanceName)).json()
|
||||||
let db = await databasePromise
|
|
||||||
data.instanceName = instanceName
|
data.instanceName = instanceName
|
||||||
await db.set(`instance`, data)
|
this.store.set({'currentOauthInstance': data})
|
||||||
|
this.store.save()
|
||||||
let oauthUrl = generateAuthLink(instanceName, data.client_id)
|
let oauthUrl = generateAuthLink(instanceName, data.client_id)
|
||||||
document.location.href = oauthUrl
|
document.location.href = oauthUrl
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue