Compare commits

..

No commits in common. "main" and "v3.2.2" have entirely different histories.
main ... v3.2.2

4 changed files with 11 additions and 11 deletions

View file

@ -19,7 +19,7 @@
</p>
<p align="center">
<img alt="Version 3.3.0" src="https://img.shields.io/badge/version-3.3.0-blue" />
<img alt="Version 3.2.2" src="https://img.shields.io/badge/version-3.2.2-blue" />
</p>
## Introduction
@ -27,7 +27,7 @@
Sharkitek is a Javascript / TypeScript library designed to ease development of client-side models.
With Sharkitek, you define the architecture of your models by specifying their properties and their types.
Then, you can use the defined methods like `serialize`, `deserialize`, `patch` or `serializeDiff`.
Then, you can use the defined methods like `serialize`, `deserialize`, `save` or `serializeDiff`.
```typescript
class Example extends s.model({
@ -227,7 +227,7 @@ const result = model.serializeDiff();
// result = {}
```
#### `patch()`
#### `save()`
Get difference between original values and current ones, then reset it.
Similar to call `serializeDiff()` then `resetDiff()`.
@ -246,7 +246,7 @@ const model = (new TestModel()).deserialize({
model.title = "A new title for a new world";
const result = model.patch();
const result = model.save();
// if `id` is defined as the model identifier:
// result = { id: 5, title: "A new title for a new world" }
// if `id` is not defined as the model identifier:

View file

@ -1,6 +1,6 @@
{
"name": "@sharkitek/core",
"version": "3.3.0",
"version": "3.2.2",
"description": "TypeScript library for well-designed model architectures.",
"keywords": [
"deserialization",

View file

@ -105,7 +105,7 @@ export interface ModelDefinition<Shape extends ModelShape, IdentifierType, Model
* Get difference between original values and current ones, then reset it.
* Similar to call `serializeDiff()` then `resetDiff()`.
*/
patch(): Partial<SerializedModel<Shape>>;
save(): Partial<SerializedModel<Shape>>;
}
/**
@ -248,7 +248,7 @@ export function model<ModelType extends Model<Shape, IdentifierType<Shape, Ident
});
}
patch(): Partial<SerializedModel<Shape>>
save(): Partial<SerializedModel<Shape>>
{
// Get the difference.
const diff = this.serializeDiff();

View file

@ -109,7 +109,7 @@ it("create and check state then serialize", () => {
});
it("deserialize then patch", () => {
it("deserialize then save", () => {
const article = (new Article()).deserialize({
id: 1,
title: "this is a test",
@ -130,13 +130,13 @@ it("deserialize then patch", () => {
expect(article.isDirty()).toBeTruthy();
expect(article.patch()).toStrictEqual({
expect(article.save()).toStrictEqual({
id: 1,
text: "Modified text.",
});
});
it("patch with modified submodels", () => {
it("save with modified submodels", () => {
const article = (new Article()).deserialize({
id: 1,
title: "this is a test",
@ -152,7 +152,7 @@ it("patch with modified submodels", () => {
article.authors[0].name = "TEST";
article.authors[1].createdAt.setMonth(9);
expect(article.patch()).toStrictEqual({
expect(article.save()).toStrictEqual({
id: 1,
authors: [
{ name: "TEST" },