|
@@ -44,6 +44,17 @@ import { ModalBrowsePagePage } from '../page/modal/modal-browse-page/modal-brows
|
|
|
import { DraggableButtonComponent } from '../component/draggable-button/draggable-button.component';
|
|
|
import { addIcons } from 'ionicons';
|
|
|
import { searchOutline } from 'ionicons/icons';
|
|
|
+interface Article {
|
|
|
+ article: string;
|
|
|
+ author: { objectId: string; __type: string; className: string };
|
|
|
+ column: string;
|
|
|
+ createdAt: string;
|
|
|
+ illustration: string;
|
|
|
+ objectId: string;
|
|
|
+ theme: string;
|
|
|
+ title: string;
|
|
|
+ updatedAt: string;
|
|
|
+}
|
|
|
|
|
|
@Component({
|
|
|
selector: 'app-tab1',
|
|
@@ -129,12 +140,11 @@ export class Tab1Page implements OnInit {
|
|
|
navItems = [
|
|
|
{ label: '首页', link: '/home' },
|
|
|
{ label: '健康', link: '/health' },
|
|
|
- { label: '生活', link: '/live' },
|
|
|
- { label: '社会', link: '/society' },
|
|
|
+ { label: '养生', link: '/wellness' },
|
|
|
+ { label: '中医药', link: '/chineseMedicine' },
|
|
|
+ { label: '食品', link: '/food' },
|
|
|
{ label: '科普', link: '/science' },
|
|
|
- { label: '体育', link: '/physical' },
|
|
|
- { label: '文旅', link: '/cultural' },
|
|
|
- { label: '教育', link: '/education' },
|
|
|
+ { label: '运动', link: '/sports' },
|
|
|
];
|
|
|
ngAfterViewInit() {
|
|
|
// 在视图初始化之后动态生成导航按钮
|
|
@@ -149,7 +159,7 @@ export class Tab1Page implements OnInit {
|
|
|
this.renderer.appendChild(button, text);
|
|
|
|
|
|
this.renderer.addClass(button, 'nav-item');
|
|
|
- this.renderer.listen(button, 'click', () => this.navigateTo(item.link));
|
|
|
+ this.renderer.listen(button, 'click', () => this.getneeds(item.link));
|
|
|
|
|
|
this.renderer.appendChild(navContainer, button);
|
|
|
}
|
|
@@ -163,37 +173,13 @@ export class Tab1Page implements OnInit {
|
|
|
this.router.navigate([`${path}`]);
|
|
|
}
|
|
|
|
|
|
- goodbody() {
|
|
|
- let allChange = document.querySelector('#allChange');
|
|
|
- if (allChange) {
|
|
|
- allChange.setAttribute('color', 'success');
|
|
|
- }
|
|
|
- this.goodday++;
|
|
|
- this.duringday++;
|
|
|
- this.sexChecked = true;
|
|
|
- }
|
|
|
- badbody() {
|
|
|
- let allChange = document.querySelector('#allChange');
|
|
|
- if (allChange) {
|
|
|
- allChange.setAttribute('color', 'danger');
|
|
|
- }
|
|
|
- this.badday++;
|
|
|
- this.duringday = 0;
|
|
|
- this.sexChecked = true;
|
|
|
- }
|
|
|
- changeTodolist(ev: any) {
|
|
|
- this.todolist = ev;
|
|
|
- }
|
|
|
- deleteThisTodolist(todo: string) {
|
|
|
- let idx = this.todolist.findIndex((item) => item === todo);
|
|
|
- this.todolist.splice(idx, 1);
|
|
|
- }
|
|
|
-
|
|
|
// 首页新闻
|
|
|
- newslists: any[] = [];
|
|
|
+ newslists: Article[] = [];
|
|
|
is_loading: boolean = true;
|
|
|
|
|
|
+ // 获取所有文章
|
|
|
async getAllNews() {
|
|
|
+ this.newslists = [];
|
|
|
let className = 'News';
|
|
|
let newsQuery = new CloudQuery(className);
|
|
|
let newslist = await newsQuery.getAll();
|
|
@@ -207,9 +193,52 @@ export class Tab1Page implements OnInit {
|
|
|
'</p>';
|
|
|
return news;
|
|
|
});
|
|
|
+ this.needlists = this.newslists;
|
|
|
this.is_loading = false;
|
|
|
}
|
|
|
|
|
|
+ needlists: Article[] = [];
|
|
|
+ getneeds(userinput: string): any {
|
|
|
+ // 清空 needlists,防止重复数据
|
|
|
+ this.needlists = [];
|
|
|
+
|
|
|
+ if (!userinput.trim()) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (userinput === '/home') {
|
|
|
+ this.getAllNews();
|
|
|
+ }
|
|
|
+ if (userinput === '/health') {
|
|
|
+ userinput = '健康';
|
|
|
+ }
|
|
|
+ if (userinput === '/wellness') {
|
|
|
+ userinput = '养生';
|
|
|
+ }
|
|
|
+ if (userinput === '/chineseMedicine') {
|
|
|
+ userinput = '中医药';
|
|
|
+ }
|
|
|
+ if (userinput === '/food') {
|
|
|
+ userinput = '食品';
|
|
|
+ }
|
|
|
+ if (userinput === '/science') {
|
|
|
+ userinput = '科普';
|
|
|
+ }
|
|
|
+ if (userinput === '/sports') {
|
|
|
+ userinput = '运动';
|
|
|
+ }
|
|
|
+ this.newslists.forEach((item) => {
|
|
|
+ const themeMatch = item.theme
|
|
|
+ .toLowerCase()
|
|
|
+ .includes(userinput.toLowerCase());
|
|
|
+ if (themeMatch) {
|
|
|
+ this.needlists.push(item);
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ console.log(userinput + ' 匹配的文章:', this.needlists);
|
|
|
+ return this.needlists;
|
|
|
+ }
|
|
|
+
|
|
|
// test
|
|
|
test() {
|
|
|
let newsData = {
|
|
@@ -222,4 +251,30 @@ export class Tab1Page implements OnInit {
|
|
|
let news = new CloudNews();
|
|
|
let res = news.add(newsData);
|
|
|
}
|
|
|
+
|
|
|
+ goodbody() {
|
|
|
+ let allChange = document.querySelector('#allChange');
|
|
|
+ if (allChange) {
|
|
|
+ allChange.setAttribute('color', 'success');
|
|
|
+ }
|
|
|
+ this.goodday++;
|
|
|
+ this.duringday++;
|
|
|
+ this.sexChecked = true;
|
|
|
+ }
|
|
|
+ badbody() {
|
|
|
+ let allChange = document.querySelector('#allChange');
|
|
|
+ if (allChange) {
|
|
|
+ allChange.setAttribute('color', 'danger');
|
|
|
+ }
|
|
|
+ this.badday++;
|
|
|
+ this.duringday = 0;
|
|
|
+ this.sexChecked = true;
|
|
|
+ }
|
|
|
+ changeTodolist(ev: any) {
|
|
|
+ this.todolist = ev;
|
|
|
+ }
|
|
|
+ deleteThisTodolist(todo: string) {
|
|
|
+ let idx = this.todolist.findIndex((item) => item === todo);
|
|
|
+ this.todolist.splice(idx, 1);
|
|
|
+ }
|
|
|
}
|