manifest/nuxt/components/Pojem.vue

110 lines
2.2 KiB
Vue
Raw Normal View History

<script setup="setup">
2023-11-13 00:22:34 +01:00
import { stripHtml } from 'string-strip-html'
const { etherFetch } = useEtherpadApi()
const store = usePojmiStore()
const route = useRoute()
const props = defineProps({
naslov: String
})
if (props.naslov && !(props.naslov in store.pojmi)) {
await store.naloziPojme()
}
const pojem = computed(() => store.pojmi[props.naslov])
2024-01-24 18:54:28 +01:00
const revisionId = computed(() => pojem.value ? pojem.value.id : null)
2023-11-13 00:22:34 +01:00
const urejanje = ref(false)
const container = ref(null)
2024-01-24 17:37:41 +01:00
const obrazec = ref(null)
2023-11-13 00:22:34 +01:00
const urediPojem = async () => {
// Ustvari pad s tekstom pojma, ce se ne obstaja
const tekstPojma = stripHtml(pojem.value.tekst).result
const resp = await etherFetch('/createPad', {
padID: revisionId.value,
text: tekstPojma
})
2023-11-13 00:22:34 +01:00
urejanje.value = true
}
onMounted(() => {
2024-01-24 18:54:28 +01:00
// Prazen pojem? Nazaj na manifest
if (!pojem.value.id) {
navigateTo('/manifest#skrol')
}
// Link na editiranje pojma? Poskrolaj nanj + odpri editiranje
if (route.params.guid === revisionId.value) {
urejanje.value = true
setTimeout(() => obrazec.value.scrollIntoView({ behavior: 'smooth' }), 50)
} else {
// Sicer samo poskrolaj na pojem
2024-01-24 17:37:41 +01:00
setTimeout(() => container.value.parentNode.scrollIntoView({ behavior: 'smooth' }), 50)
}
})
</script>
<template>
<section ref="container">
<div v-if="!urejanje" class="gumb" @click="urediPojem">Uredi</div>
<div v-if="pojem" class="pojem">
2024-01-24 17:37:41 +01:00
<h2>{{ naslov }}</h2>
<div class="tekst" v-html="pojem.tekst" />
2023-11-13 00:22:34 +01:00
</div>
2024-01-17 22:20:56 +01:00
<PojemForm v-if="urejanje"
ref="obrazec"
2024-01-17 20:35:42 +01:00
:revisionId="revisionId"
2024-01-17 22:20:56 +01:00
:pojem="pojem"
2024-01-17 20:35:42 +01:00
:urejanje="urejanje"
2024-01-24 17:37:41 +01:00
:onZapri="() => { urejanje = false; store.naloziPojme() }" />
</section>
</template>
<style scoped>
2024-01-24 17:37:41 +01:00
section {
width: 100%;
}
.pojem {
2024-01-07 22:33:20 +01:00
position: relative;
width: 50%;
float: left;
2024-01-07 22:33:20 +01:00
}
h2 {
text-transform: uppercase;
margin-top: 0;
}
form.pojem {
width: calc(50% - 32px);
margin-left: 32px;
gap: 1rem;
float: right;
}
2024-01-07 22:33:20 +01:00
.gumb {
position: sticky;
top: 0;
2024-01-07 22:33:20 +01:00
right: 0;
float: right;
2024-01-07 22:33:20 +01:00
}
@media screen and (max-width: 768px) {
.pojem {
2024-01-07 22:33:20 +01:00
min-height: 4rem;
width: 100%;
}
2024-01-19 12:42:02 +01:00
form.pojem {
margin-left: 0;
min-height: 70vh;
2024-01-07 22:33:20 +01:00
}
2024-01-06 18:48:22 +01:00
}
</style>