mobilizon.chapril.org-mobil.../js/src/views/About/Privacy.vue

65 lines
1.3 KiB
Vue

<template>
<div class="container section">
<h2 class="title">{{ $t("Privacy Policy") }}</h2>
<div class="content" v-html="config.privacy.bodyHtml" />
</div>
</template>
<script lang="ts">
import { Component, Vue, Watch } from "vue-property-decorator";
import { PRIVACY } from "@/graphql/config";
import { IConfig } from "@/types/config.model";
import { InstancePrivacyType } from "@/types/admin.model";
@Component({
apollo: {
config: {
query: PRIVACY,
variables() {
return {
locale: this.locale,
};
},
skip() {
return !this.locale;
},
},
},
})
export default class Privacy extends Vue {
config!: IConfig;
locale: string | null = null;
created() {
this.locale = this.$i18n.locale;
}
@Watch("config", { deep: true })
watchConfig(config: IConfig) {
if (config.privacy.type) {
console.log(this.config.privacy);
this.redirectToUrl();
}
}
redirectToUrl() {
if (this.config.privacy.type === InstancePrivacyType.URL) {
window.location.replace(this.config.privacy.url);
}
}
}
</script>
<style lang="scss" scoped>
main > .container {
background: $white;
::v-deep dt {
font-weight: bold;
}
}
.content ::v-deep li {
margin-bottom: 1rem;
}
</style>