long-list-page.uvue 5.5 KB
Newer Older
H
hdx 已提交
1
<template>
张磊 已提交
2
  <list-view class="list" ref="listView" @scrolltolower="loadData" scroll-y = true>
3
    <!-- TODO 暂时这样写才能保证 loading 在 list 底部 -->
H
hdx 已提交
4 5 6 7
    <template v-for="(item, index) in dataList" :key="index">
      <list-item class="list-item">
        <view class="list-item-icon">
          <image class="list-item-icon-image" :src="item.plugin_img_link"></image>
H
hdx 已提交
8
        </view>
H
hdx 已提交
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
        <view class="list-item-fill">
          <view class="flex-row">
            <text class="title">{{item.plugin_name}}</text>
          </view>
          <view class="description">
            <text class="description-text">{{item.plugin_intro}}</text>
          </view>
          <text class="icon-star star">{{convertToStarUnicode(item.score)}}</text>
          <view class="tag-list">
            <text class="tag-item" v-for="(item2, index2) in item.tags" :key="index2">{{item2}}</text>
          </view>
          <view class="flex-row update-date">
            <text class="update-date-text">更新日期</text>
            <text class="update-date-value">{{item.update_date}}</text>
            <text class="author">{{item.author_name}}</text>
          </view>
H
hdx 已提交
25
        </view>
H
hdx 已提交
26 27 28 29 30
      </list-item>
      <list-item key="loading" v-if="index==dataList.length-1">
        <text class="loading">{{loadingText}}</text>
      </list-item>
    </template>
H
hdx 已提交
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
  </list-view>
</template>

<script>
  const SERVER_URL = "https://ext.dcloud.net.cn/plugin/uniappx-plugin-list"
  const PAGE_SIZE = 10; // 最大值 10

  type ListItem = {
    plugin_id : number,
    plugin_img_link : string,
    plugin_name : string,
    plugin_intro : string,
    score : number,
    tags : Array<string>,
    update_date : string,
    author_name : string,
  }

  type ResponseDataType = {
    code : number,
    data : ListItem[]
  }

  export default {
    props: {
      type: {
        type: String,
        default: ''
H
hdx 已提交
59 60 61 62
      },
      preload: {
        type: Boolean,
        default: false
H
hdx 已提交
63 64 65 66 67 68 69
      }
    },
    data() {
      return {
        loading: false,
        dataList: [] as ListItem[],
        isEnded: false,
H
hdx 已提交
70
        loadingError: '',
H
hdx 已提交
71 72 73
        $currentPage: 0
      }
    },
H
hdx 已提交
74 75 76 77 78 79 80 81 82 83 84 85 86
    computed: {
      loadingText() : string {
        if (this.loading) {
          return "加载中..."
        } else if (this.isEnded) {
          return "没有更多了"
        } else if (this.loadingError.length > 0) {
          return this.loadingError
        } else {
          return ""
        }
      }
    },
H
hdx 已提交
87
    created() {
H
hdx 已提交
88 89 90 91 92
      uni.loadFontFace({
        global: false,
        family: 'UtsIconsFontFamily',
        source: '/static/fonts/icon-star.ttf'
      })
H
hdx 已提交
93 94 95 96

      if (this.preload) {
        this.loadData()
      }
H
hdx 已提交
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
    },
    methods: {
      loadData() {
        if (this.loading || this.isEnded) {
          return
        }
        this.loading = true

        // TODO request data 没有拼接到 url 中,暂时手动拼接
        uni.request({
          url: `${SERVER_URL}?type=${this.type}&page=${this.$currentPage}&page_size=${PAGE_SIZE}`,
          data: {
            type: this.type,
            page: this.$currentPage,
            page_size: PAGE_SIZE
          },
          dataType: '',
          success: (res) => {
            const responseData = JSON.parse<ResponseDataType>(res.data as string)
            if (responseData == null) {
              return
            }

120
            this.dataList.push(...responseData.data)
H
hdx 已提交
121

122
            if (responseData.data.length == 0) {
H
hdx 已提交
123 124 125 126 127 128
              this.isEnded = true
            } else {
              this.$currentPage++
            }
          },
          fail: (err) => {
H
hdx 已提交
129
            this.loadingError = err.errMsg
H
hdx 已提交
130 131 132 133 134 135 136
          },
          complete: () => {
            this.loading = false
          }
        })
      },
      // score 0 ~ 50
137
      convertToStarUnicode(score : number) : string {
H
hdx 已提交
138 139 140 141 142 143 144 145 146 147 148 149 150 151
        const fill_code = '\ue879'
        const half_code = '\ue87a'
        const null_code = '\ue87b'

        const fillStarCount = parseInt(score / 10 % 10 + '')
        const halfStarCount = score % 10 >= 5 ? 1 : 0
        const nullStarCount = 5 - fillStarCount - halfStarCount

        let result = ''
        if (fillStarCount > 0) { result += fill_code.repeat(fillStarCount) }
        if (halfStarCount > 0) { result += half_code.repeat(halfStarCount) }
        if (nullStarCount > 0) { result += null_code.repeat(nullStarCount) }

        return result
H
hdx 已提交
152
      }
H
hdx 已提交
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 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
    }
  }
</script>

<style>
  .list {
    flex: 1;
    background-color: #ffffff;
  }

  .list-item {
    flex-direction: row;
    margin-top: 10px;
    padding: 10px;
  }

  .list-item-icon {
    position: relative;
  }

  .list-item-icon-image {
    width: 80px;
    height: 80px;
  }

  .list-item-fill {
    flex: 1;
    margin-left: 15px;
  }

  .description {
    line-height: 14px;
  }

  .description-text {
    font-size: 13px;
    color: #666;
    line-height: 19px;
  }

  .icon-star {
194
    font-family: "UtsIconsFontFamily";
H
hdx 已提交
195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
    font-size: 16px;
    font-style: normal;
    color: #ffca3e;
    letter-spacing: 3px;
  }

  .tag-list {
    flex-direction: row;
    margin-top: 5px;
  }

  .tag-item {
    font-size: 14px;
    background-color: #EFF9F0;
    color: #639069;
    border-radius: 20px;
    margin-right: 5px;
    padding: 2px 5px;
  }

  .update-date {
    margin-top: 10px;
  }

  .update-date-text {
    font-size: 12px;
    color: #888888;
  }

  .update-date-value {
    font-size: 12px;
    color: #777777;
    margin-left: 5px;
  }

  .author {
    font-size: 12px;
    color: #008000;
    margin-left: auto;
  }
H
hdx 已提交
235 236 237 238 239 240

  .loading {
    padding: 20px;
    text-align: center;
    background-color: #f8f8f8;
  }
H
hdx 已提交
241
</style>