Commit 989b0fd8 authored by ibuler's avatar ibuler

[Update] 修改pipe

parent 6bb66d4f
...@@ -8,6 +8,6 @@ RUN npm run-script build ...@@ -8,6 +8,6 @@ RUN npm run-script build
FROM nginx:alpine FROM nginx:alpine
COPY --from=stage-build /data/luan /opt/luna/ COPY --from=stage-build /data/luna /opt/luna/
COPY ./src/assets/i18n /opt/luna/i18n COPY ./src/assets/i18n /opt/luna/i18n
COPY nginx.conf /etc/nginx/conf.d/default.conf COPY nginx.conf /etc/nginx/conf.d/default.conf
import {Component, OnInit, Pipe, PipeTransform} from '@angular/core'; import {Component, OnInit} from '@angular/core';
import {FormControl} from '@angular/forms'; import {FormControl} from '@angular/forms';
import {debounceTime, distinctUntilChanged} from 'rxjs/operators'; import {debounceTime, distinctUntilChanged} from 'rxjs/operators';
import {LogService, TreeFilterService} from '@app/app.service'; import {LogService, TreeFilterService} from '@app/app.service';
@Pipe({name: 'SearchFilter'})
export class SearchFilter implements PipeTransform {
transform(value: any, input: string) {
if (input) {
input = input.toLowerCase();
return value.filter(function (el: any) {
// ToDo: search with a simple SQL like language, and a bug search a group's hosts
return JSON.stringify(el).toLowerCase().indexOf(input) > -1;
});
}
return value;
}
}
@Component({ @Component({
selector: 'elements-tree-filter', selector: 'elements-tree-filter',
templateUrl: './tree-filter.component.html', templateUrl: './tree-filter.component.html',
styleUrls: ['./tree-filter.component.css'], styleUrls: ['./tree-filter.component.css'],
providers: [SearchFilter],
}) })
export class ElementTreeFilterComponent implements OnInit { export class ElementTreeFilterComponent implements OnInit {
searchControl: FormControl; searchControl: FormControl;
......
import {TransPipe} from './trans.pipe'; import {TransPipe} from './trans.pipe';
import {UtcDatePipe} from './date.pipe'; import {UtcDatePipe} from './date.pipe';
import {TruncatecharsPipe} from './truncatechars.pipe'; import {TruncatecharsPipe} from './truncatechars.pipe';
import {SearchFilter} from '@app/elements/tree-filter/tree-filter.component'; import {SearchFilter} from './search.pipe';
export const Pipes = [ export const Pipes = [
UtcDatePipe, UtcDatePipe,
......
import {Pipe, PipeTransform} from '@angular/core';
@Pipe({name: 'SearchFilter'})
export class SearchFilter implements PipeTransform {
transform(value: any, input: string) {
if (input) {
input = input.toLowerCase();
return value.filter(function (el: any) {
// ToDo: search with a simple SQL like language, and a bug search a group's hosts
return JSON.stringify(el).toLowerCase().indexOf(input) > -1;
});
}
return value;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment