2016-02-18 19:59:34 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright 2016 Realm Inc.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file 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.
|
|
|
|
//
|
|
|
|
////////////////////////////////////////////////////////////////////////////
|
2015-10-28 17:37:17 +00:00
|
|
|
|
2015-10-02 05:56:47 +00:00
|
|
|
'use strict';
|
|
|
|
|
2016-03-09 07:47:08 +00:00
|
|
|
import Collection, { createCollection } from './collections';
|
2016-02-28 20:36:30 +00:00
|
|
|
import { objectTypes } from './constants';
|
2016-03-09 07:47:08 +00:00
|
|
|
import { createMethods } from './util';
|
2015-10-02 05:56:47 +00:00
|
|
|
|
2016-03-09 07:47:08 +00:00
|
|
|
export default class List extends Collection {
|
2016-02-28 21:07:05 +00:00
|
|
|
}
|
2015-10-02 05:56:47 +00:00
|
|
|
|
2015-11-20 22:05:18 +00:00
|
|
|
// Non-mutating methods:
|
2016-02-28 20:36:30 +00:00
|
|
|
createMethods(List.prototype, objectTypes.LIST, [
|
2016-02-18 04:27:10 +00:00
|
|
|
'filtered',
|
2016-02-18 21:41:11 +00:00
|
|
|
'sorted',
|
2015-11-20 22:05:18 +00:00
|
|
|
'snapshot',
|
2016-11-22 15:27:58 +00:00
|
|
|
'isValid',
|
|
|
|
'addListener',
|
|
|
|
'removeListener',
|
|
|
|
'removeAllListeners',
|
2015-11-20 22:05:18 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
// Mutating methods:
|
2016-02-28 20:36:30 +00:00
|
|
|
createMethods(List.prototype, objectTypes.LIST, [
|
2015-10-02 05:56:47 +00:00
|
|
|
'pop',
|
|
|
|
'shift',
|
|
|
|
'push',
|
|
|
|
'unshift',
|
|
|
|
'splice',
|
2015-10-19 19:06:47 +00:00
|
|
|
], true);
|
2015-10-02 05:56:47 +00:00
|
|
|
|
2016-03-09 07:47:08 +00:00
|
|
|
export function createList(realmId, info) {
|
2016-02-29 20:34:29 +00:00
|
|
|
return createCollection(List.prototype, realmId, info, true);
|
2015-10-02 05:56:47 +00:00
|
|
|
}
|