123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221 |
- <template>
- <q-page>
- <div
- class="row justify-center text-h4 text-weight-bold text-blue-6 q-mt-md"
- >
- {{ $t("blogs_of_the_week") }}
- </div>
- <div class="q-pa-md">
- <q-carousel
- animated
- v-model="slide"
- navigation
- infinite
- height="540px"
- :autoplay="autoplay"
- arrows
- transition-prev="slide-right"
- transition-next="slide-left"
- @mouseenter="autoplay = false"
- @mouseleave="autoplay = 2000"
- >
- <q-carousel-slide
- v-for="(item, index) in sliders"
- :key="index"
- :name="index"
- :img-src="item.imageUrl"
- class="cursor-pointer"
- @click="gotoUrl(item.linkToBlog)"
- >
- <div class="q-mt-xl q-ml-xl absolute-left custom-caption">
- <div style="height: 100px"></div>
- <div class="text-h1 text-white text-weight-bolder">
- {{ item.title }}
- </div>
- <div class="text-h5 text-white text-weight-medium">
- {{ item.subTitle }}
- </div>
- </div>
- </q-carousel-slide>
- </q-carousel>
- </div>
- <div class="row justify-center q-pa-md">
- <q-btn
- rounded
- color="primary"
- size="xl"
- @click="goPage('/blog-create')"
- :label="$t('write_your_blog')"
- />
- </div>
- <div class="row q-pa-md">
- <div class="q-gutter-y-md col-12 col-md-8">
- <q-tabs v-model="tab" dense align="justify" class="text-primary">
- <q-tab :ripple="false" name="lb" :label="$t('latest_blogs')" />
- <q-tab
- :ripple="false"
- name="mvm"
- :label="$t('most_viewed_in_month')"
- />
- <q-tab
- :ripple="false"
- name="bfl"
- :label="$t('blogers_m_following')"
- />
- </q-tabs>
- </div>
- </div>
- <div class="row justify-left">
- <div
- class="col-12 col-sm-4 col-md-2"
- v-for="(item, index) in globalUnifiedItemList"
- v-bind:key="index"
- >
- <div class="q-pa-md">
- <q-card class="cursor-pointer" flat bordered style="height: 530px">
- <q-img
- @click="goPage('/blog-detail/' + item.value.blogId)"
- :src="item.value.headImageUrl"
- style="height: 300px"
- placeholder-src="https://photoprism.hichinatravel.com/api/v1/t/2bfc32550ae040956f7e861566d26c487c0143e7/32mcf2k4/tile_224"
- />
- <q-card-section style="max-height: 200px; overflow: hidden">
- <div class="text-overline text-orange-9">
- {{ item.value.createdTime }}
- </div>
- <div class="text-h5 q-mt-sm q-mb-xs">
- <a :href="'./blog-detail/' + item.value.blogId">{{
- item.value.title
- }}</a>
- </div>
- <div class="text-caption text-grey">
- {{ item.value.content }}
- </div>
- </q-card-section>
- </q-card>
- </div>
- </div>
- </div>
- <div class="row">
- <div class="col-12">
- <p class="text-center" style="background-color: #b4b4b4">
- Scroll to load more
- </p>
- </div>
- </div>
- </q-page>
- </template>
- <script>
- import { ref, onMounted } from "vue";
- import { api } from "boot/axios";
- import { debounce } from "lodash";
- export default {
- name: "BlogPage",
- setup() {
- const unifiedItemList = ref([]);
- const blogPageSizePage = ref(20);
- const currentPage = ref(1);
- const bloglist = ref([]);
- const sliders = ref([]);
- const totalBlogCount = ref(0);
- const globalUnifiedItemList = ref([]);
- function loadBlogList() {
- unifiedItemList.value = [];
- var params = {};
- params.pageSize = blogPageSizePage.value;
- params.query = "";
- params.page = currentPage.value;
- api
- .get("/api/public/blog/list", { params: params })
- .then(function (response) {
- bloglist.value = response.data.data.data;
- totalBlogCount.value = response.data.data.total;
- for (var index in bloglist.value) {
- var obj = {};
- // obj.type=parseInt(Math.random() * 2)==0?'blog':'scaleblog';
- obj.type = "blog";
- obj.value = bloglist.value[index];
- unifiedItemList.value.push(obj);
- }
- globalUnifiedItemList.value = globalUnifiedItemList.value.concat(
- unifiedItemList.value
- );
- console.log("globalUnifiedItemList");
- console.log(globalUnifiedItemList.value);
- })
- .catch(function (error) {
- console.log(error);
- });
- }
- function loadSliders() {
- api
- .get("/api/public/pagecontent/bloghomesliders")
- .then(function (response) {
- console.log("blog sliders:");
- sliders.value = response.data.data;
- console.log(sliders.value);
- loadBlogList();
- })
- .catch(function (error) {
- console.log(error);
- });
- }
- function loadMore() {
- currentPage.value += 1;
- var maxPage = totalBlogCount.value / blogPageSizePage.value;
- if (currentPage.value <= maxPage + 1) {
- loadBlogList();
- }
- }
- function getNextBatch() {
- window.onscroll = debounce(function () {
- let bottomOfWindow =
- document.documentElement.scrollTop + window.innerHeight + 100 >
- document.documentElement.scrollHeight;
- if (bottomOfWindow) {
- loadMore();
- }
- }, 500);
- }
- function logPv() {
- api
- .post("/api/public/pagestats/pv/blog")
- .then((res) => {
- console.log("log pv:");
- console.log(res.data);
- })
- .catch((err) => {
- console.error("Error:", err);
- });
- }
- onMounted(() => {
- logPv();
- loadSliders();
- getNextBatch();
- });
- return {
- slide: ref(1),
- autoplay: ref(true),
- sliders,
- tab: ref("lb"),
- globalUnifiedItemList,
- };
- },
- };
- </script>
- <style lang="sass" scoped>
- .custom-caption
- text-align: left
- padding: 12px
- color: white
- </style>
|