<template>
    <!-- 商品分类 -->
    <div class="container">
        <div class="flex-row jc-e gap-20 mb-20 align-c">
            <el-select v-model="category_ids" class="search-w" placeholder="请选择" filterable clearable @change="handle_search">
                <el-option v-for="item in article_category_list" :key="item.id" :label="item.name" :value="item.id" />
            </el-select>
            <el-input v-model="search_value" placeholder="请输入搜索内容" class="search-w" @change="handle_search">
                <template #suffix>
                    <icon name="search" size="16" color="9" class="c-pointer" @click="handle_search"></icon>
                </template>
            </el-input>
        </div>
        <div class="content">
            <el-table v-loading="loading" :data="tableData" class="w" :header-cell-style="{ background: '#f7f7f7' }" row-key="id" height="438" fixed @row-click="row_click" @select="handle_select" @select-all="handle_select">
                <el-table-column v-if="multiple" type="selection" width="60" />
                <el-table-column v-else label="#" width="60" type="">
                    <template #default="scope">
                        <el-radio v-model="template_selection" :label="scope.$index + ''">&nbsp;</el-radio>
                    </template>
                </el-table-column>
                <el-table-column prop="id" label="ID" width="80" type="" />
                <el-table-column prop="cover" label="文章">
                    <template #default="scope">
                        <div class="flex-row align-c gap-10">
                            <image-empty v-if="scope.row.cover" v-model="scope.row.cover" class="img"></image-empty>
                            <div class="flex-1">{{ scope.row.title }}</div>
                        </div>
                    </template>
                </el-table-column>
                <template #empty>
                    <no-data :text="empty_text"></no-data>
                </template>
            </el-table>
            <div class="mt-10 flex-row jc-e">
                <el-pagination :current-page="page" background :page-size="page_size" :pager-count="5" layout="prev, pager, next" :total="data_total" @current-change="onPageChange" />
            </div>
        </div>
    </div>
</template>
<script lang="ts" setup>
import commonApi from '@/api/common';
import { commonStore } from '@/store';
import { useLinkPickerLoad } from '@/hooks/use-link-picker-load';
import { toRef } from 'vue';
const common_store = commonStore();
const props = defineProps({
    // 重置
    reset: {
        type: Boolean,
        default: () => false,
    },
    loadStamp: {
        type: Number,
        default: 0,
    },

    multiple: {
        type: Boolean,
        default: () => false,
    },
    linkUrl: {
        type: String,
        default: '',
    },
    // 判断是否返回链接地址
    selectIsUrl: {
        type: Boolean,
        default: false,
    },
});
const modelValue = defineModel({ type: Object, default: {} });
const tableData = ref<pageLinkList[]>([]);
const search_value = ref('');
const loading = ref(false);
const resetFields = () => {
    template_selection.value = '';
    category_ids.value = '';
    search_value.value = '';
    article_category_list.value = common_store.common.article_category;
};
const category_ids = ref('');
interface articleCategory {
    id: string;
    name: string;
    url: string;
}
const article_category_list = ref<articleCategory[]>([]);
const template_selection = ref('');
//#region 分页 -----------------------------------------------start
// 当前页
const page = ref(1);
// 每页数量
const page_size = ref(30);
// 总数量
const data_total = ref(0);
const empty_text = ref('暂无数据');
// 查询文件
const get_list = (new_page: number) => {
    let new_data = {
        page: new_page,
        keywords: search_value.value,
        category_ids: category_ids.value,
        page_size: page_size.value,
    };
    loading.value = true;
    commonApi.getDynamicApi(props.linkUrl, new_data).then((res: any) => {
        tableData.value = res.data.data_list;
        if (tableData.value.length === 0) {
            empty_text.value = '暂无数据';
        }
        data_total.value = res.data.data_total;
        page.value = res.data.page;
        setTimeout(() => {
            loading.value = false;
        }, 500);
    }).catch((err) => {
        tableData.value = [];
        data_total.value = 0;
        page.value = 1;
        empty_text.value = err;
        loading.value = false;
    });
};

const { onPageChange, runFilterFetch } = useLinkPickerLoad({
    loadStamp: toRef(props, 'loadStamp'),
    resetFlag: toRef(props, 'reset'),
    resetFields,
    fetchList: get_list,
});
const handle_search = () => {
    runFilterFetch(() => get_list(1));
};

//#region 分页 -----------------------------------------------end
const row_click = (row: any) => {
    if (!props.multiple) {
        const new_table_data = JSON.parse(JSON.stringify(tableData.value));
        template_selection.value = new_table_data.findIndex((item: pageLinkList) => item.id == row.id).toString();
        if (props.selectIsUrl) {
            const page = '/pages/article-detail/article-detail?id=' + row.id;
            const new_row = {
                id: row.id,
                name: row.name || row.title || page,
                page: page,
            };
            modelValue.value = [new_row];
        } else {
            modelValue.value = [row];
        }
    }
};
const handle_select = (selection: any) => {
    if (props.selectIsUrl) {
        // 遍历数组selection
        const new_selection = selection.map((item: any) => {
            const page = '/pages/article-detail/article-detail?id=' + item.id;
            return {
                id: item.id,
                name: item.name || item.title || page,
                page: page,
            };
        });
        modelValue.value = new_selection;
    } else {
        modelValue.value = selection;
    }
};
</script>
<style lang="scss" scoped>
.container {
    .search-w {
        width: 22.5rem;
    }
    .content {
        :deep(.el-table__inner-wrapper:before) {
            background-color: transparent;
        }
        .img {
            width: 3.6rem;
        }
    }
}
</style>