123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557 |
- <template>
- <div class="bar-list" v-if="metadata?.navigationTrees?.length" :class="{ barshow: isShowScenesList }">
- <div class="top-con" v-show="currentScenesList.length">
- <div
- ref="scene-swiper"
- class="scene-list 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">
- <template v-for="(item, i) in currentScenesList" :key="item.id">
- <li
- @click="tabCurrentScene(item)"
- class="swiper-slide"
- :style="`background-image:url(${item.icon});`"
- :class="{
- active: currentScene.sceneCode == item.sceneCode,
- loopspan: item.name.length > spanlength && currentScene.id == item.id,
- }"
- >
- <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.name.length / 10) * 5" :key="item.id" v-if="item.name.length > spanlength && currentScene.id == item.id">
- {{ item.name }}
- </marquee-text>
- <span v-else>
- {{ item.name }}
- </span>
- </div>
- </li>
- </template>
- </ul>
- </div>
- <div
- class="swiper-container second-group-list"
- ref="second-group-swiper"
- id="swSecondary"
- :style="`width:${Math.min(secondaryW, innerW)}px;
- padding:${secondaryW > innerW ? '0 15px' : '0'}`"
- v-if="metadata?.navigationTrees[rootTabIndex] && metadata?.navigationTrees[rootTabIndex]?.children[0]?.type == 'group' && showSecondTab"
- >
- <ul class="swiper-wrapper">
- <template v-for="(item, i) in metadata?.navigationTrees[rootTabIndex]?.children">
- <li
- class="swiper-slide"
- @click="tabSecond(item, i)"
- :class="{
- active: currentSecondId == item.id,
- loopspan: fixTitle(item.name).length > spanlength && currentSecondId == item.id,
- }"
- :key="item.id"
- v-if="item.children.length"
- >
- <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>
- </template>
- </ul>
- </div>
- </div>
- <div
- class="swiper-container root-group-list"
- ref="root-group"
- id="swcatalogRoot"
- :style="`width:${Math.min(catalogRootW, innerW)}px;
- padding:${catalogRootW > innerW ? '0 15px' : '0'}`"
- v-if="metadata?.navigationTrees?.length > 1"
- >
- <ul class="swiper-wrapper">
- <template v-for="(item, i) in metadata?.navigationTrees" :key="item.id">
- <li
- v-if="item.children.length"
- class="swiper-slide"
- :class="{
- active: currentRootId == item.id,
- loopspan: fixTitle(item.name).length > spanlength && currentRootId == item.id,
- }"
- @click="tabRoot(item, i)"
- >
- <marquee-text :duration="Math.ceil(fixTitle(item.name).length / 10) * 5" :key="item.id" :repeat="1" v-if="fixTitle(item.name).length > spanlength && currentRootId == item.id">
- {{ fixTitle(item.name) }}
- </marquee-text>
- <span v-else>
- {{ fixTitle(item.name) }}
- </span>
- </li>
- </template>
- </ul>
- </div>
- </div>
- </template>
- <script setup>
- import { ref, watch, computed, onMounted, nextTick, unref, watchEffect } from "vue";
- import { useStore } from "vuex";
- import { useApp } from "@/app";
- import MarqueeText from "vue-marquee-text-component";
- import { useI18n, getLocale } from "@/i18n";
- const { t } = useI18n({ useScope: "global" });
- 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 currentSecondId = computed(() => store.getters["scene/currentSecondId"]);
- const currentRootId = computed(() => store.getters["scene/currentRootId"]);
- const clamp = computed(() => (num, min, max) => Math.min(Math.max(num, min), max));
- 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 show = ref(false);
- const swidth = ref({
- swcatalogRoot: 104,
- swSecondary: 84,
- swScenes: 72,
- });
- const SceneSwiper = ref(null);
- const SecondGroupSwiper = ref(null);
- const rootGroupSwiper = ref(null);
- const rootTabIndex = computed(() => {
- let idx = 0;
- if (metadata.value && metadata.value?.navigationTrees) {
- idx = metadata.value?.navigationTrees.findIndex((item) => item.id == currentRootId.value);
- }
- return idx;
- });
- const secondTabIndex = computed(() => {
- let idx = 0;
- if (metadata.value && metadata.value?.navigationTrees) {
- idx = metadata.value.navigationTrees[rootTabIndex.value]?.children.findIndex((item) => item.id == currentSecondId.value);
- }
- return idx;
- });
- const showSecondTab = computed(() => {
- return metadata.value && metadata.value?.navigationTrees ? metadata.value?.navigationTrees[rootTabIndex.value].children.some((item) => item.id != currentSecondId.value) : false;
- });
- const scenesListW = computed(() => currentScenesList.value.length * (swidth.value["swScenes"] + 10) - 10);
- const secondaryW = computed(() => {
- let list = metadata.value?.navigationTrees[rootTabIndex.value].children.filter((item) => item.children.length);
- return list.length * (swidth.value["swSecondary"] + 10) - 10;
- });
- const catalogRootW = computed(() => {
- let list = metadata.value.navigationTrees.filter((item) => item.children.length);
- return list.length * (swidth.value["swcatalogRoot"] + 10);
- });
- const innerW = computed(() => window.innerWidth);
- watch(
- () => currentScenesList.value,
- () => {
- nextTick(() => {
- initSceneSwiper();
- initRootGroupSwiper();
- // if (metadata.value.navigationTrees[rootTabIndex.value]?.children[secondTabIndex.value]?.type == "group") {
- // initSecondGroupSwiper();
- // }
- });
- }
- );
- watch(
- () => rootTabIndex.value,
- (val) => {
- console.error(val);
- nextTick(() => {
- if (metadata.value.navigationTrees[rootTabIndex.value]?.children[secondTabIndex.value]?.type == "group") {
- initSecondGroupSwiper();
- }
- });
- }
- );
- 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,
- slideToClickedSlide: true,
- spaceBetween: 10,
- centerInsufficientSlides: true,
- centeredSlidesBounds: true,
- freeMode: {
- enabled: true,
- sticky: false,
- },
- };
- const tabRoot = (item, index) => {
- store.commit("scene/setData", { currentRootId: item.id, currentSecondId: null });
- setTimeout(() => {
- changeSceneList();
- }, 0);
- // setTimeout(() => {
- // rootGroupSwiper.value.slideTo(index);
- // SecondGroupSwiper.value.slideTo(rootTabIndex.value);
- // }, 0);
- };
- const tabSecond = (item, index) => {
- store.commit("scene/setData", { currentSecondId: item.id });
- let sceneList = metadata.value.navigationTrees[rootTabIndex.value].children[secondTabIndex.value].children;
- store.commit("scene/setCurrentScenesList", sceneList);
- //
- // setTimeout(() => {
- // SecondGroupSwiper.value.slideTo(index);
- // }, 0);
- // changeSceneList();
- };
- const changeSceneList = () => {
- let currentList = null;
- if (metadata.value.navigationTrees[rootTabIndex.value].children.length && metadata.value.navigationTrees[rootTabIndex.value].children[0].type == "group") {
- store.commit("scene/setData", { currentSecondId: metadata.value.navigationTrees[rootTabIndex.value].children[0].id });
- //如果有当前视图则选择二级目录
- metadata.value.navigationTrees[rootTabIndex.value].children.forEach((item, index) => {
- if (item.children.length) {
- item.children.forEach((t_item, t_index) => {
- if (t_item.id == currentScene.value.id || (t_item.sid && currentScene.value.sid && t_item.sid == currentScene.value.sid)) {
- store.commit("scene/setData", { currentSecondId: item.id });
- }
- });
- }
- });
- currentList = metadata.value.navigationTrees[rootTabIndex.value].children[secondTabIndex.value].children;
- store.commit("scene/setCurrentScenesList", currentList);
- }
- if (secondTabIndex.value == -1) {
- console.error("没有二级目录");
- let rootList = metadata.value.navigationTrees.find((item) => item.id == currentRootId.value);
- store.commit("scene/setCurrentScenesList", rootList.children);
- }
- nextTick(() => {
- initSceneSwiper();
- initRootGroupSwiper();
- if (metadata.value.navigationTrees[currentRootId.value]?.children[currentSecondId.value]?.type == "group") {
- initSecondGroupSwiper();
- }
- });
- };
- const initSceneSwiper = () => {
- if (SceneSwiper.value) {
- SceneSwiper.value.destroy();
- SceneSwiper.value = null;
- }
- if (!currentScenesList.value.length) {
- return;
- }
- nextTick(() => {
- SceneSwiper.value = new Swiper(".scene-list", swiperOptions);
- let index = currentScenesList.value.findIndex((item) => item.id == currentScene.value.id);
- if (index >= 0) {
- SceneSwiper.value.slideTo(index);
- }
- });
- };
- const tabCurrentScene = (data, index) => {
- store.commit("scene/setCurrentScene", data);
- // SceneSwiper.value.slideTo(index);
- };
- const initSecondGroupSwiper = () => {
- console.error("initSecondGroupSwiper");
- if (SecondGroupSwiper.value) {
- SecondGroupSwiper.value.destroy();
- SecondGroupSwiper.value = null;
- }
- nextTick(() => {
- SecondGroupSwiper.value = new Swiper(".second-group-list", swiperOptions);
- if (secondTabIndex.value >= 0) {
- SecondGroupSwiper.value.slideTo(secondTabIndex.value);
- }
- });
- };
- const tabCurrentSecondGroup = (data, index) => {
- // store.commit("scene/setCurrentScene", data);
- SecondGroupSwiper.value.slideTo(index);
- };
- const initRootGroupSwiper = () => {
- // if (rootGroupSwiper.value) {
- // rootGroupSwiper.value.destroy();
- // rootGroupSwiper.value = null;
- // }
- // nextTick(() => {
- // rootGroupSwiper.value = new Swiper(".root-group-list", swiperOptions);
- // });
- if (!rootGroupSwiper.value) {
- rootGroupSwiper.value = new Swiper(".root-group-list", swiperOptions);
- if (rootGroupSwiper.value >= 0) {
- rootGroupSwiper.value.slideTo(rootTabIndex.value);
- }
- initSecondGroupSwiper();
- }
- };
- const tabCurrentRootGroup = (data, index) => {
- // store.commit("scene/setCurrentScene", data);
- SecondGroupSwiper.value.slideTo(index);
- };
- onMounted(() => {
- useApp().then(async (app) => {
- if(currentScene.value.type == '4dkk' && currentScene.value.version == 'V4') {
- store.commit("functions/setShowScenesList", false);
- }
- show.value = true;
- console.error("app", show.value);
- });
- });
- </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%);
- }
- }
- .marquee {
- .marquee-text-wrap {
- height: 20px;
- line-height: 20px;
- }
- }
- </style>
- <style>
- .marquee-text-text {
- padding: 0 5px;
- }
- </style>
|