|
@@ -1,12 +1,12 @@
|
|
|
import { MarkdownPreviewModule } from 'fmode-ng';
|
|
|
import { Component } from '@angular/core';
|
|
|
-import { ModalController, IonModal, IonHeader, IonToolbar, IonTitle, IonContent, IonList, IonItem, IonLabel, IonAvatar, IonButton, IonSegment, IonSegmentButton, IonSegmentContent, IonSegmentView, IonCardContent, IonCardTitle, IonCardHeader, IonCard, IonIcon, IonButtons, IonSearchbar, IonFab, IonFabButton, IonFabList } from '@ionic/angular/standalone';
|
|
|
+import { ModalController, IonModal, IonHeader, IonToolbar, IonTitle, IonContent, IonList, IonItem, IonLabel, IonAvatar, IonButton, IonSegment, IonSegmentButton, IonSegmentContent, IonSegmentView, IonCardContent, IonCardTitle, IonCardHeader, IonCard, IonIcon, IonButtons, IonSearchbar, IonFab, IonFabButton, IonFabList, IonBackButton } from '@ionic/angular/standalone';
|
|
|
import { ExploreContainerComponent } from '../explore-container/explore-container.component';
|
|
|
import { addIcons } from 'ionicons';
|
|
|
import { airplane, bluetooth, call, wifi } from 'ionicons/icons';
|
|
|
import { ArticleCardComponent } from '../component/article-card/article-card.component';
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
-import { CloudObject, CloudQuery } from '../lib/ncloud';
|
|
|
+import { CloudObject, CloudQuery,CloudUser } from '../lib/ncloud';
|
|
|
import { Router } from '@angular/router';
|
|
|
import {
|
|
|
chevronDownCircle,
|
|
@@ -24,27 +24,16 @@ addIcons({ chevronDownCircle, chevronForwardCircle, chevronUpCircle, colorPalett
|
|
|
styleUrls: ['tab2.page.scss'],
|
|
|
standalone: true,
|
|
|
imports: [
|
|
|
- IonHeader, IonToolbar, IonTitle, IonContent, ExploreContainerComponent,
|
|
|
- IonLabel,IonItem,IonList,IonAvatar,ArticleCardComponent,CommonModule,IonButton,
|
|
|
+ IonHeader, IonToolbar, IonTitle, IonContent,
|
|
|
+ IonLabel, ArticleCardComponent, CommonModule, IonButton,
|
|
|
IonSegment, IonSegmentButton,
|
|
|
- IonSegmentContent,IonSegmentView,IonCardContent, IonCardTitle, IonCardHeader,IonCard,
|
|
|
- IonModal,IonIcon, IonButtons, IonSearchbar, IonFab, IonFabButton,IonFabList,MarkdownPreviewModule
|
|
|
- ]
|
|
|
+ IonSegmentContent, IonSegmentView, IonCardContent, IonCardTitle, IonCardHeader, IonCard,
|
|
|
+ IonModal, IonButtons, IonSearchbar, MarkdownPreviewModule
|
|
|
+]
|
|
|
})
|
|
|
|
|
|
export class Tab2Page {
|
|
|
|
|
|
- /**
|
|
|
- * 轮播图
|
|
|
- */
|
|
|
- images = [
|
|
|
- 'https://picsum.photos/800/400?random=1',
|
|
|
- 'https://picsum.photos/800/400?random=2',
|
|
|
- 'https://picsum.photos/800/400?random=3',
|
|
|
- 'https://picsum.photos/800/400?random=4',
|
|
|
- 'https://picsum.photos/800/400?random=5',
|
|
|
- 'https://picsum.photos/800/400?random=6',
|
|
|
-];
|
|
|
|
|
|
currentSlide = 0;
|
|
|
intervalId: any;
|
|
@@ -58,18 +47,21 @@ setSlidePosition() {
|
|
|
|
|
|
products: Array<CloudObject> = []; // 当前显示的科普信息
|
|
|
allCards: Array<CloudObject> = []; // 所有科普信息
|
|
|
-
|
|
|
+ admin:string = 'nRDdxdEn2k'
|
|
|
+ user : CloudUser
|
|
|
//搜索功能
|
|
|
searchTerm: string = '';
|
|
|
|
|
|
async searchProducts(event: any) {
|
|
|
this.searchTerm = event.detail.value.toLowerCase();
|
|
|
+ console.log('搜索词:', this.searchTerm);
|
|
|
+
|
|
|
if (this.searchTerm) {
|
|
|
this.products = this.allCards.filter(product =>
|
|
|
- product.get('topic').toLowerCase().includes(this.searchTerm) ||
|
|
|
+ product.get('username').toLowerCase().includes(this.searchTerm) ||
|
|
|
product.get('title').toLowerCase().includes(this.searchTerm) ||
|
|
|
product.get('category').toLowerCase().includes(this.searchTerm) ||
|
|
|
- product.get('content')[0].toLowerCase().includes(this.searchTerm)
|
|
|
+ product.get('content2')[0].toLowerCase().includes(this.searchTerm)
|
|
|
);
|
|
|
} else {
|
|
|
this.products = [...this.allCards]; // 如果搜索词为空,则显示所有科普信息
|
|
@@ -77,7 +69,7 @@ setSlidePosition() {
|
|
|
}
|
|
|
|
|
|
isModalOpen = false;
|
|
|
- currentProduct: any; // 当前选择的科普信息
|
|
|
+ currentProduct: any;
|
|
|
|
|
|
openDetailModal(product?: any) {
|
|
|
this.isModalOpen = true;
|
|
@@ -91,41 +83,57 @@ setSlidePosition() {
|
|
|
|
|
|
|
|
|
|
|
|
- type:"hotdot"|"export" = "hotdot"
|
|
|
+ type:"短篇小说"|"工具箱" = "短篇小说"
|
|
|
content = ''
|
|
|
constructor(
|
|
|
private modalCtrl:ModalController,
|
|
|
private router:Router,
|
|
|
) {
|
|
|
-
|
|
|
- this.loadCards(); // 初始化时加载所有科普信息
|
|
|
+ this.user = new CloudUser();
|
|
|
+ this.loadmyCards(); // 初始化时加载所有科普信息
|
|
|
}
|
|
|
|
|
|
- cards: Array<CloudObject> = []; // 当前显示的分类卡片
|
|
|
+ cards: Array<CloudObject> = [];
|
|
|
+ mycards: Array<CloudObject> = []; // 当前显示的分类卡片
|
|
|
+ myCards: Array<CloudObject> = [];
|
|
|
async typeChange(ev: any) {
|
|
|
- this.type = ev?.detail?.value || ev?.value || 'hotdot';
|
|
|
+ this.type = ev?.detail?.value || ev?.value || '短篇小说';
|
|
|
console.log(this.type);
|
|
|
- await this.loadCards(); // 重新加载卡片
|
|
|
+ await this.loadmyCards(); // 重新加载卡片
|
|
|
}
|
|
|
|
|
|
- async loadCards() {
|
|
|
+ // async loadCards() {
|
|
|
+ // const query = new CloudQuery('NovelAriticle');
|
|
|
+ // this.allCards = await query.find();
|
|
|
+ // console.log(this.allCards);
|
|
|
+ // this.cards = this.allCards.filter((card) => card.get('category').toLowerCase().includes(this.type));
|
|
|
+ // console.log(this.cards);
|
|
|
+ // }
|
|
|
+ async loadmyCards() {
|
|
|
+ let user = new CloudUser();
|
|
|
const query = new CloudQuery('NovelAriticle');
|
|
|
- // this.content = '',
|
|
|
+ if(user.id == this.admin){
|
|
|
+ this.allCards = await query.find();
|
|
|
+ console.log(this.allCards);
|
|
|
+ this.cards = this.allCards.filter((card) => card.get('category').toLowerCase().includes(this.type));
|
|
|
+ console.log(this.cards);
|
|
|
+
|
|
|
+ }else{
|
|
|
+ query.equalTo("user",user?.id)
|
|
|
+ console.log("user",user.id)
|
|
|
this.allCards = await query.find();
|
|
|
console.log(this.allCards);
|
|
|
this.cards = this.allCards.filter((card) => card.get('category').toLowerCase().includes(this.type));
|
|
|
console.log(this.cards);
|
|
|
-
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- openAiKnowledge(){
|
|
|
- this.router.navigate(['tabs/ai-knowledge']);
|
|
|
- }
|
|
|
+
|
|
|
ngOnInit() {
|
|
|
-
|
|
|
+ this.loadmyCards();
|
|
|
}
|
|
|
|
|
|
-}
|
|
|
+}
|