|
@@ -1,6 +1,6 @@
|
|
|
import { HistoryController } from "./history";
|
|
|
import {BehaviorSubject} from "rxjs";
|
|
|
-import { reactive, toRaw } from "vue";
|
|
|
+import { reactive } from "vue";
|
|
|
|
|
|
export class ValueSnap {
|
|
|
Id:string;
|
|
@@ -45,7 +45,7 @@ export function createValueSnap(value:any, oldValue:any, rx:BehaviorSubject<any>
|
|
|
|
|
|
class RxValue {
|
|
|
static create<T extends {[key:string]: any}>(_fields:T, histroy?: HistoryController ) {
|
|
|
- let obj = {} as any;
|
|
|
+ let obj = {__rx:true} as any;
|
|
|
|
|
|
obj._historySnap = {} as any;
|
|
|
obj._historySub = {} as any;
|
|
@@ -57,8 +57,17 @@ class RxValue {
|
|
|
const names = Object.keys(_fields);
|
|
|
|
|
|
names.forEach(name=>{
|
|
|
+
|
|
|
+
|
|
|
const currName = name;
|
|
|
const initValue = _fields[currName]
|
|
|
+
|
|
|
+ const isRxField = typeof initValue == "object" && initValue.__rx
|
|
|
+ if (isRxField) {
|
|
|
+ obj[currName] = initValue;
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
const f = createRxValue(initValue, !!histroy);
|
|
|
obj._rxs[name] = f;
|
|
|
|
|
@@ -111,7 +120,15 @@ class RxValue {
|
|
|
obj["toJson"] = function() {
|
|
|
const out:any = {};
|
|
|
const names = Object.keys(_fields);
|
|
|
+
|
|
|
names.forEach(name=>{
|
|
|
+ const initV = _fields[name]
|
|
|
+ const isRxField = typeof initV == "object" && initV.__rx
|
|
|
+ if (isRxField) {
|
|
|
+ out[name] = obj[name].toJson();
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if ( obj[name] )
|
|
|
out[name] = obj._rxs[name].getValue().value;
|
|
|
})
|
|
|
return out;
|
|
@@ -120,6 +137,12 @@ class RxValue {
|
|
|
const out:any = {};
|
|
|
const names = Object.keys(_fields);
|
|
|
names.forEach(name=>{
|
|
|
+ const initV = _fields[name]
|
|
|
+ const isRxField = typeof initV == "object" && initV.__rx
|
|
|
+ if (isRxField) {
|
|
|
+ out[name] = obj[name].fromJson( json[name] );
|
|
|
+ return;
|
|
|
+ }
|
|
|
obj._rxs[name].next({value: json[name], _hstry: false})
|
|
|
})
|
|
|
return out;
|