123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432 |
- import {
- PropType,
- defineComponent,
- nextTick,
- onMounted,
- reactive,
- ref,
- toRef,
- toRefs,
- watch
- } from 'vue';
- import styles from './index.module.less';
- import {
- NButton,
- NForm,
- NFormItem,
- NImage,
- NPopselect,
- NSpace
- } from 'naive-ui';
- import { resourceTypeArray } from '/src/utils/searchArray';
- import { useCatchStore } from '/src/store/modules/catchData';
- import { useThrottleFn } from '@vueuse/core';
- import TheSearch from '/src/components/TheSearch';
- import isCollaose from '/src/views/natural-resources/images/isCollaose.png';
- const ChildNodeSearch = defineComponent({
- name: 'ChildNodeSearch',
- props: {
- activeRow: {
- type: Object,
- default: () => ({})
- },
- list: {
- type: Array,
- default: () => []
- }
- },
- emits: ['selectChildTag'],
- setup(props, { emit }) {
- const { activeRow } = toRefs(props);
- const selectItem = ref({});
- watch(
- () => props.activeRow,
- () => {
- activeRow.value = props.activeRow;
- selectItem.value = {};
- }
- );
- return () => (
- <>
- {activeRow.value?.id && (
- <>
- <NFormItem label={activeRow.value.columnName + ':'}>
- <NSpace class={styles.spaceSection}>
- {activeRow.value?.children.map((subject: any) => (
- <span
- class={[
- styles.textBtn,
- (activeRow.value.activeIndex || '') == subject.id &&
- styles.textBtnActive
- ]}
- onClick={() => {
- activeRow.value.activeIndex = subject.id;
- let children: any;
- let columnName = '';
- if (subject.children) {
- children = [
- {
- columnName: subject.children[0].columnName,
- name: '全部',
- id: ''
- },
- ...subject.children
- ];
- columnName = subject.children[0].columnName;
- selectItem.value = {
- ...subject,
- columnName,
- activeIndex: '',
- children
- };
- } else {
- selectItem.value = {};
- }
- emit('selectChildTag', activeRow.value.activeIndex);
- }}>
- {subject.name}
- </span>
- ))}
- </NSpace>
- </NFormItem>
- <ChildNodeSearch
- activeRow={selectItem.value}
- onSelectChildTag={(item: any) => {
- emit('selectChildTag', item || activeRow.value.activeIndex);
- }}
- />
- </>
- )}
- </>
- );
- }
- });
- export default defineComponent({
- name: 'resource-search-group',
- props: {
- type: {
- type: String as PropType<
- 'relateResources' | 'shareResources' | 'myResources' | 'myCollect'
- >,
- default: 'shareResources'
- },
- subjectId: {
- type: String,
- default: null
- }
- },
- emits: ['search'],
- setup(props, { emit }) {
- const subjectId = toRef(props.subjectId);
- const catchStore = useCatchStore();
- const forms = reactive({
- type: 'MUSIC', //
- name: '',
- subjectId: subjectId.value as any,
- // grade: null as any,
- bookVersionId: null as any
- // musicSheetCategoriesId: null as any
- });
- const state = reactive({
- tempSubjectId: null,
- gradeList: [] as any[],
- musicCategory: [] as any
- });
- const data = reactive({
- selectParents: {}, // 选中的数据
- tags: [] as any[],
- tagActiveId: '' as any,
- tagActive: {} as any,
- childSelectId: null as any
- });
- const resourceType = ref([] as any);
- const onSearch = (type?: string) => {
- emit(
- 'search',
- {
- ...forms,
- bookVersionId: data.childSelectId || data.tagActiveId
- },
- type
- );
- };
- const throttleFn = useThrottleFn(() => onSearch(), 500);
- const collapseWrapRef = ref();
- const divDomList = ref([] as any);
- const orginHeight = ref(0);
- const hiddenHeight = ref(0);
- const line = ref(0);
- const isCollapse = ref(false);
- const loadingCollapse = ref(false); // 是否加载完成
- const musicCateRef = (el: any) => {
- if (el?.selfElRef) {
- divDomList.value.push(el.selfElRef.parentNode);
- }
- };
- const setCollapse = (flag: boolean) => {
- isCollapse.value = flag;
- getLive();
- };
- const getLive = () => {
- try {
- divDomList.value = [...new Set(divDomList.value)];
- let offsetLeft = -1;
- divDomList.value.forEach((item: any, index: number) => {
- if (index === 0) {
- line.value = 1;
- offsetLeft = item.offsetLeft;
- } else if (item.offsetLeft === offsetLeft && index != 0) {
- // 如果某个标签的offsetLeft和第一个标签的offsetLeft相等 说明增加了一行
- line.value++;
- }
- if (!isCollapse.value) {
- if (line.value > 1) {
- //从第3行开始 隐藏标签
- item.style.display = 'none';
- // 显示展开按钮 class名chu是在前面动态添加的
- } else {
- item.style.display = 'block';
- }
- } else {
- item.style.display = 'block';
- }
- });
- loadingCollapse.value = true;
- } catch {
- //
- }
- };
- const selectChildObj = (item: any) => {
- const obj: any = {};
- item?.forEach((child: any) => {
- if (child.id === forms.subjectId) {
- obj.selected = true;
- obj.name = child.name;
- }
- });
- return obj;
- };
- const _initTags = () => {
- const tags = catchStore.getMusicTagTree;
- data.tags = [
- {
- columnName: tags[0].columnName,
- name: '全部',
- id: ''
- },
- ...tags
- ];
- data.tagActiveId = data.tags[0].id;
- };
- const changeTag = (item: any) => {
- data.tagActiveId = item.id;
- data.childSelectId = null;
- let children: any;
- let columnName = '';
- if (item.children) {
- children = [
- {
- columnName: item.children[0].columnName,
- name: '全部',
- id: ''
- },
- ...item.children
- ];
- columnName = item.children[0].columnName;
- data.selectParents = {
- ...item,
- columnName,
- activeIndex: '',
- children
- };
- } else {
- data.selectParents = {};
- }
- onSearch();
- };
- onMounted(async () => {
- resourceTypeArray.forEach((item: any) => {
- resourceType.value.push(item);
- });
- // // 获取教材分类列表
- // await catchStore.getMusicSheetCategory();
- await catchStore.getMusicTagTreeApi();
- _initTags();
- // 获取声部
- await catchStore.getSubjects();
- forms.subjectId = null;
- // 这里开始
- // musicCateRef
- if (forms.type === 'MUSIC') {
- orginHeight.value = collapseWrapRef.value?.offsetHeight;
- hiddenHeight.value = collapseWrapRef.value?.offsetHeight / line.value;
- // 默认隐藏
- getLive();
- }
- if (props.type === 'shareResources') {
- onSearch('timer');
- }
- });
- return () => (
- <div class={styles.searchGroup}>
- <div class={styles.searchCatatory}>
- <NSpace size="small" class={styles.btnType}>
- {resourceType.value.map((item: any) => (
- <NButton
- type={forms.type === item.value ? 'primary' : 'default'}
- secondary={forms.type === item.value ? false : true}
- round
- size="small"
- focusable={false}
- onClick={() => {
- forms.type = item.value;
- forms.subjectId = null;
- data.tagActiveId = '';
- data.childSelectId = null;
- data.selectParents = {};
- onSearch();
- try {
- nextTick(() => {
- if (forms.type === 'MUSIC') {
- orginHeight.value = collapseWrapRef.value?.offsetHeight;
- hiddenHeight.value =
- collapseWrapRef.value?.offsetHeight / line.value;
- // 默认隐藏
- getLive();
- } else {
- divDomList.value = [];
- }
- });
- } catch {
- //
- }
- }}>
- {item.label}
- </NButton>
- ))}
- </NSpace>
- <TheSearch
- class={styles.inputSearch}
- round
- onSearch={(val: string) => {
- forms.name = val;
- throttleFn();
- }}
- />
- </div>
- <NForm
- labelAlign="left"
- labelPlacement="left"
- class={styles.searchForm}>
- {forms.type === 'MUSIC' && props.type === 'shareResources' && (
- <>
- <NFormItem label={data.tags[0]?.columnName + ':'}>
- <NSpace class={styles.spaceSection}>
- {data.tags.map((subject: any) => (
- <span
- class={[
- styles.textBtn,
- data.tagActiveId === subject.id && styles.textBtnActive
- ]}
- onClick={() => {
- changeTag(subject);
- }}>
- {subject.name}
- </span>
- ))}
- </NSpace>
- </NFormItem>
- <ChildNodeSearch
- activeRow={data.selectParents}
- onSelectChildTag={(val: any) => {
- data.childSelectId = val;
- onSearch();
- }}
- />
- </>
- )}
- <NFormItem label="乐器:">
- <NSpace class={styles.spaceSection2}>
- {/* {catchStore.getSubjectAllList.map((music: any) => (
- <NButton
- secondary={forms.subjectId === music.id}
- quaternary={forms.subjectId !== music.id}
- strong
- focusable={false}
- type={forms.subjectId === music.id ? 'primary' : 'default'}
- onClick={() => {
- forms.subjectId = music.id;
- onSearch();
- }}>
- {music.name}
- </NButton>
- ))} */}
- {catchStore.getSubjectInstruments.map((subject: any) =>
- subject.instruments && subject.instruments.length > 1 ? (
- <NPopselect
- options={subject.instruments}
- trigger="hover"
- scrollable
- v-model:value={state.tempSubjectId}
- onUpdate:value={() => {
- forms.subjectId = state.tempSubjectId;
- onSearch();
- }}
- key={subject.value}
- class={[styles.popSelect]}>
- <span
- class={[
- styles.textBtn,
- selectChildObj(subject.instruments).selected &&
- styles.textBtnActive
- ]}>
- {selectChildObj(subject.instruments).name || subject.name}
- <i class={styles.iconArrow}></i>
- </span>
- </NPopselect>
- ) : (
- <span
- class={[
- styles.textBtn,
- forms.subjectId === subject.value && styles.textBtnActive
- ]}
- onClick={() => {
- forms.subjectId = subject.value;
- state.tempSubjectId = null;
- onSearch();
- }}>
- {subject.name}
- </span>
- )
- )}
- </NSpace>
- </NFormItem>
- </NForm>
- </div>
- );
- }
- });
|