thedesk/src/components/AddColumn/PublicTimeline.vue

86 lines
1.7 KiB
Vue
Raw Normal View History

<template>
<div>
2019-04-23 23:42:07 +09:00
<div v-if="showInput">
<input type="text" placeholder="e.g:mstdn.jp" v-model="instance">
<BaseButton
@click.native="addTL"
class="primary fill"
style="--font-size:.8em;"
:disabled="!hasDomain"
2019-04-23 23:42:07 +09:00
>Add Column</BaseButton>
</div>
<div id="timelines">
<div v-for="(value, key, index) in pubTL" :key="index" class="tl">
{{value}}
</div>
</div>
<BaseButton
v-if="!showInput"
@click.native="showInput = true"
class="primary fill"
style="--font-size:.8em;"
>Show Menu</BaseButton>
</div>
</template>
<script lang="ts">
import { ipcRenderer } from 'electron'
import { Component, Vue } from 'vue-property-decorator'
type Instance = string
2019-04-23 23:42:07 +09:00
type showInput = boolean
type Timelines = string[]
@Component
export default class AddColumn extends Vue {
2019-04-23 23:42:07 +09:00
public instance: Instance = ''
public showInput: showInput = true
public pubTL: Timelines = []
public get hasDomain() {
return this.instance != ''
}
2019-04-23 23:42:07 +09:00
public addTL() {
this.showInput = false
2019-04-24 05:30:16 +09:00
let instance = this.instance
this.pubTL.push(instance)
2019-04-24 01:07:20 +09:00
this.timeline()
}
public timeline() {
this.pubTL.forEach(function (value) {
2019-04-24 05:30:16 +09:00
ipcRenderer.send('no-auth-timeline', value);
2019-04-24 01:07:20 +09:00
});
2019-04-23 23:42:07 +09:00
}
}
</script>=
<style scoped lang="postcss">
input {
color: var(--color);
background-color: transparent;
font-size: var(--font-size);
border: none;
border-bottom: 1px solid #9e9e9e;
border-radius: 0;
line-height: 3em;
width: 80%;
outline: none;
margin: 1em;
transition-duration: 0.5s;
&:focus {
border-color: #26d69a;
}
}
2019-04-24 03:58:06 +09:00
#timelines {
display: flex;
width: 100%;
2019-04-23 23:42:07 +09:00
}
2019-04-24 03:58:06 +09:00
.tl {
height: 100%;
2019-04-23 23:42:07 +09:00
flex-grow: 4;
}
</style>