mirror of
https://github.com/zhigang1992/react-native-firebase.git
synced 2026-04-04 22:56:45 +08:00
- [android] upgrade to Android X - [android] upgrade gradle wrapper to v5.4.1 - [android][ios][tests] remove manual packages & enable auto-linking - [tests][internal] upgrade tests project to RN 60 - [ios] temporarily remove framework support in pods - broken in RN 60 - see https://github.com/facebook/react-native/issues/25349 - [linting] switch to use rn community linting rules
243 lines
5.2 KiB
JavaScript
243 lines
5.2 KiB
JavaScript
/*
|
|
* Copyright (c) 2016-present Invertase Limited & Contributors
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this library except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*
|
|
*/
|
|
|
|
import { isNull, isNumber, isString } from '@react-native-firebase/common';
|
|
|
|
const CONSTANTS = {
|
|
VIEW_FROM_LEFT: 'left',
|
|
VIEW_FROM_RIGHT: 'right',
|
|
};
|
|
|
|
export default class DatabaseQueryModifiers {
|
|
constructor() {
|
|
this._limit = undefined;
|
|
this._orderBy = undefined;
|
|
this._startAt = undefined;
|
|
this._endAt = undefined;
|
|
this._modifiers = [];
|
|
}
|
|
|
|
/**
|
|
*
|
|
* LIMIT
|
|
*
|
|
*/
|
|
|
|
hasLimit() {
|
|
return this._limit !== undefined;
|
|
}
|
|
|
|
isValidLimit(limit) {
|
|
return !isNumber(limit) || Math.floor(limit) !== limit || limit <= 0;
|
|
}
|
|
|
|
limitToFirst(limit) {
|
|
const newLimit = {
|
|
id: `limit-limitToFirst:${limit}`,
|
|
name: 'limitToFirst',
|
|
type: 'limit',
|
|
value: limit,
|
|
viewFrom: CONSTANTS.VIEW_FROM_LEFT,
|
|
};
|
|
|
|
this._limit = newLimit;
|
|
this._modifiers.push(newLimit);
|
|
return this;
|
|
}
|
|
|
|
limitToLast(limit) {
|
|
const newLimit = {
|
|
id: `limit-limitToLast:${limit}`,
|
|
name: 'limitToLast',
|
|
type: 'limit',
|
|
value: limit,
|
|
viewFrom: CONSTANTS.VIEW_FROM_RIGHT,
|
|
};
|
|
|
|
this._limit = newLimit;
|
|
this._modifiers.push(newLimit);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* ORDER
|
|
*
|
|
*/
|
|
|
|
hasOrderBy() {
|
|
return this._orderBy !== undefined;
|
|
}
|
|
|
|
orderByChild(path) {
|
|
const newOrder = {
|
|
id: `order-orderByChild:${path}`,
|
|
type: 'orderBy',
|
|
name: 'orderByChild',
|
|
key: path,
|
|
};
|
|
|
|
this._orderBy = newOrder;
|
|
this._modifiers.push(newOrder);
|
|
return this;
|
|
}
|
|
|
|
orderByKey() {
|
|
const newOrder = {
|
|
id: 'order-orderByKey',
|
|
type: 'orderBy',
|
|
name: 'orderByKey',
|
|
};
|
|
|
|
this._orderBy = newOrder;
|
|
this._modifiers.push(newOrder);
|
|
return this;
|
|
}
|
|
|
|
isValidPriority(priority) {
|
|
return isNumber(priority) || isString(priority) || isNull(priority);
|
|
}
|
|
|
|
orderByPriority() {
|
|
const newOrder = {
|
|
id: 'order-orderByPriority',
|
|
type: 'orderBy',
|
|
name: 'orderByPriority',
|
|
};
|
|
|
|
this._orderBy = newOrder;
|
|
this._modifiers.push(newOrder);
|
|
return this;
|
|
}
|
|
|
|
orderByValue() {
|
|
const newOrder = {
|
|
id: 'order-orderByValue',
|
|
type: 'orderBy',
|
|
name: 'orderByValue',
|
|
};
|
|
|
|
this._orderBy = newOrder;
|
|
this._modifiers.push(newOrder);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* FILTER
|
|
*
|
|
*/
|
|
|
|
hasStartAt() {
|
|
return this._startAt !== undefined;
|
|
}
|
|
|
|
hasEndAt() {
|
|
return this._endAt !== undefined;
|
|
}
|
|
|
|
startAt(value, key) {
|
|
const newStart = {
|
|
id: `filter-startAt:${value}:${key || ''}`,
|
|
type: 'filter',
|
|
name: 'startAt',
|
|
value,
|
|
valueType: value === null ? 'null' : typeof value,
|
|
key,
|
|
};
|
|
|
|
this._startAt = newStart;
|
|
this._modifiers.push(newStart);
|
|
return this;
|
|
}
|
|
|
|
endAt(value, key) {
|
|
const newStart = {
|
|
id: `filter-endAt:${value}:${key || ''}`,
|
|
type: 'filter',
|
|
name: 'endAt',
|
|
value,
|
|
valueType: value === null ? 'null' : typeof value,
|
|
key,
|
|
};
|
|
|
|
this._endAt = newStart;
|
|
this._modifiers.push(newStart);
|
|
return this;
|
|
}
|
|
|
|
// Returns a modifier array
|
|
toArray() {
|
|
return this._modifiers;
|
|
}
|
|
|
|
// Converts the modifier list to a string representation
|
|
toString() {
|
|
const sorted = this._modifiers.sort((a, b) => {
|
|
if (a.id < b.id) {
|
|
return -1;
|
|
}
|
|
if (a.id > b.id) {
|
|
return 1;
|
|
}
|
|
return 0;
|
|
});
|
|
|
|
let key = '{';
|
|
for (let i = 0; i < sorted.length; i++) {
|
|
if (i !== 0) {
|
|
key += ',';
|
|
}
|
|
key += sorted[i].id;
|
|
}
|
|
key += '}';
|
|
return key;
|
|
}
|
|
|
|
validateModifiers(prefix) {
|
|
if (this._orderBy && this._orderBy.name === 'orderByKey') {
|
|
if ((this._startAt && !!this._startAt.key) || (this._endAt && !!this._endAt.key)) {
|
|
throw new Error(
|
|
`${prefix} When ordering by key, you may only pass a value argument to startAt(), endAt(), or equalTo().`,
|
|
);
|
|
}
|
|
}
|
|
|
|
if (this._orderBy && this._orderBy.name === 'orderByKey') {
|
|
if (
|
|
(this._startAt && this._startAt.valueType !== 'string') ||
|
|
(this._endAt && this._endAt.valueType !== 'string')
|
|
) {
|
|
throw new Error(
|
|
`${prefix} When ordering by key, the value of startAt(), endAt(), or equalTo() must be a string.`,
|
|
);
|
|
}
|
|
}
|
|
|
|
if (this._orderBy && this._orderBy.name === 'orderByPriority') {
|
|
if (
|
|
(this._startAt && !this.isValidPriority(this._startAt.value)) ||
|
|
(this._endAt && !this.isValidPriority(this._endAt.value))
|
|
) {
|
|
throw new Error(
|
|
`${prefix} When ordering by priority, the first value of startAt(), endAt(), or equalTo() must be a valid priority value (null, a number, or a string).`,
|
|
);
|
|
}
|
|
}
|
|
}
|
|
}
|