@@ -656,10 +656,12 @@ export default class JSONAPICache implements Cache {
656
656
this . _capabilities . notifyChange ( identifier , 'state' , null ) ;
657
657
}
658
658
659
+ const fields = this . _capabilities . schema . fields ( identifier ) ;
660
+
659
661
// if no cache entry existed, no record exists / property has been accessed
660
662
// and thus we do not need to notify changes to any properties.
661
663
if ( calculateChanges && existed && data . attributes ) {
662
- changedKeys = calculateChangedKeys ( cached , data . attributes ) ;
664
+ changedKeys = calculateChangedKeys ( cached , data . attributes , fields ) ;
663
665
}
664
666
665
667
cached . remoteAttrs = Object . assign (
@@ -682,7 +684,7 @@ export default class JSONAPICache implements Cache {
682
684
}
683
685
684
686
if ( data . relationships ) {
685
- setupRelationships ( this . __graph , this . _capabilities , identifier , data ) ;
687
+ setupRelationships ( this . __graph , fields , identifier , data ) ;
686
688
}
687
689
688
690
if ( changedKeys ?. size ) {
@@ -1007,6 +1009,7 @@ export default class JSONAPICache implements Cache {
1007
1009
}
1008
1010
}
1009
1011
1012
+ const fields = this . _capabilities . schema . fields ( identifier ) ;
1010
1013
cached . isNew = false ;
1011
1014
let newCanonicalAttributes : ExistingResourceObject [ 'attributes' ] ;
1012
1015
if ( data ) {
@@ -1027,7 +1030,6 @@ export default class JSONAPICache implements Cache {
1027
1030
if ( ! DEPRECATE_RELATIONSHIP_REMOTE_UPDATE_CLEARING_LOCAL_STATE ) {
1028
1031
// assert against bad API behavior where a belongsTo relationship
1029
1032
// is saved but the return payload indicates a different final state.
1030
- const fields = this . _capabilities . schema . fields ( identifier ) ;
1031
1033
fields . forEach ( ( field , name ) => {
1032
1034
if ( field . kind === 'belongsTo' ) {
1033
1035
const relationshipData = data . relationships ! [ name ] ?. data ;
@@ -1053,11 +1055,11 @@ export default class JSONAPICache implements Cache {
1053
1055
cached . inflightRelationships = null ;
1054
1056
}
1055
1057
}
1056
- setupRelationships ( this . __graph , this . _capabilities , identifier , data ) ;
1058
+ setupRelationships ( this . __graph , fields , identifier , data ) ;
1057
1059
}
1058
1060
newCanonicalAttributes = data . attributes ;
1059
1061
}
1060
- const changedKeys = newCanonicalAttributes && calculateChangedKeys ( cached , newCanonicalAttributes ) ;
1062
+ const changedKeys = newCanonicalAttributes && calculateChangedKeys ( cached , newCanonicalAttributes , fields ) ;
1061
1063
1062
1064
cached . remoteAttrs = Object . assign (
1063
1065
cached . remoteAttrs || ( Object . create ( null ) as Record < string , unknown > ) ,
@@ -1872,7 +1874,8 @@ function notifyAttributes(
1872
1874
*/
1873
1875
function calculateChangedKeys (
1874
1876
cached : CachedResource ,
1875
- updates : Exclude < ExistingResourceObject [ 'attributes' ] , undefined >
1877
+ updates : Exclude < ExistingResourceObject [ 'attributes' ] , undefined > ,
1878
+ fields : ReturnType < Store [ 'schema' ] [ 'fields' ] >
1876
1879
) : Set < string > {
1877
1880
const changedKeys = new Set < string > ( ) ;
1878
1881
const keys = Object . keys ( updates ) ;
@@ -1887,6 +1890,10 @@ function calculateChangedKeys(
1887
1890
1888
1891
for ( let i = 0 ; i < length ; i ++ ) {
1889
1892
const key = keys [ i ] ;
1893
+ if ( ! fields . has ( key ) ) {
1894
+ continue ;
1895
+ }
1896
+
1890
1897
const value = updates [ key ] ;
1891
1898
1892
1899
// A value in localAttrs means the user has a local change to
@@ -1962,15 +1969,14 @@ function _isLoading(
1962
1969
1963
1970
function setupRelationships (
1964
1971
graph : Graph ,
1965
- capabilities : CacheCapabilitiesManager ,
1972
+ fields : ReturnType < Store [ 'schema' ] [ 'fields' ] > ,
1966
1973
identifier : StableRecordIdentifier ,
1967
1974
data : ExistingResourceObject
1968
1975
) {
1969
1976
// TODO @runspired iterating by definitions instead of by payload keys
1970
1977
// allows relationship payloads to be ignored silently if no relationship
1971
1978
// definition exists. Ensure there's a test for this and then consider
1972
1979
// moving this to an assertion. This check should possibly live in the graph.
1973
- const fields = capabilities . schema . fields ( identifier ) ;
1974
1980
for ( const [ name , field ] of fields ) {
1975
1981
if ( ! isRelationship ( field ) ) continue ;
1976
1982
0 commit comments