component.uvue 10.7 KB
Newer Older
1 2
<template>
  <!-- #ifdef APP -->
3
  <scroll-view style="flex: 1; background-color: #f8f8f8" enable-back-to-top="true">
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
  <!-- #endif -->
    <view class="uni-container">
      <view class="uni-header-logo">
        <image class="uni-header-image" src="/static/componentIndex.png"></image>
      </view>
      <view class="uni-text-box">
        <text class="hello-text">uni-app内置组件,展示样式仅供参考,文档详见:</text>
        <u-link :href="'https://uniapp.dcloud.io/uni-app-x/component/'"
          :text="'https://uniapp.dcloud.io/uni-app-x/component/'" :inWhiteList="true"></u-link>
      </view>
      <uni-collapse>
        <template v-for="item in list" :key="item.id">
          <uni-collapse-item :title="item.name" class="item">
            <view class="uni-navigate-item" :hover-class="page.enable == false ? '' : 'is--active'"
              v-for="(page, key) in item.pages" :key="key" @click="goDetailPage(page)">
              <text class="uni-navigate-text"
                :class="page.enable == false ? 'text-disabled' : ''">{{ page.name }}</text>
              <image :src="arrowRightIcon" class="uni-icon-size"></image>
            </view>
          </uni-collapse-item>
        </template>
25
      </uni-collapse>
26 27 28

      <text>---------------</text>
      <uni-collapse>
29 30
        <uni-collapse-item v-for="menuItem in menu" :key="menuItem!.id" :title="menuItem!.name"
          class="item">
31
          <view v-for="page in menuItem!.pages" :key="page!.path" class="uni-navigate-item" hover-class="is--active"
DCloud-WZF's avatar
DCloud-WZF 已提交
32
            @click="goPage(`/${page!.path}`)">
33
            <text class="uni-navigate-text">{{
34
                page!.style["navigationBarTitleText"]
35
              }}</text>
36 37 38 39 40
            <image :src="arrowRightIcon" class="uni-icon-size"></image>
          </view>
          <uni-collapse style="width: 100%" v-for="childMenu in menuItem!.children" :key="childMenu!.id">
            <uni-collapse-item :title="childMenu!.name" class="item" style="margin-bottom: 0">
              <view class="uni-navigate-item" hover-class="is--active" v-for="childPage in childMenu!.pages"
41
                :key="childPage!.path" @click="goPage(`/${childPage!.path}`)">
42
                <text class="uni-navigate-text">{{
43
                    childPage!.style["navigationBarTitleText"]
44
                  }}</text>
45 46 47 48 49
                <image :src="arrowRightIcon" class="uni-icon-size"></image>
              </view>
            </uni-collapse-item>
          </uni-collapse>
        </uni-collapse-item>
50 51
      </uni-collapse>

52
      <!-- #ifdef UNI-APP-X && APP -->
53 54 55 56 57 58 59 60 61
      <uni-upgrade-center-app ref="upgradePopup" @show="upgradePopupShow" @close="upgradePopupClose" />
      <!-- #endif -->
    </view>
  <!-- #ifdef APP -->
  </scroll-view>
  <!-- #endif -->
</template>

<script lang="uts">
62 63 64
  import { generateMenu } from './generateMenu.uts'
  import { MenuItem } from './generateMenu.uts'
  const menu = generateMenu('pages/component')
65
  // #ifdef UNI-APP-X && APP
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
  import checkUpdate from '@/uni_modules/uni-upgrade-center-app/utils/check-update'
  // #endif

  type Page = {
    name : string
    enable ?: boolean
    url ?: string.PageURIString
  }
  type ListItem = {
    id : string
    name : string
    pages : Page[]
    url ?: string
    enable ?: boolean
  }
  export default {
    data() {
      return {
84
        menu: menu as (MenuItem | null)[],
85 86 87 88 89 90 91 92 93 94 95 96 97
        list: [
          {
            id: 'view',
            name: '视图容器',
            pages: [
              {
                name: 'view',
              },
              {
                name: 'scroll-view',
              },
              {
                name: 'swiper',
98 99 100 101 102 103 104 105
              },
              // #ifdef WEB
              {
                name: 'movable-view'
              },
              {
                name: 'cover-view'
              },
Anne_LXM's avatar
Anne_LXM 已提交
106
              // #endif
107 108 109 110 111 112 113 114
              {
                name: 'list-view',
              },
              {
                name: 'sticky-header',
              },
              {
                name: 'sticky-section',
115
              },
116
              // #ifdef APP
117 118 119 120 121
              {
                name: 'nested-scroll-header',
              },
              {
                name: 'nested-scroll-body',
122
              },
123
              // #endif
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
            ] as Page[],
          },
          {
            id: 'content',
            name: '基础内容',
            pages: [
              {
                name: 'text',
              },
              {
                name: 'rich-text',
                enable: true,
              },
              {
                name: 'progress',
              },
            ] as Page[],
          },
          {
            id: 'form',
            name: '表单组件',
            pages: [
              {
                name: 'button',
              },
              {
                name: 'checkbox',
              },
              {
                name: 'form',
              },
              {
                name: 'input',
157 158 159 160 161 162 163 164 165 166 167
              },
              // #ifdef WEB
              {
                name: 'editor',
              },
              {
                name: 'label',
              },
              {
                name: 'picker',
              },
Anne_LXM's avatar
Anne_LXM 已提交
168
              // #endif
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
              {
                name: 'picker-view',
              },
              {
                name: 'radio',
              },
              {
                name: 'slider',
              },
              {
                name: 'slider-100',
              },
              {
                name: 'switch',
              },
              {
                name: 'textarea',
              },
            ] as Page[],
          },
          {
            id: 'nav',
            name: '导航',
            pages: [{
              name: 'navigator',
              enable: true
            }] as Page[],
          },
          {
            id: 'media',
            name: '媒体组件',
            pages: [
              {
                name: 'image',
                enable: true,
              },
              {
                name: 'video',
                enable: true,
              },
              /* {
                name: 'animation-view',
                enable: false,
              }, */
            ] as Page[],
214 215
          },
          // #ifdef WEB
Anne_LXM's avatar
Anne_LXM 已提交
216 217 218 219 220 221 222 223
          {
            id: 'map',
            name: '地图',
            pages: [
              {
                name: 'map',
              }
            ] as Page[]
224
          },
225 226 227 228 229 230 231 232 233 234 235 236
          // #endif
          // #ifdef APP || WEB
          {
            id: 'canvas',
            name: '画布',
            pages: [
              {
                name: 'canvas',
                url: '/pages/component/canvas/canvas',
              },
              {
                name: 'ball',
237
                url: '/pages/component/canvas/canvas/ball',
238 239 240
              }
            ] as Page[]
          },
Anne_LXM's avatar
Anne_LXM 已提交
241
          // #endif
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288
          {
            id: 'web-view',
            name: '网页',
            pages: [
              {
                name: '网络网页',
                enable: true,
                url: '/pages/component/web-view/web-view',
              },
              {
                name: '本地网页',
                enable: true,
                url: '/pages/component/web-view-local/web-view-local',
              },
            ] as Page[],
          },
          {
            id: 'unicloud-db',
            name: 'unicloud-db',
            pages: [
              {
                name: '联系人',
                enable: true,
                url: '/pages/component/unicloud-db-contacts/list'
              },
              {
                name: 'mixinDatacom',
                enable: true,
                url: '/pages/component/mixin-datacom/mixin-datacom'
              }
            ] as Page[],
          },
          /*
            {
              id: 'ad',
              url: 'ad',
              name: 'AD组件',
              enable: false,
              pages: [] as Page[]
            }
            */
          {
            id: 'general-attr-event',
            name: '通用属性和事件',
            pages: [
              {
                name: '通用属性',
289
                url: '/pages/component/public-properties/public-properties',
290 291 292 293
                enable: true,
              },
              {
                name: '通用事件',
294
                url: '/pages/component/public-events/public-events',
295 296 297 298
                enable: true,
              },
              {
                name: 'touch事件',
299
                url: '/pages/component/public-events/touch-events',
300 301 302 303
                enable: true,
              },
              {
                name: 'Transition事件',
304
                url: '/pages/component/public-events/transition-events',
305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329
                enable: true,
              },
            ] as Page[],
          }
        ] as ListItem[],
        arrowUpIcon: '/static/icons/arrow-up.png' as string.ImageURIString,
        arrowDownIcon: '/static/icons/arrow-down.png' as string.ImageURIString,
        arrowRightIcon: '/static/icons/arrow-right.png' as string.ImageURIString,
        pageHiden: false
      }
    },
    methods: {
      goDetailPage(e : Page) {
        if (e.enable == false) {
          uni.showToast({
            title: '暂不支持',
            icon: 'none'
          })
          return
        }
        const url =
          e.url != null ? e.url! : `/pages/component/${e.name}/${e.name}`
        uni.navigateTo({
          url,
        })
330 331 332 333
      },
      goPage(url : string) {
        uni.navigateTo({ url })
      },
334
      // #ifdef UNI-APP-X && APP
335
      upgradePopupShow() {
336 337 338 339 340 341 342 343 344 345 346 347
        console.log('upgradePopup show');
        if (!this.pageHiden) {
          uni.hideTabBar()?.catch(_ => { })
        }
      }
      , upgradePopupClose() {
        console.log('upgradePopup close');
        uni.showTabBar()?.catch(_ => { })
      }
      // #endif
    },
    onReady() {
348
      // #ifdef UNI-APP-X && APP
349 350
      checkUpdate(this.$refs['upgradePopup'] as UniUpgradeCenterAppComponentPublicInstance)
      // #endif
351 352 353
    },
    onLoad() {
      // console.log("component page onLoad")
354 355
    },
    onShow() {
356
      // console.log("component page onShow")
357 358 359
      this.pageHiden = false
    },
    onHide() {
360
      // console.log("component page onHide")
361 362 363 364 365 366 367 368 369 370 371 372
      this.pageHiden = true
    },
    beforeUnmount() {
      uni.showTabBar()?.catch(_ => { })
    }
  }
</script>

<style>
  .item {
    margin-bottom: 12px;
  }
373
</style>