s-share-modal.vue 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. <!-- 全局分享弹框 -->
  2. <template>
  3. <view>
  4. <su-popup :show="state.showShareGuide" :showClose="false" @close="onCloseGuide" />
  5. <view v-if="state.showShareGuide" class="guide-wrap">
  6. <image class="guide-image" :src="sheep.$url.static('/static/images/share_guide.png')" />
  7. </view>
  8. <su-popup :show="show" round="10" :showClose="false" @close="closeShareModal">
  9. <!-- 分享 tools -->
  10. <view class="share-box">
  11. <view class="share-list-box ss-flex">
  12. <!-- 操作 ①:发送给微信好友 -->
  13. <button v-if="shareConfig.methods.includes('forward')"
  14. class="share-item share-btn ss-flex-col ss-col-center" open-type="share"
  15. @tap="onShareByForward">
  16. <image class="share-img" :src="sheep.$url.static('/static/images/share_wx.png')"
  17. mode="" />
  18. <text class="share-title">微信好友</text>
  19. </button>
  20. <!-- 操作 ②:生成海报图片 -->
  21. <button v-if="shareConfig.methods.includes('poster')"
  22. class="share-item share-btn ss-flex-col ss-col-center" @tap="onShareByPoster">
  23. <image class="share-img" :src="sheep.$url.static('/static/images/share_poster.png')"
  24. mode="" />
  25. <text class="share-title">生成海报</text>
  26. </button>
  27. <!-- 操作 ③:生成链接 -->
  28. <!-- <button v-if="shareConfig.methods.includes('link')"
  29. class="share-item share-btn ss-flex-col ss-col-center" @tap="onShareByCopyLink">
  30. <image class="share-img" :src="sheep.$url.static('/static/images/share_link.png')"
  31. mode="" />
  32. <text class="share-title">复制链接</text>
  33. </button> -->
  34. </view>
  35. <view class="share-foot ss-flex ss-row-center ss-col-center" @tap="closeShareModal">
  36. 取消
  37. </view>
  38. </view>
  39. </su-popup>
  40. <!-- 分享海报,对应操作 ② -->
  41. <canvas-poster ref="SharePosterRef" :show="state.showPosterModal" :shareInfo="shareInfo"
  42. @close="state.showPosterModal = false" />
  43. </view>
  44. </template>
  45. <script setup>
  46. /**
  47. * 分享弹窗
  48. */
  49. import {
  50. ref,
  51. unref,
  52. reactive,
  53. computed,
  54. inject
  55. } from 'vue';
  56. import sheep from '@/sheep';
  57. import canvasPoster from './canvas-poster/index.vue';
  58. import {
  59. closeShareModal,
  60. showAuthModal
  61. } from '@/sheep/hooks/useModal';
  62. const show = computed(() => sheep.$store('modal').share);
  63. const shareConfig = computed(() => sheep.$store('app').platform.share);
  64. const SharePosterRef = ref('');
  65. const props = defineProps({
  66. shareInfo: {
  67. type: Object,
  68. default () {},
  69. },
  70. });
  71. const state = reactive({
  72. showShareGuide: false, // H5 的指引
  73. showPosterModal: false, // 海报弹窗
  74. });
  75. // 操作 ②:生成海报分享
  76. const onShareByPoster = () => {
  77. closeShareModal();
  78. if (!sheep.$store('user').isLogin) {
  79. showAuthModal();
  80. return;
  81. }
  82. unref(SharePosterRef).getPoster();
  83. state.showPosterModal = true;
  84. };
  85. // 操作 ①:直接转发分享
  86. const onShareByForward = () => {
  87. closeShareModal();
  88. // #ifdef H5
  89. if (['WechatOfficialAccount', 'H5'].includes(sheep.$platform.name)) {
  90. state.showShareGuide = true;
  91. return;
  92. }
  93. // #endif
  94. // #ifdef APP-PLUS
  95. uni.share({
  96. provider: 'weixin',
  97. scene: 'WXSceneSession',
  98. type: 0,
  99. href: props.shareInfo.link,
  100. title: props.shareInfo.title,
  101. summary: props.shareInfo.desc,
  102. imageUrl: props.shareInfo.image,
  103. success: (res) => {
  104. console.log('success:' + JSON.stringify(res));
  105. },
  106. fail: (err) => {
  107. console.log('fail:' + JSON.stringify(err));
  108. },
  109. });
  110. // #endif
  111. };
  112. // 操作 ③:复制链接分享
  113. const onShareByCopyLink = () => {
  114. closeShareModal();
  115. if (!sheep.$store('user').isLogin) {
  116. showAuthModal();
  117. return;
  118. }
  119. sheep.$helper.copyText(props.shareInfo.link);
  120. // sheep.$helper.copyText('https://zxgz.newfeifan.cn/');
  121. // closeShareModal();
  122. };
  123. function onCloseGuide() {
  124. state.showShareGuide = false;
  125. }
  126. </script>
  127. <style lang="scss" scoped>
  128. .guide-image {
  129. right: 30rpx;
  130. top: 0;
  131. position: fixed;
  132. width: 580rpx;
  133. height: 430rpx;
  134. z-index: 10080;
  135. }
  136. // 分享tool
  137. .share-box {
  138. background: $white;
  139. width: 750rpx;
  140. border-radius: 30rpx 30rpx 0 0;
  141. padding-top: 30rpx;
  142. .share-foot {
  143. font-size: 24rpx;
  144. color: $gray-b;
  145. height: 80rpx;
  146. border-top: 1rpx solid $gray-e;
  147. }
  148. .share-list-box {
  149. .share-btn {
  150. background: none;
  151. border: none;
  152. line-height: 1;
  153. padding: 0;
  154. &::after {
  155. border: none;
  156. }
  157. }
  158. .share-item {
  159. flex: 1;
  160. padding-bottom: 20rpx;
  161. .share-img {
  162. width: 70rpx;
  163. height: 70rpx;
  164. background: $gray-f;
  165. border-radius: 50%;
  166. margin-bottom: 20rpx;
  167. }
  168. .share-title {
  169. font-size: 24rpx;
  170. color: $dark-6;
  171. }
  172. }
  173. }
  174. }
  175. </style>