diff --git a/examples/ReactExample/index.ios.js b/examples/ReactExample/index.ios.js index 4e608975..f6f1d2be 100644 --- a/examples/ReactExample/index.ios.js +++ b/examples/ReactExample/index.ios.js @@ -21,14 +21,14 @@ var { var TodoItemSchema = { name: 'Todo', properties: [ - {name: 'text', type: Realm.Types.String}, + {name: 'text', type: Realm.Types.STRING}, ] }; var TodoListSchmea = { name: 'TodoList', properties: [ - {name: 'name', type: Realm.Types.String}, - {name: 'items', type: Realm.Types.Array, objectType: 'Todo'} + {name: 'name', type: Realm.Types.STRING}, + {name: 'items', type: Realm.Types.ARRAY, objectType: 'Todo'} ] }; diff --git a/src/RJSSchema.mm b/src/RJSSchema.mm index cc77c80c..f4d42a79 100644 --- a/src/RJSSchema.mm +++ b/src/RJSSchema.mm @@ -64,33 +64,33 @@ static inline Property RJSParseProperty(JSContextRef ctx, JSObjectRef propertyOb prop.name = RJSValidatedStringProperty(ctx, propertyObject, nameString); std::string type = RJSValidatedStringProperty(ctx, propertyObject, typeString); - if (type == "RealmTypeBool") { + if (type == "PropTypesBOOL") { prop.type = PropertyTypeBool; } - else if (type == "RealmTypeInt") { + else if (type == "PropTypesINT") { prop.type = PropertyTypeInt; } - else if (type == "RealmTypeFloat") { + else if (type == "PropTypesFLOAT") { prop.type = PropertyTypeFloat; } - else if (type == "RealmTypeDouble") { + else if (type == "PropTypesDOUBLE") { prop.type = PropertyTypeDouble; } - else if (type == "RealmTypeString") { + else if (type == "PropTypesSTRING") { prop.type = PropertyTypeString; } - else if (type == "RealmTypeDate") { + else if (type == "PropTypesDATE") { prop.type = PropertyTypeDate; } - else if (type == "RealmTypeData") { + else if (type == "PropTypesDATA") { prop.type = PropertyTypeData; } - else if (type == "RealmTypeObject") { + else if (type == "PropTypesOBJECT") { prop.type = PropertyTypeObject; prop.object_type = RJSValidatedStringProperty(ctx, propertyObject, objectTypeString); prop.is_nullable = true; } - else if (type == "RealmTypeArray") { + else if (type == "PropTypesARRAY") { prop.type = PropertyTypeArray; prop.object_type = RJSValidatedStringProperty(ctx, propertyObject, objectTypeString); } diff --git a/src/RJSUtil.mm b/src/RJSUtil.mm index 76c5cc18..e78dd7db 100644 --- a/src/RJSUtil.mm +++ b/src/RJSUtil.mm @@ -54,10 +54,10 @@ std::string RJSStringForJSString(JSStringRef jsString) { std::string RJSValidatedStringForValue(JSContextRef ctx, JSValueRef value, const char * name) { if (!JSValueIsString(ctx, value)) { if (name) { - throw std::invalid_argument((std::string)"'" + name + "' must be of type 'string'"); + throw std::invalid_argument((std::string)"'" + name + "' must be of type 'STRING'"); } else { - throw std::invalid_argument("JSValue must be of type 'string'"); + throw std::invalid_argument("JSValue must be of type 'STRING'"); } } diff --git a/src/RealmJS.mm b/src/RealmJS.mm index 808f988b..dcbb331f 100644 --- a/src/RealmJS.mm +++ b/src/RealmJS.mm @@ -21,22 +21,22 @@ #import "RJSObject.hpp" JSValueRef RJSTypeGet(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) { - return RJSValueForString(ctx, "RealmType" + RJSStringForJSString(propertyName)); + return RJSValueForString(ctx, "PropTypes" + RJSStringForJSString(propertyName)); } JSClassRef RJSRealmTypeClass() { JSClassDefinition realmTypesDefinition = kJSClassDefinitionEmpty; - realmTypesDefinition.className = "RealmTypes"; + realmTypesDefinition.className = "PropTypes"; JSStaticValue types[] = { - { "Bool", RJSTypeGet, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "Int", RJSTypeGet, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "Float", RJSTypeGet, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "Double", RJSTypeGet, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "String", RJSTypeGet, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "Date", RJSTypeGet, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "Data", RJSTypeGet, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "Object", RJSTypeGet, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "Array", RJSTypeGet, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, + { "BOOL", RJSTypeGet, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, + { "INT", RJSTypeGet, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, + { "FLOAT", RJSTypeGet, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, + { "DOUBLE", RJSTypeGet, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, + { "STRING", RJSTypeGet, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, + { "DATE", RJSTypeGet, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, + { "DATA", RJSTypeGet, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, + { "OBJECT", RJSTypeGet, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, + { "ARRAY", RJSTypeGet, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, { NULL, NULL, NULL, 0 } }; realmTypesDefinition.staticValues = types; @@ -55,8 +55,6 @@ JSClassRef RJSRealmTypeClass() { JSObjectSetProperty(ctx, globalRealmObject, typeString, typesObject, kJSPropertyAttributeNone, &exception); JSStringRelease(typeString); - RJSRegisterGlobalClass(ctx, globalObject, RJSObjectClass(), "RealmObject", &exception); - assert(!exception); } diff --git a/tests/ObjectTests.js b/tests/ObjectTests.js index cb3c1dbd..4e847ab3 100644 --- a/tests/ObjectTests.js +++ b/tests/ObjectTests.js @@ -29,10 +29,10 @@ var ObjectTests = { for (var i = 0; i < BasicTypesObjectSchema.properties.length; i++) { var prop = BasicTypesObjectSchema.properties[i]; - if (prop.type == Realm.Types.Float) { + if (prop.type == Realm.Types.FLOAT) { TestCase.assertEqualWithTolerance(object[prop.name], basicTypesValues[i], 0.000001); } - else if (prop.type == Realm.Types.Date) { + else if (prop.type == Realm.Types.DATE) { TestCase.assertEqual(object[prop.name].getTime(), basicTypesValues[i].getTime()); } else { diff --git a/tests/TestObjects.js b/tests/TestObjects.js index 1e2fdde5..830caae8 100644 --- a/tests/TestObjects.js +++ b/tests/TestObjects.js @@ -21,7 +21,7 @@ var TestObjectSchema = { name: 'TestObject', properties: [ - {name: 'doubleCol', type: Realm.Types.Double}, + {name: 'doubleCol', type: Realm.Types.DOUBLE}, ] }; @@ -29,8 +29,8 @@ function PersonObject() {} PersonObject.prototype.schema = { name: 'PersonObject', properties: [ - {name: 'name', type: Realm.Types.String}, - {name: 'age', type: Realm.Types.Double}, + {name: 'name', type: Realm.Types.STRING}, + {name: 'age', type: Realm.Types.DOUBLE}, ] }; PersonObject.prototype.description = function() { @@ -40,13 +40,13 @@ PersonObject.prototype.description = function() { var BasicTypesObjectSchema = { name: 'BasicTypesObject', properties: [ - {name: 'boolCol', type: Realm.Types.Bool}, - {name: 'intCol', type: Realm.Types.Int}, - {name: 'floatCol', type: Realm.Types.Float}, - {name: 'doubleCol', type: Realm.Types.Double}, - {name: 'stringCol', type: Realm.Types.String}, - {name: 'dateCol', type: Realm.Types.Date}, - {name: 'dataCol', type: Realm.Types.Data}, + {name: 'boolCol', type: Realm.Types.BOOL}, + {name: 'intCol', type: Realm.Types.INT}, + {name: 'floatCol', type: Realm.Types.FLOAT}, + {name: 'doubleCol', type: Realm.Types.DOUBLE}, + {name: 'stringCol', type: Realm.Types.STRING}, + {name: 'dateCol', type: Realm.Types.DATE}, + {name: 'dataCol', type: Realm.Types.DATA}, ] }; @@ -54,8 +54,8 @@ var LinkTypesObjectSchema = { name: 'LinkTypesObject', properties: [ {name: 'objectCol', type: 'TestObject'}, - {name: 'objectCol1', type: Realm.Types.Object, objectType: 'TestObject'}, - {name: 'arrayCol', type: Realm.Types.Array, objectType: 'TestObject'}, + {name: 'objectCol1', type: Realm.Types.OBJECT, objectType: 'TestObject'}, + {name: 'arrayCol', type: Realm.Types.ARRAY, objectType: 'TestObject'}, ] }; @@ -63,8 +63,8 @@ var IntPrimaryObjectSchema = { name: 'IntPrimaryObject', primaryKey: 'primaryCol', properties: [ - {name: 'primaryCol', type: Realm.Types.Int}, - {name: 'valueCol', type: Realm.Types.String}, + {name: 'primaryCol', type: Realm.Types.INT}, + {name: 'valueCol', type: Realm.Types.STRING}, ] }; @@ -72,32 +72,32 @@ var AllTypesObjectSchema = { name: 'AllTypesObject', primaryKey: 'primaryCol', properties: [ - {name: 'primaryCol',type: Realm.Types.String}, - {name: 'boolCol', type: Realm.Types.Bool}, - {name: 'intCol', type: Realm.Types.Int}, - {name: 'floatCol', type: Realm.Types.Float}, - {name: 'doubleCol', type: Realm.Types.Double}, - {name: 'stringCol', type: Realm.Types.String}, - {name: 'dateCol', type: Realm.Types.Date}, - {name: 'dataCol', type: Realm.Types.Data}, + {name: 'primaryCol',type: Realm.Types.STRING}, + {name: 'boolCol', type: Realm.Types.BOOL}, + {name: 'intCol', type: Realm.Types.INT}, + {name: 'floatCol', type: Realm.Types.FLOAT}, + {name: 'doubleCol', type: Realm.Types.DOUBLE}, + {name: 'stringCol', type: Realm.Types.STRING}, + {name: 'dateCol', type: Realm.Types.DATE}, + {name: 'dataCol', type: Realm.Types.DATA}, {name: 'objectCol', type: 'TestObject'}, - {name: 'arrayCol', type: Realm.Types.Array, objectType: 'TestObject'}, + {name: 'arrayCol', type: Realm.Types.ARRAY, objectType: 'TestObject'}, ] }; var DefaultValuesObjectSchema = { name: 'DefaultValuesObject', properties: [ - {name: 'boolCol', type: Realm.Types.Bool, default: true}, - {name: 'intCol', type: Realm.Types.Int, default: -1}, - {name: 'floatCol', type: Realm.Types.Float, default: -1.1}, - {name: 'doubleCol', type: Realm.Types.Double, default: -1.11}, - {name: 'stringCol', type: Realm.Types.String, default: 'defaultString'}, - {name: 'dateCol', type: Realm.Types.Date, default: new Date(1.111)}, - {name: 'dataCol', type: Realm.Types.Data, default: 'defaultData'}, + {name: 'boolCol', type: Realm.Types.BOOL, default: true}, + {name: 'intCol', type: Realm.Types.INT, default: -1}, + {name: 'floatCol', type: Realm.Types.FLOAT, default: -1.1}, + {name: 'doubleCol', type: Realm.Types.DOUBLE, default: -1.11}, + {name: 'stringCol', type: Realm.Types.STRING, default: 'defaultString'}, + {name: 'dateCol', type: Realm.Types.DATE, default: new Date(1.111)}, + {name: 'dataCol', type: Realm.Types.DATA, default: 'defaultData'}, {name: 'objectCol', type: 'TestObject', default: [1]}, {name: 'nullObjectCol', type: 'TestObject', default: null}, - {name: 'arrayCol', type: Realm.Types.Array, objectType: 'TestObject', default: [[2]]}, + {name: 'arrayCol', type: Realm.Types.ARRAY, objectType: 'TestObject', default: [[2]]}, ] };