query调整
This commit is contained in:
parent
9de8fbda46
commit
eb3d46c037
@ -9,12 +9,12 @@ export interface GraphicQueryStore {
|
||||
/**
|
||||
* 根据id获取图形
|
||||
*/
|
||||
queryById<T extends JlGraphic>(id: number): T;
|
||||
queryById<T extends JlGraphic>(id: number | string): T;
|
||||
/**
|
||||
* 根据id模糊查询图形
|
||||
* @param id
|
||||
*/
|
||||
queryByIdAmbiguous(id: number): JlGraphic[];
|
||||
queryByIdAmbiguous(id: number | string): JlGraphic[];
|
||||
|
||||
/**
|
||||
* 根据类型获取图形列表
|
||||
@ -79,15 +79,20 @@ export class GraphicStore implements GraphicQueryStore {
|
||||
getAllGraphics(): JlGraphic[] {
|
||||
return [...this.store.values()];
|
||||
}
|
||||
queryById<T extends JlGraphic>(id: number): T {
|
||||
const graphic = this.store.get(id) as T;
|
||||
if (!graphic) throw Error(`未找到id为 [${id}] 的图形.`);
|
||||
return this.store.get(id) as T;
|
||||
queryById<T extends JlGraphic>(id: number | string): T {
|
||||
let nid = id;
|
||||
if (typeof id === 'string') {
|
||||
nid = parseInt(id);
|
||||
}
|
||||
const graphic = this.store.get(nid as number) as T;
|
||||
if (!graphic) throw Error(`未找到id为 [${nid}] 的图形.`);
|
||||
return this.store.get(nid as number) as T;
|
||||
}
|
||||
queryByIdAmbiguous(id: number): JlGraphic[] {
|
||||
queryByIdAmbiguous(id: number | string): JlGraphic[] {
|
||||
const nid = id + '';
|
||||
const list: JlGraphic[] = [];
|
||||
this.store.forEach((g) => {
|
||||
if (Math.abs(g.id - id) <= 10) {
|
||||
if ((g.id + '').search(nid) >= 0) {
|
||||
list.push(g);
|
||||
}
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user