<template>
    <view :class="theme_view">
        <u-popup ref="popupShareRef" mode="bottom" title="" :closeable="false">
            <view class="share-popup bg-white flex-row">
                <view class="close oh pa top-0 right-0 z-i-deep">
                    <view class="fr padding-top padding-right padding-left-sm padding-bottom-sm" @tap.stop="popup_close_event">
                        <u-icon name="close-line" size="28rpx" color="#999"></u-icon>
                    </view>
                </view>
                <view class="flex-1 share-popup-content">
                    <!-- #ifdef MP-ALIPAY -->
                    <view class="share-items oh cp" @tap="share_base_event">
                        <image class="image" :src="common_static_url + 'share-user-icon.png'" style="width: 80rpx;height: 80rpx;margin-right: 20rpx;" mode="scaleToFill"></image>
                        <text class="cr-grey text-size-xs single-text" :style="{ 'width': single_text_width }">{{ $t('share-popup.share-popup.h04xiy') }}</text>
                    </view>
                    <!-- #endif -->
                    <!-- #ifdef MP-WEIXIN || MP-BAIDU || MP-QQ || MP-TOUTIAO || MP-KUAISHOU -->
                    <view class="share-items oh cp">
                        <button class="btn dis-block br-0 ht-auto" type="default" size="mini" open-type="share" hover-class="none" @tap="popup_close_event">
                            <image class="image" :src="common_static_url + 'share-user-icon.png'" style="width: 80rpx;height: 80rpx;margin-right: 20rpx;" mode="scaleToFill"></image>
                            <text class="cr-grey text-size-xs single-text" :style="{ 'width': single_text_width }">{{ $t('share-popup.share-popup.h04xiy') }}</text>
                        </button>
                    </view>
                    <!-- #endif -->
                    <!-- #ifdef APP -->
                    <block v-if="is_app_weixin">
                        <view class="share-items oh cp" data-scene="WXSceneSession" data-provider="weixin" @tap="share_app_event">
                            <image class="image" :src="common_static_url + 'share-user-icon.png'" style="width: 80rpx;height: 80rpx;margin-right: 20rpx;" mode="scaleToFill"></image>
                            <text class="cr-grey text-size-xs single-text" :style="{ 'width': single_text_width }">{{ $t('share-popup.share-popup.rhs2c5') }}</text>
                        </view>
                        <view class="share-items oh cp" data-scene="WXSceneTimeline" data-provider="weixin" @tap="share_app_event">
                            <image class="image" :src="common_static_url + 'share-friend-icon.png'" style="width: 80rpx;height: 80rpx;margin-right: 20rpx;" mode="scaleToFill"></image>
                            <text class="cr-grey text-size-xs single-text" :style="{ 'width': single_text_width }">{{ $t('share-popup.share-popup.mv9l10') }}</text>
                        </view>
                        <view class="share-items oh cp" data-scene="WXSceneFavorite" data-provider="weixin" @tap="share_app_event">
                            <image class="image" :src="common_static_url + 'share-favor-icon.png'" style="width: 80rpx;height: 80rpx;margin-right: 20rpx;" mode="scaleToFill"></image>
                            <text class="cr-grey text-size-xs single-text" :style="{ 'width': single_text_width }">{{ $t('share-popup.share-popup.f08y38') }}</text>
                        </view>
                    </block>
                    <block v-if="is_app_qq">
                        <view class="share-items oh cp" data-provider="qq" @tap="share_app_event">
                            <image class="image":src="common_static_url + 'share-qq-icon.png'" style="width: 80rpx;height: 80rpx;margin-right: 20rpx;" mode="scaleToFill"></image>
                            <text class="cr-grey text-size-xs single-text" :style="{ 'width': single_text_width }">{{ $t('share-popup.share-popup.1242w9') }}</text>
                        </view>
                    </block>
                    <!-- #endif -->
                    <!-- #ifdef H5 || APP -->
                    <view class="share-items oh cp" :style="{ 'width': single_text_width }" @tap="share_url_copy_event">
                        <image class="image" :src="common_static_url + 'share-url-icon.png'" style="width: 80rpx;height: 80rpx;margin-right: 20rpx;" mode="scaleToFill"></image>
                        <text class="flex-1 cr-grey text-size-xs single-text">{{ $t('share-popup.share-popup.1oh013') }}</text>
                    </view>
                    <!-- #endif -->
                    <view v-if="is_goods_poster == 1 && (goods_id || 0) != 0" class="share-items oh cp" @tap="poster_event">
                        <image class="image" :src="common_static_url + 'share-poster-icon.png'" style="width: 80rpx;height: 80rpx;margin-right: 20rpx;" mode="scaleToFill"></image>
                        <text class="cr-grey text-size-xs single-text" :style="{ 'width': single_text_width }">{{ $t('share-popup.share-popup.dcp2qu') }}</text>
                    </view>
                </view>
            </view>
        </u-popup>
        <!-- #ifndef APP-NVUE -->
        <!-- 用户基础 -->
        <component-user-base ref="user_base"></component-user-base>
        <!-- #endif -->
    </view>
</template>
<script>
    const app = getApp();
    //#ifdef APP-NVUE  
    import i18n from '@/locale/index.js';
    //#endif
    var common_static_url = app.globalData.get_static_url('common');
    import componentUserBase from '@/components/user-base/user-base';
    export default {
        //#ifdef APP-NVUE  
        i18n,
        //#endif
        data() {
            return {
                theme_view: app.globalData.get_theme_value_view(),
                common_static_url: common_static_url,
                type: null,
                is_goods_poster: 0,
                goods_id: 0,
                url: null,
                images: null,
                title: null,
                summary: null,
                is_app_weixin: true,
                is_app_qq: true,
                share_info: {},
                single_text_width: '0px',
            };
        },

        components: {
            componentUserBase,
        },

        created: function () {
            const data = uni.getWindowInfo();
            const del_width = app.globalData.rpx_to_px(100);
            this.single_text_width = (data.windowWidth - del_width) + 'px;';
        },

        methods: {
            /**
             * 初始化分享配置
             * @param {Object} config - 配置参数
             * @param {String} config.type - 分享类型
             * @param {Number} config.is_goods_poster - 是否为商品海报分享 (0|1)
             * @param {Number} config.goods_id - 商品ID
             * @param {String} config.url - 分享链接
             * @param {String} config.images - 分享图片
             * @param {String} config.title - 分享标题
             * @param {String} config.summary - 分享摘要
             * @param {Object} config.share_info - 分享信息
             * @param {Boolean} config.status - 是否显示分享弹窗
             * @returns {Boolean} 初始化结果
             */
            init(config = {}) {
                if (!app.globalData.is_single_page_check()) {
                    return false;
                }
                
                if (config.status == undefined || config.status) {
                    this.$refs.popupShareRef.open();
                }

                // #ifndef APP-NVUE
                this.setData({
                    type: config.type == undefined ? null : config.type,
                    is_goods_poster: config.is_goods_poster || 0,
                    goods_id: config.goods_id || 0,
                    url: config.url || null,
                    images: config.images || null,
                    title: config.title || null,
                    summary: config.summary || null,
                    share_info: config.share_info || {}
                });
                // #endif
                // #ifdef APP-NVUE
                // 更新配置信息
                this.type = config.type == undefined ? null : config.type;
                this.is_goods_poster = config.is_goods_poster || 0;
                this.goods_id = config.goods_id || 0;
                this.url = config.url || null;
                this.images = config.images || null;
                this.title = config.title || null;
                this.summary = config.summary || null;
                this.share_info = config.share_info || {};
                // #endif

                // 用户头像和昵称设置提示
                if ((this.$refs.user_base || null) != null) {
                    this.$refs.user_base.init('share');
                }

                // #ifdef APP
                // app分享通道隔离
                uni.getProvider({
                    service: 'share',
                    success: (result) => {
                        var provider = result.provider || [];
                        // #ifndef APP-NVUE
                        this.setData({
                            is_app_weixin: provider.indexOf('weixin') != -1,
                            is_app_qq: provider.indexOf('qq') != -1,
                        });
                        // #endif
                        // #ifdef APP-NVUE
                        this.is_app_weixin = provider.indexOf('weixin') != -1;
                        this.is_app_qq = provider.indexOf('qq') != -1;
                        // #endif
                    },
                    fail: (error) => {},
                });
                // #endif
            },

            /**
             * 关闭分享弹窗
             */
            popup_close_event(e) {
                this.$refs.popupShareRef.close();
            },

            /**
             * 复制链接分享
             */
            share_url_copy_event() {
                var url = app.globalData.get_page_url();
                // 增加分享标识
                if(url.indexOf('referrer') == -1) {
                    var uid = app.globalData.get_user_cache_info('id') || null;
                    if(uid != null) {
                        var join = url.indexOf('?') == -1 ? '?' : '&';
                        url += join+'referrer='+uid;
                    }
                }
                app.globalData.text_copy_event(url);
            },

            /**
             * 基础分享事件(支付宝小程序)
             */
            share_base_event() {
                this.$refs.popupShareRef.close();
                uni.pageScrollTo({
                    scrollTop: 0,
                    duration: 300,
                    complete: (res) => {
                        setTimeout(function () {
                            uni.showShareMenu();
                        }, 500);
                    },
                });
            },

            /**
             * 商品海报分享
             */
            poster_event() {
                var user = app.globalData.get_user_info(this, 'poster_event');
                if (user != false) {
                    uni.showLoading({
                        title: this.$t('detail.detail.6xvl35'),
                    });
                    uni.request({
                        url: app.globalData.get_request_url('goodsposter', 'distribution', 'distribution'),
                        method: 'POST',
                        data: { goods_id: this.goods_id },
                        dataType: 'json',
                        success: (res) => {
                            uni.hideLoading();

                            if (res.data.code == 0) {
                                uni.previewImage({
                                    current: res.data.data,
                                    urls: [res.data.data],
                                });
                            } else {
                                if (app.globalData.is_login_check(res.data, this, 'poster_event')) {
                                    app.globalData.showToast(res.data.msg);
                                }
                            }
                        },
                        fail: () => {
                            uni.hideLoading();
                            app.globalData.showToast(this.$t('common.internet_error_tips'));
                        },
                    });
                }
            },

            /**
             * APP端分享事件
             * @param {Object} e - 事件对象
             * @param {Object} e.currentTarget.dataset - 事件数据集
             * @param {String} e.currentTarget.dataset.provider - 分享提供商(如:weixin、qq)
             * @param {String} e.currentTarget.dataset.scene - 分享场景(如:WXSceneSession、WXSceneTimeline等)
             */
            share_app_event(e) {
                // 分享参数
                var provider = e.currentTarget.dataset.provider;
                var scene = e.currentTarget.dataset.scene || null;
                // 分享基础数据
                var share = app.globalData.share_content_handle(this.share_info || {});
                var img = this.images || share.img;
                var url = app.globalData.page_url_protocol((this.url || null) == null ? share.url : app.globalData.share_query_handle(this.url))
                var title = this.title || share.title;
                var summary = this.summary || share.desc;
                var type = this.type === null ? ((img || null) == null ? 1 : 0) : this.type;
                var mini_program = {};

                // #ifdef APP
                // 分享到好友,是否走微信小程序,则获取微信小程序原始id
                if (scene == 'WXSceneSession') {
                    var weixin_original_id = app.globalData.get_config('config.common_app_mini_weixin_share_original_id') || null;
                    if (weixin_original_id != null) {
                        type = 5;
                        mini_program = {
                            id: weixin_original_id,
                            path: url.split('#')[1],
                            type: 0,
                            webUrl: url,
                        };
                    }
                }
                // #endif

                // 关闭分享弹窗
                this.$refs.popupShareRef.close();
                // 调用分享组件
                uni.share({
                    provider: provider,
                    scene: scene,
                    type: type,
                    href: url,
                    title: title,
                    summary: summary,
                    imageUrl: img,
                    miniProgram: mini_program,
                    success: function (res) {},
                    fail: function (err) {},
                });
            },
        },
    };
</script>
<style lang="scss" scoped>
    .share-popup {
        padding: 20rpx 10rpx 0 10rpx;
        position: relative;
    }
    .share-popup-content {
        padding: 0 20rpx;
        text-align: left;
    }
    .share-items {
        padding: 30rpx 0;
        min-height: 85rpx;
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .share-items:not(:first-child) {
        border-top: 1px solid #f0f0f0;
    }
    .share-items .btn {
        background: transparent;
        padding: 0;
        width: 100%;
        text-align: left;
        margin: 0;
    }
    .single-text {
        /* width: calc(100% - 100rpx); */
        line-height: 85rpx;
    }
</style>