mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
989 B
50 lines
989 B
export interface Cell { |
|
row: number |
|
col: number |
|
} |
|
|
|
export class CellRange { |
|
_start: Cell | null |
|
_end: Cell | null |
|
|
|
constructor(start = null, end = null) { |
|
this._start = start |
|
this._end = end ?? this._start |
|
} |
|
|
|
isEmpty() { |
|
return this._start == null || this._end == null |
|
} |
|
|
|
isSingleCell() { |
|
return !this.isEmpty() && this._start?.col === this._end?.col && this._start?.row === this._end?.row |
|
} |
|
|
|
get start(): Cell { |
|
return { |
|
row: Math.min(this._start?.row ?? NaN, this._end?.row ?? NaN), |
|
col: Math.min(this._start?.col ?? NaN, this._end?.col ?? NaN), |
|
} |
|
} |
|
|
|
get end(): Cell { |
|
return { |
|
row: Math.max(this._start?.row ?? NaN, this._end?.row ?? NaN), |
|
col: Math.max(this._start?.col ?? NaN, this._end?.col ?? NaN), |
|
} |
|
} |
|
|
|
startRange(value: Cell) { |
|
this._start = value |
|
this._end = value |
|
} |
|
|
|
endRange(value: Cell) { |
|
this._end = value |
|
} |
|
|
|
clear() { |
|
this._start = null |
|
this._end = null |
|
} |
|
}
|
|
|