Coder Social home page Coder Social logo

Comments (14)

mattlewer avatar mattlewer commented on July 30, 2024 1

Yep, both worked fine with v11, will try and reproduce with a test when I have a moment and get back to you

from realm-js.

sync-by-unito avatar sync-by-unito commented on July 30, 2024

➤ PM Bot commented:

Jira ticket: RJS-2744

from realm-js.

kneth avatar kneth commented on July 30, 2024

@mattlewer Thank you for reporting. Is it possible for you to share the schema?

from realm-js.

mattlewer avatar mattlewer commented on July 30, 2024

@mattlewer Thank you for reporting. Is it possible for you to share the schema?

Hopefully this helps

Config

export const config: Realm.Configuration = {
  schema: [
    OrganisationRealm,
    Session,
    User,
  ],
  schemaVersion: 4,
};
export default createRealmContext(config);

Session

import {Realm} from '@realm/react';
import User from './User';
import idGenerator from '../../services/idGenerator';

export default class Session extends Realm.Object {
  client_id!: string;
  user!: User;

  static create(user: User): Object {
    return {
      user: user,
    };
  }

  static schema = {
    name: 'Session',
    primaryKey: 'client_id',
    properties: {
      client_id: {type: 'string', default: () => idGenerator.generate()},
      user: 'User',
    },
  };
}

User

import 'react-native-get-random-values';
import {Realm} from '@realm/react';
import idGenerator from '../../services/idGenerator';
import {Organisation} from './Organisation';

export default class User extends Realm.Object {
  client_id!: string;
  id!: number;
  inviting_organisations?: Organisation[];

  static schema = {
    name: 'User',
    primaryKey: 'id',
    properties: {
      client_id: {type: 'string', default: () => idGenerator.generate()},
      id: 'int',
      inviting_organisations: 'Organisation[]',
    },
  };
}

Organisation

import 'react-native-get-random-values';
import {Realm} from '@realm/react';
import idGenerator from '../../services/idGenerator';

export interface Organisation extends Syncable {
  client_id: string;
  id: number;
  name: string;
  created_at: Date;
  updated_at: Date;
}

export class OrganisationRealm extends Realm.Object implements Organisation {
  client_id!: string;
  id!: number;
  name!: string;
  created_at!: Date;
  updated_at!: Date;
  resource!: string;

  static schema = {
    name: 'Organisation',
    primaryKey: 'id',
    properties: {
      client_id: {type: 'string', default: () => idGenerator.generate()},
      id: 'int',
      name: 'string',
      created_at: {type: 'date', default: () => new Date()},
      updated_at: {type: 'date', default: () => new Date()},
      resource: {type: 'string', default: SyncResource.Organisations},
    },
  };
}

Syncable

export interface Syncable {
  id?: number;
  client_id?: string;
  created_at: Date;
  updated_at: Date;
  is_synced?: boolean;
  resource?: string;
}

SyncResource

 export enum SyncResource { Organisations = 'organisations', }

idGenerator

const idGenerator = () => {
  const generate = (): string => {
    return new Realm.Types.UUID().toHexString(true);
  };

  return {
    generate,
  };
};

export default idGenerator();

from realm-js.

kneth avatar kneth commented on July 30, 2024

It sounds like the same as #6129 and we released a fix for it in v12.2.0.

from realm-js.

mattlewer avatar mattlewer commented on July 30, 2024

Has this potentially regressed since as I'm using v12.6.0? Will downgrade to v12.2.0 to see if it makes a difference and get back to you

from realm-js.

kneth avatar kneth commented on July 30, 2024

downgrade to v12.2.0 to see if it makes a difference

Thanks!

from realm-js.

mattlewer avatar mattlewer commented on July 30, 2024

Same error:

Original update function:
Error: Attempting to create an object of type 'User' with an existing primary key value '341'

Adapted update function:
Error: Attempting to create an object of type 'Organisation' with an existing primary key value '454'.

from realm-js.

nirinchev avatar nirinchev commented on July 30, 2024

So the first error is expected:

realm.write(() => {
	session.user = updatedUser;
});

where updatedUser is an unmanaged object will attempt to first add it to realm and then set session.user to it. In the case where the user already exists, you're supposed to get an error.

The second code snippet points to a legitimate bug though, however I've been unable to reproduce it. I've attached my attempt to repro this - if you can modify it in a way that triggers the duplicate PK error, let us know and we'll continue investigating.

Archive.zip

from realm-js.

mattlewer avatar mattlewer commented on July 30, 2024

Thank you for getting back to me, I will have a look ASAP.

Given the above situation, what would be the correct way to update this nested object? I would assume that because it comes down with the same primary key as the object currently stored in the DB, it would successfully match these up and update it, I don't quite understand why it would cause an error?

Also as this worked fine in v11, is there something specific that has caused this breaking change? If I downgrade again, everything works as intended.

from realm-js.

nirinchev avatar nirinchev commented on July 30, 2024

Did

update(() => {
    session.user = updatedUser;
});

work with v11? If it did, it's definitely unintended and likely a bug with v11. The other code snippet - i.e.:

realm.write(() => {
      realm.create(
        'session',
        merge({}, original, changes),
        Realm.UpdateMode.Modified,
      );
    });

Should work in both v11 and v12 and is the right way to do it. If it doesn't work with v12, then we should definitely fix it, but I can't repro it so far.

from realm-js.

github-actions avatar github-actions commented on July 30, 2024

This issue has been automatically closed because there has been no response to our request for more information from the original author. With only the information that is currently in the issue, we don't have enough information to take action. Please reach out if you have or find the answers we need so that we can investigate further.

from realm-js.

kneth avatar kneth commented on July 30, 2024

@mattlewer

will try and reproduce with a test when I have a moment and get back to you

Any chance you have a moment to create a reproduction case for us?

from realm-js.

github-actions avatar github-actions commented on July 30, 2024

This issue has been automatically closed because there has been no response to our request for more information from the original author. With only the information that is currently in the issue, we don't have enough information to take action. Please reach out if you have or find the answers we need so that we can investigate further.

from realm-js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.