more missing stuff

This commit is contained in:
Henry Jameson 2018-09-09 22:31:34 +03:00
parent 136add8a2f
commit 394153380d
5 changed files with 7 additions and 7 deletions

View file

@ -1,7 +1,7 @@
const FeaturesPanel = { const FeaturesPanel = {
computed: { computed: {
chat: function () { chat: function () {
return this.$store.state.config.chatAvailable && (!this.$store.state.chatDisabled) return this.$store.state.instance.chatAvailable && (!this.$store.state.chatDisabled)
}, },
gopher: function () { return this.$store.state.instance.gopherAvailable }, gopher: function () { return this.$store.state.instance.gopherAvailable },
whoToFollow: function () { return this.$store.state.instance.suggestionsEnabled }, whoToFollow: function () { return this.$store.state.instance.suggestionsEnabled },

View file

@ -1,7 +1,7 @@
const InstanceSpecificPanel = { const InstanceSpecificPanel = {
computed: { computed: {
instanceSpecificPanelContent () { instanceSpecificPanelContent () {
return this.$store.state.config.instanceSpecificPanelContent return this.$store.state.instance.instanceSpecificPanelContent
} }
} }
} }

View file

@ -102,7 +102,7 @@ const PostStatusForm = {
name: '', name: '',
utf: utf || '', utf: utf || '',
// eslint-disable-next-line camelcase // eslint-disable-next-line camelcase
img: utf ? '' : this.$store.state.config.server + image_url, img: utf ? '' : this.$store.state.instance.server + image_url,
highlighted: index === this.highlighted highlighted: index === this.highlighted
})) }))
} else { } else {
@ -129,7 +129,7 @@ const PostStatusForm = {
return this.newStatus.status.length return this.newStatus.status.length
}, },
statusLengthLimit () { statusLengthLimit () {
return this.$store.state.config.textlimit return this.$store.state.instance.textlimit
}, },
hasStatusLengthLimit () { hasStatusLengthLimit () {
return this.statusLengthLimit > 0 return this.statusLengthLimit > 0

View file

@ -83,14 +83,14 @@ const WhoToFollowPanel = {
moreUrl: function () { moreUrl: function () {
var host = window.location.hostname var host = window.location.hostname
var user = this.user var user = this.user
var suggestionsWeb = this.$store.state.config.suggestionsWeb var suggestionsWeb = this.$store.state.instance.suggestionsWeb
var url var url
url = suggestionsWeb.replace(/{{host}}/g, encodeURIComponent(host)) url = suggestionsWeb.replace(/{{host}}/g, encodeURIComponent(host))
url = url.replace(/{{user}}/g, encodeURIComponent(user)) url = url.replace(/{{user}}/g, encodeURIComponent(user))
return url return url
}, },
suggestionsEnabled () { suggestionsEnabled () {
return this.$store.state.config.suggestionsEnabled return this.$store.state.instance.suggestionsEnabled
} }
}, },
watch: { watch: {

View file

@ -11,7 +11,7 @@
<img v-bind:src="img1"/> <router-link :to="{ name: 'user-profile', params: { id: id1 } }">{{ name1 }}</router-link><br> <img v-bind:src="img1"/> <router-link :to="{ name: 'user-profile', params: { id: id1 } }">{{ name1 }}</router-link><br>
<img v-bind:src="img2"/> <router-link :to="{ name: 'user-profile', params: { id: id2 } }">{{ name2 }}</router-link><br> <img v-bind:src="img2"/> <router-link :to="{ name: 'user-profile', params: { id: id2 } }">{{ name2 }}</router-link><br>
<img v-bind:src="img3"/> <router-link :to="{ name: 'user-profile', params: { id: id3 } }">{{ name3 }}</router-link><br> <img v-bind:src="img3"/> <router-link :to="{ name: 'user-profile', params: { id: id3 } }">{{ name3 }}</router-link><br>
<img v-bind:src="$store.state.config.logo"> <a v-bind:href="moreUrl" target="_blank">{{$t('who_to_follow.more')}}</a> <img v-bind:src="$store.state.instance.logo"> <a v-bind:href="moreUrl" target="_blank">{{$t('who_to_follow.more')}}</a>
</p> </p>
</div> </div>
</div> </div>