123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532 |
- <template>
- <div
- class="bar-list"
- v-if="
- show &&
- !(
- metadata.catalogRoot &&
- metadata.catalogRoot.length == 1 &&
- scenes.length == 1 &&
- secondaryList.length == 1
- )
- "
- :class="{ barshow: isShowScenesList }"
- >
- <div class="top-con">
- <div
- class="swiper-container"
- id="swScenes"
- :style="`width:${Math.min(scenesListW, innerW)}px;
- padding:${scenesListW > innerW ? '0 15px' : '0'}`"
- v-if="currentScenesList.length > 0"
- >
- <ul class="swiper-wrapper">
- <li
- @click="tabCurrentScene(item)"
- class="swiper-slide"
- :class="{
- active: currentScene.sceneCode == item.sceneCode,
- loopspan:
- item.sceneTitle.length > spanlength &&
- currentScene.id == item.id,
- }"
- :style="{ backgroundImage: `url(${item.icon})` }"
- v-for="(item, i) in currentScenesList"
- :key="i"
- >
- <i
- class="iconfont"
- :class="
- item.type == '4dkk' ? 'icon-editor_3d' : 'icon-editor_panoramic'
- "
- ></i>
- <div class="marquee">
- <marquee-text
- :repeat="1"
- :duration="Math.ceil(item.sceneTitle.length / 10) * 5"
- :key="item.id"
- v-if="
- item.sceneTitle.length > spanlength &&
- currentScene.id == item.id
- "
- >
- {{ item.sceneTitle }}
- </marquee-text>
- <span v-else>
- {{ item.sceneTitle }}
- </span>
- </div>
- </li>
- </ul>
- </div>
- <div
- class="swiper-container"
- id="swSecondary"
- :style="`width:${Math.min(secondaryW, innerW)}px;
- padding:${secondaryW > innerW ? '0 15px' : '0'}`"
- v-if="secondaryList.length > 1"
- >
- <ul class="swiper-wrapper">
- <li
- class="swiper-slide"
- @click="tabSecondary(item)"
- :class="{
- active: currentSecondary.id == item.id,
- loopspan:
- fixTitle(item.name).length > spanlength &&
- currentSecondary.id == item.id,
- }"
- v-for="(item, i) in secondaryList"
- :key="i"
- >
- <marquee-text
- :duration="Math.ceil(fixTitle(item.name).length / 10) * 5"
- :key="item.id"
- :repeat="1"
- v-if="
- fixTitle(item.name).length > spanlength &&
- currentSecondary.id == item.id
- "
- >
- {{ fixTitle(item.name) }}
- </marquee-text>
- <span v-else>
- {{ fixTitle(item.name) }}
- </span>
- </li>
- </ul>
- </div>
- </div>
- <div
- class="swiper-container"
- id="swcatalogRoot"
- :style="`width:${Math.min(catalogRootW, innerW)}px;
- padding:${catalogRootW > innerW ? '0 15px' : '0'}`"
- v-if="metadata.catalogRoot.length > 0 && metadata.catalogs.length > 1"
- >
- <ul class="swiper-wrapper" v-show="metadata.catalogRoot.length > 1">
- <li
- class="swiper-slide"
- :class="{
- active: currentCatalogRoot.id == item.id,
- loopspan:
- fixTitle(item.name).length > spanlength &&
- currentCatalogRoot.id == item.id,
- }"
- @click="tabRoot(item)"
- v-for="(item, i) in metadata.catalogRoot"
- :key="i"
- >
- <marquee-text
- :duration="Math.ceil(fixTitle(item.name).length / 10) * 5"
- :key="item.id"
- :repeat="1"
- v-if="
- fixTitle(item.name).length > spanlength &&
- currentCatalogRoot.id == item.id
- "
- >
- {{ fixTitle(item.name) }}
- </marquee-text>
- <span v-else>
- {{ fixTitle(item.name) }}
- </span>
- </li>
- </ul>
- </div>
- </div>
- </template>
- <script setup>
- import {
- ref,
- unref,
- watch,
- watchEffect,
- computed,
- onMounted,
- nextTick,
- } from "vue";
- import { useStore } from "vuex";
- import { useApp } from "@/app";
- import { useI18n, getLocale } from "@/i18n";
- const { t } = useI18n({ useScope: "global" });
- import MarqueeText from "vue-marquee-text-component";
- const store = useStore();
- const spanlength = ref(5);
- const metadata = computed(() => store.getters["scene/metadata"]);
- const scenes = computed(() => store.getters["scene/list"]);
- const currentScene = computed(() => store.getters["scene/currentScene"]);
- const currentCatalogRoot = computed(
- () => store.getters["scene/currentCatalogRoot"]
- );
- const currentSecondary = computed(
- () => store.getters["scene/currentSecondary"]
- );
- const secondaryList = computed(() => store.getters["scene/secondaryList"]);
- const isShowScenesList = computed(
- () => store.getters["functions/isShowScenesList"]
- );
- const currentScenesList = computed(
- () => store.getters["scene/currentScenesList"]
- );
- const swidth = ref({
- swcatalogRoot: 104,
- swSecondary: 84,
- swScenes: 72,
- });
- const innerW = computed(() => window.innerWidth);
- const scenesListW = computed(
- () => currentScenesList.value.length * (swidth.value["swScenes"] + 10) - 10
- );
- const secondaryW = computed(
- () => secondaryList.value.length * (swidth.value["swSecondary"] + 10) - 10
- );
- const catalogRootW = computed(
- () =>
- metadata.value.catalogRoot.length * (swidth.value["swcatalogRoot"] + 10) -
- 10
- );
- const show = ref(false);
- const tabCurrentScene = (data) => {
- console.log("tabCurrentScene", data.id, currentScene.value.id);
- if (data.id !== currentScene.value.id) {
- store.commit("scene/setCurrentScene", data);
- setTimeout(() => {
- scenesSwiperFocus();
- }, 300);
- } else {
- console.log("重复点击当前导航");
- // window.alert("alert-test-->重复点击当前导航");
- }
- };
- const tabSecondary = (data) => {
- store.commit("scene/setCurrentSecondary", data);
- };
- const tabRoot = (data) => {
- store.commit("scene/setCurrentCatalogRoot", data);
- };
- const fixTitle = (name) => {
- if (name == "默认二级分组") {
- name = t("navigation.default_group_two");
- } else if (name == "一级分组") {
- name = t("navigation.group_one");
- } else {
- name = name;
- }
- return name;
- };
- const swiperOptions = {
- slidesPerView: "auto",
- centeredSlides: true,
- spaceBetween: 10,
- centerInsufficientSlides: true,
- centeredSlidesBounds: true,
- freeMode: {
- enabled: true,
- sticky: false,
- },
- };
- // const sleep = (ms) => new Promise((r) => setTimeout(r, ms));
- const initMainSwiper = () => {
- nextTick(() => {
- if (window.mainNatSwiper) {
- window.mainNatSwiper.update();
- window.sencordNatSwiper.slideReset();
- }
- window.mainNatSwiper = new Swiper("#swcatalogRoot", swiperOptions);
- });
- };
- const initsencordNatSwiper = () => {
- nextTick(() => {
- if (window.sencordNatSwiper) {
- window.sencordNatSwiper.update();
- window.sencordNatSwiper.slideReset();
- }
- window.sencordNatSwiper = new Swiper("#swSecondary", swiperOptions);
- });
- };
- const initScenesSwiper = () => {
- console.warn("initScenesSwiper");
- nextTick(() => {
- if (window.scenesNatSwiper) {
- window.scenesNatSwiper.update();
- window.scenesNatSwiper.slideReset();
- // window.scenesNatSwiper = null;
- } else {
- window.scenesNatSwiper = new Swiper("#swScenes", {
- ...swiperOptions,
- });
- }
- scenesSwiperFocus();
- });
- };
- const scenesSwiperFocus = () => {
- const sceneIndex = Array.from(currentScenesList.value).findIndex(
- (item) => item.id === currentScene.value.id
- );
- if (window.scenesNatSwiper && window.scenesNatSwiper.slides.length > 0) {
- const index = sceneIndex < 0 ? 0 : sceneIndex;
- console.warn("scenesSwiperFocus", index);
- window.scenesNatSwiper.slideTo(index);
- }
- };
- const sencordNatSwiperFocus = () => {
- nextTick(() => {
- const current = Array.from(secondaryList.value).findIndex(
- (item) => item.id === currentSecondary.value.id
- );
- if (window.sencordNatSwiper && window.sencordNatSwiper.slides.length > 0) {
- console.warn("current-sencordNatSwiper-index", current);
- window.sencordNatSwiper.slideTo(current);
- }
- });
- };
- onMounted(() => {
- useApp().then(async (app) => {
- show.value = true;
- });
- watchEffect(() => {
- if (
- metadata.value.catalogRoot &&
- unref(metadata.value.catalogRoot).length > 0
- ) {
- initMainSwiper();
- }
- });
- watch(currentSecondary, () => {
- if (unref(secondaryList).length > 1) {
- initsencordNatSwiper();
- sencordNatSwiperFocus();
- } else {
- if (window.sencordNatSwiper) {
- console.warn("destroy-sencordNatSwiper");
- window.sencordNatSwiper.update();
- window.sencordNatSwiper.slideReset();
- }
- }
- });
- watch(currentScenesList, () => {
- initScenesSwiper();
- });
- });
- </script>
- <style lang="scss" scoped>
- .bar-list {
- position: absolute;
- bottom: 88px;
- left: 50%;
- transform: translateX(-50%);
- text-align: center;
- overflow: hidden;
- max-height: 0;
- transition: 0.3s all ease;
- z-index: 9;
- width: 100%;
- .swiper-container {
- width: 100%;
- position: relative;
- margin: 0 auto;
- > ul {
- > li {
- white-space: nowrap;
- > span,
- > div > span {
- cursor: pointer;
- display: inline-block;
- color: rgba(255, 255, 255, 0.6);
- }
- &.loopspan {
- > span,
- > div > span {
- animation: 5s wordsLoop linear infinite normal;
- }
- }
- &.active {
- > span,
- > div > span {
- color: rgba(255, 255, 255, 1);
- }
- }
- }
- }
- }
- .top-con {
- margin-bottom: 10px;
- padding: 10px 0;
- width: 100%;
- background: rgba(0, 0, 0, 0.5);
- }
- #swcatalogRoot {
- padding: 0 15px;
- > ul {
- > li {
- width: 104px;
- background: rgba(0, 0, 0, 0.5);
- border-radius: 4px;
- padding: 4px 10px;
- border: 1px solid rgba(255, 255, 255, 0.5);
- box-sizing: border-box;
- overflow: hidden;
- > span {
- width: 100%;
- word-break: keep-all;
- }
- &.active {
- border: 1px solid rgba(255, 255, 255, 1);
- }
- }
- }
- }
- #swSecondary {
- margin: 20px auto 10px;
- padding: 0 15px;
- > ul {
- > li {
- width: 84px;
- box-sizing: border-box;
- overflow: hidden;
- padding-bottom: 6px;
- > span {
- width: 100%;
- word-break: keep-all;
- }
- &.active {
- position: relative;
- &::before {
- content: "";
- display: inline-block;
- position: absolute;
- bottom: 0;
- width: 20px;
- height: 2px;
- z-index: 9999;
- left: 50%;
- transform: translateX(-50%);
- background: var(--colors-primary-base);
- }
- }
- }
- }
- }
- #swScenes {
- // padding: 0 15px;
- > ul {
- > li {
- cursor: pointer;
- width: 72px;
- height: 72px;
- border-radius: 6px;
- border: 1px solid #ffffff;
- background-size: cover;
- position: relative;
- overflow: hidden;
- .iconfont {
- position: absolute;
- left: 4px;
- top: 4px;
- z-index: 99;
- &::after {
- background: rgba(0, 0, 0, 0.3);
- content: "";
- width: 14px;
- height: 14px;
- display: inline-block;
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- z-index: -1;
- filter: blur(4px);
- }
- }
- > div {
- position: absolute;
- bottom: 0;
- left: 0;
- height: 20px;
- background: rgba(0, 0, 0, 0.5);
- width: 100%;
- overflow: hidden;
- > span,
- div {
- width: 100%;
- line-height: 20px;
- word-break: keep-all;
- }
- }
- &.active {
- border: 1px solid var(--colors-primary-base);
- > div {
- > span {
- }
- }
- }
- }
- }
- }
- }
- .barshow {
- max-height: 190px;
- }
- @keyframes wordsLoop {
- 0% {
- transform: translateX(100%);
- -webkit-transform: translateX(100%);
- }
- 100% {
- transform: translateX(-180%);
- -webkit-transform: translateX(-180%);
- }
- }
- </style>
|