diff --git a/Android/doric/src/main/java/com/github/penfeizhou/doric/plugin/DoricJavaPlugin.java b/Android/doric/src/main/java/com/github/penfeizhou/doric/plugin/DoricJavaPlugin.java index d95ddd2a..4281a2a1 100644 --- a/Android/doric/src/main/java/com/github/penfeizhou/doric/plugin/DoricJavaPlugin.java +++ b/Android/doric/src/main/java/com/github/penfeizhou/doric/plugin/DoricJavaPlugin.java @@ -1,14 +1,14 @@ package com.github.penfeizhou.doric.plugin; import com.github.penfeizhou.doric.DoricContext; -import com.github.penfeizhou.doric.utils.DoricComponent; +import com.github.penfeizhou.doric.utils.DoricContextHolder; /** * @Description: Doric * @Author: pengfei.zhou * @CreateDate: 2019-07-18 */ -public abstract class DoricJavaPlugin extends DoricComponent { +public abstract class DoricJavaPlugin extends DoricContextHolder { public DoricJavaPlugin(DoricContext doricContext) { super(doricContext); } diff --git a/Android/doric/src/main/java/com/github/penfeizhou/doric/shader/ViewNode.java b/Android/doric/src/main/java/com/github/penfeizhou/doric/shader/ViewNode.java index 84643e3b..1071493f 100644 --- a/Android/doric/src/main/java/com/github/penfeizhou/doric/shader/ViewNode.java +++ b/Android/doric/src/main/java/com/github/penfeizhou/doric/shader/ViewNode.java @@ -3,12 +3,10 @@ package com.github.penfeizhou.doric.shader; import android.content.Context; import android.view.View; import android.view.ViewGroup; -import android.widget.FrameLayout; -import android.widget.LinearLayout; import com.github.penfeizhou.doric.DoricContext; import com.github.penfeizhou.doric.DoricRegistry; -import com.github.penfeizhou.doric.utils.DoricComponent; +import com.github.penfeizhou.doric.utils.DoricContextHolder; import com.github.penfeizhou.doric.utils.DoricConstant; import com.github.penfeizhou.doric.utils.DoricMetaInfo; import com.github.penfeizhou.doric.utils.DoricUtils; @@ -22,7 +20,7 @@ import java.util.LinkedList; * @Author: pengfei.zhou * @CreateDate: 2019-07-20 */ -public abstract class ViewNode extends DoricComponent { +public abstract class ViewNode extends DoricContextHolder { protected T mView; int index; GroupNode mParent; diff --git a/Android/doric/src/main/java/com/github/penfeizhou/doric/utils/DoricComponent.java b/Android/doric/src/main/java/com/github/penfeizhou/doric/utils/DoricContextHolder.java similarity index 78% rename from Android/doric/src/main/java/com/github/penfeizhou/doric/utils/DoricComponent.java rename to Android/doric/src/main/java/com/github/penfeizhou/doric/utils/DoricContextHolder.java index a2fcaaa3..4d7c9350 100644 --- a/Android/doric/src/main/java/com/github/penfeizhou/doric/utils/DoricComponent.java +++ b/Android/doric/src/main/java/com/github/penfeizhou/doric/utils/DoricContextHolder.java @@ -7,10 +7,10 @@ import com.github.penfeizhou.doric.DoricContext; * @Author: pengfei.zhou * @CreateDate: 2019-07-20 */ -public abstract class DoricComponent { +public abstract class DoricContextHolder { private final DoricContext doricContext; - public DoricComponent(DoricContext doricContext) { + public DoricContextHolder(DoricContext doricContext) { this.doricContext = doricContext; } diff --git a/Android/doric/src/main/java/com/github/penfeizhou/doric/utils/DoricMetaInfo.java b/Android/doric/src/main/java/com/github/penfeizhou/doric/utils/DoricMetaInfo.java index 84db2e68..414078fe 100644 --- a/Android/doric/src/main/java/com/github/penfeizhou/doric/utils/DoricMetaInfo.java +++ b/Android/doric/src/main/java/com/github/penfeizhou/doric/utils/DoricMetaInfo.java @@ -16,7 +16,7 @@ import java.util.concurrent.ConcurrentHashMap; * @Author: pengfei.zhou * @CreateDate: 2019-07-18 */ -public class DoricMetaInfo { +public class DoricMetaInfo { private Constructor pluginConstructor; diff --git a/iOS/Example/Pods/Headers/Private/Doric/DoricAsyncResult.h b/iOS/Example/Pods/Headers/Private/Doric/DoricAsyncResult.h index c5a8f34b..dc8ffde2 120000 --- a/iOS/Example/Pods/Headers/Private/Doric/DoricAsyncResult.h +++ b/iOS/Example/Pods/Headers/Private/Doric/DoricAsyncResult.h @@ -1 +1 @@ -../../../../../Pod/Classes/DoricAsyncResult.h \ No newline at end of file +../../../../../Pod/Classes/Util/DoricAsyncResult.h \ No newline at end of file diff --git a/iOS/Example/Pods/Headers/Private/Doric/DoricBridgeExtension.h b/iOS/Example/Pods/Headers/Private/Doric/DoricBridgeExtension.h new file mode 120000 index 00000000..c958222e --- /dev/null +++ b/iOS/Example/Pods/Headers/Private/Doric/DoricBridgeExtension.h @@ -0,0 +1 @@ +../../../../../Pod/Classes/Extension/DoricBridgeExtension.h \ No newline at end of file diff --git a/iOS/Example/Pods/Headers/Private/Doric/DoricComponent.h b/iOS/Example/Pods/Headers/Private/Doric/DoricComponent.h deleted file mode 120000 index 3e7ec4f8..00000000 --- a/iOS/Example/Pods/Headers/Private/Doric/DoricComponent.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../Pod/Classes/DoricComponent.h \ No newline at end of file diff --git a/iOS/Example/Pods/Headers/Private/Doric/DoricConstant.h b/iOS/Example/Pods/Headers/Private/Doric/DoricConstant.h index 83da6b44..6680f76a 120000 --- a/iOS/Example/Pods/Headers/Private/Doric/DoricConstant.h +++ b/iOS/Example/Pods/Headers/Private/Doric/DoricConstant.h @@ -1 +1 @@ -../../../../../Pod/Classes/DoricConstant.h \ No newline at end of file +../../../../../Pod/Classes/Util/DoricConstant.h \ No newline at end of file diff --git a/iOS/Example/Pods/Headers/Private/Doric/DoricContextHolder.h b/iOS/Example/Pods/Headers/Private/Doric/DoricContextHolder.h new file mode 120000 index 00000000..2ad994ce --- /dev/null +++ b/iOS/Example/Pods/Headers/Private/Doric/DoricContextHolder.h @@ -0,0 +1 @@ +../../../../../Pod/Classes/DoricContextHolder.h \ No newline at end of file diff --git a/iOS/Example/Pods/Headers/Private/Doric/DoricGroupNode.h b/iOS/Example/Pods/Headers/Private/Doric/DoricGroupNode.h new file mode 120000 index 00000000..684ecdfe --- /dev/null +++ b/iOS/Example/Pods/Headers/Private/Doric/DoricGroupNode.h @@ -0,0 +1 @@ +../../../../../Pod/Classes/Shader/DoricGroupNode.h \ No newline at end of file diff --git a/iOS/Example/Pods/Headers/Private/Doric/DoricHLayoutNode.h b/iOS/Example/Pods/Headers/Private/Doric/DoricHLayoutNode.h new file mode 120000 index 00000000..69ec5090 --- /dev/null +++ b/iOS/Example/Pods/Headers/Private/Doric/DoricHLayoutNode.h @@ -0,0 +1 @@ +../../../../../Pod/Classes/Shader/DoricHLayoutNode.h \ No newline at end of file diff --git a/iOS/Example/Pods/Headers/Private/Doric/DoricJSCoreExecutor.h b/iOS/Example/Pods/Headers/Private/Doric/DoricJSCoreExecutor.h index d44ada7c..92c65095 120000 --- a/iOS/Example/Pods/Headers/Private/Doric/DoricJSCoreExecutor.h +++ b/iOS/Example/Pods/Headers/Private/Doric/DoricJSCoreExecutor.h @@ -1 +1 @@ -../../../../../Pod/Classes/DoricJSCoreExecutor.h \ No newline at end of file +../../../../../Pod/Classes/Engine/DoricJSCoreExecutor.h \ No newline at end of file diff --git a/iOS/Example/Pods/Headers/Private/Doric/DoricJSEngine.h b/iOS/Example/Pods/Headers/Private/Doric/DoricJSEngine.h index 766d6f65..b97a9e2d 120000 --- a/iOS/Example/Pods/Headers/Private/Doric/DoricJSEngine.h +++ b/iOS/Example/Pods/Headers/Private/Doric/DoricJSEngine.h @@ -1 +1 @@ -../../../../../Pod/Classes/DoricJSEngine.h \ No newline at end of file +../../../../../Pod/Classes/Engine/DoricJSEngine.h \ No newline at end of file diff --git a/iOS/Example/Pods/Headers/Private/Doric/DoricJSExecutorProtocal.h b/iOS/Example/Pods/Headers/Private/Doric/DoricJSExecutorProtocal.h index ea55b461..62843df3 120000 --- a/iOS/Example/Pods/Headers/Private/Doric/DoricJSExecutorProtocal.h +++ b/iOS/Example/Pods/Headers/Private/Doric/DoricJSExecutorProtocal.h @@ -1 +1 @@ -../../../../../Pod/Classes/DoricJSExecutorProtocal.h \ No newline at end of file +../../../../../Pod/Classes/Engine/DoricJSExecutorProtocal.h \ No newline at end of file diff --git a/iOS/Example/Pods/Headers/Private/Doric/DoricModalPlugin.h b/iOS/Example/Pods/Headers/Private/Doric/DoricModalPlugin.h index 71690aec..d147e1e2 120000 --- a/iOS/Example/Pods/Headers/Private/Doric/DoricModalPlugin.h +++ b/iOS/Example/Pods/Headers/Private/Doric/DoricModalPlugin.h @@ -1 +1 @@ -../../../../../Pod/Classes/DoricModalPlugin.h \ No newline at end of file +../../../../../Pod/Classes/Plugin/DoricModalPlugin.h \ No newline at end of file diff --git a/iOS/Example/Pods/Headers/Private/Doric/DoricNativePlugin.h b/iOS/Example/Pods/Headers/Private/Doric/DoricNativePlugin.h index 95e111c1..a1cc9008 120000 --- a/iOS/Example/Pods/Headers/Private/Doric/DoricNativePlugin.h +++ b/iOS/Example/Pods/Headers/Private/Doric/DoricNativePlugin.h @@ -1 +1 @@ -../../../../../Pod/Classes/DoricNativePlugin.h \ No newline at end of file +../../../../../Pod/Classes/Plugin/DoricNativePlugin.h \ No newline at end of file diff --git a/iOS/Example/Pods/Headers/Private/Doric/DoricPromise.h b/iOS/Example/Pods/Headers/Private/Doric/DoricPromise.h index de5c0b44..cf1e8a71 120000 --- a/iOS/Example/Pods/Headers/Private/Doric/DoricPromise.h +++ b/iOS/Example/Pods/Headers/Private/Doric/DoricPromise.h @@ -1 +1 @@ -../../../../../Pod/Classes/DoricPromise.h \ No newline at end of file +../../../../../Pod/Classes/Plugin/DoricPromise.h \ No newline at end of file diff --git a/iOS/Example/Pods/Headers/Private/Doric/DoricShaderPlugin.h b/iOS/Example/Pods/Headers/Private/Doric/DoricShaderPlugin.h new file mode 120000 index 00000000..ef0174f1 --- /dev/null +++ b/iOS/Example/Pods/Headers/Private/Doric/DoricShaderPlugin.h @@ -0,0 +1 @@ +../../../../../Pod/Classes/Plugin/DoricShaderPlugin.h \ No newline at end of file diff --git a/iOS/Example/Pods/Headers/Private/Doric/DoricStackNode.h b/iOS/Example/Pods/Headers/Private/Doric/DoricStackNode.h new file mode 120000 index 00000000..717b56d6 --- /dev/null +++ b/iOS/Example/Pods/Headers/Private/Doric/DoricStackNode.h @@ -0,0 +1 @@ +../../../../../Pod/Classes/Shader/DoricStackNode.h \ No newline at end of file diff --git a/iOS/Example/Pods/Headers/Private/Doric/DoricUtil.h b/iOS/Example/Pods/Headers/Private/Doric/DoricUtil.h index 0aa09e95..e9b242c5 120000 --- a/iOS/Example/Pods/Headers/Private/Doric/DoricUtil.h +++ b/iOS/Example/Pods/Headers/Private/Doric/DoricUtil.h @@ -1 +1 @@ -../../../../../Pod/Classes/DoricUtil.h \ No newline at end of file +../../../../../Pod/Classes/Util/DoricUtil.h \ No newline at end of file diff --git a/iOS/Example/Pods/Headers/Private/Doric/DoricVLayoutNode.h b/iOS/Example/Pods/Headers/Private/Doric/DoricVLayoutNode.h new file mode 120000 index 00000000..761dcd57 --- /dev/null +++ b/iOS/Example/Pods/Headers/Private/Doric/DoricVLayoutNode.h @@ -0,0 +1 @@ +../../../../../Pod/Classes/Shader/DoricVLayoutNode.h \ No newline at end of file diff --git a/iOS/Example/Pods/Headers/Private/Doric/DoricViewNode.h b/iOS/Example/Pods/Headers/Private/Doric/DoricViewNode.h new file mode 120000 index 00000000..bdb19d2b --- /dev/null +++ b/iOS/Example/Pods/Headers/Private/Doric/DoricViewNode.h @@ -0,0 +1 @@ +../../../../../Pod/Classes/Shader/DoricViewNode.h \ No newline at end of file diff --git a/iOS/Example/Pods/Headers/Public/Doric/DoricAsyncResult.h b/iOS/Example/Pods/Headers/Public/Doric/DoricAsyncResult.h index c5a8f34b..dc8ffde2 120000 --- a/iOS/Example/Pods/Headers/Public/Doric/DoricAsyncResult.h +++ b/iOS/Example/Pods/Headers/Public/Doric/DoricAsyncResult.h @@ -1 +1 @@ -../../../../../Pod/Classes/DoricAsyncResult.h \ No newline at end of file +../../../../../Pod/Classes/Util/DoricAsyncResult.h \ No newline at end of file diff --git a/iOS/Example/Pods/Headers/Public/Doric/DoricBridgeExtension.h b/iOS/Example/Pods/Headers/Public/Doric/DoricBridgeExtension.h new file mode 120000 index 00000000..c958222e --- /dev/null +++ b/iOS/Example/Pods/Headers/Public/Doric/DoricBridgeExtension.h @@ -0,0 +1 @@ +../../../../../Pod/Classes/Extension/DoricBridgeExtension.h \ No newline at end of file diff --git a/iOS/Example/Pods/Headers/Public/Doric/DoricComponent.h b/iOS/Example/Pods/Headers/Public/Doric/DoricComponent.h deleted file mode 120000 index 3e7ec4f8..00000000 --- a/iOS/Example/Pods/Headers/Public/Doric/DoricComponent.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../Pod/Classes/DoricComponent.h \ No newline at end of file diff --git a/iOS/Example/Pods/Headers/Public/Doric/DoricConstant.h b/iOS/Example/Pods/Headers/Public/Doric/DoricConstant.h index 83da6b44..6680f76a 120000 --- a/iOS/Example/Pods/Headers/Public/Doric/DoricConstant.h +++ b/iOS/Example/Pods/Headers/Public/Doric/DoricConstant.h @@ -1 +1 @@ -../../../../../Pod/Classes/DoricConstant.h \ No newline at end of file +../../../../../Pod/Classes/Util/DoricConstant.h \ No newline at end of file diff --git a/iOS/Example/Pods/Headers/Public/Doric/DoricContextHolder.h b/iOS/Example/Pods/Headers/Public/Doric/DoricContextHolder.h new file mode 120000 index 00000000..2ad994ce --- /dev/null +++ b/iOS/Example/Pods/Headers/Public/Doric/DoricContextHolder.h @@ -0,0 +1 @@ +../../../../../Pod/Classes/DoricContextHolder.h \ No newline at end of file diff --git a/iOS/Example/Pods/Headers/Public/Doric/DoricGroupNode.h b/iOS/Example/Pods/Headers/Public/Doric/DoricGroupNode.h new file mode 120000 index 00000000..684ecdfe --- /dev/null +++ b/iOS/Example/Pods/Headers/Public/Doric/DoricGroupNode.h @@ -0,0 +1 @@ +../../../../../Pod/Classes/Shader/DoricGroupNode.h \ No newline at end of file diff --git a/iOS/Example/Pods/Headers/Public/Doric/DoricHLayoutNode.h b/iOS/Example/Pods/Headers/Public/Doric/DoricHLayoutNode.h new file mode 120000 index 00000000..69ec5090 --- /dev/null +++ b/iOS/Example/Pods/Headers/Public/Doric/DoricHLayoutNode.h @@ -0,0 +1 @@ +../../../../../Pod/Classes/Shader/DoricHLayoutNode.h \ No newline at end of file diff --git a/iOS/Example/Pods/Headers/Public/Doric/DoricJSCoreExecutor.h b/iOS/Example/Pods/Headers/Public/Doric/DoricJSCoreExecutor.h index d44ada7c..92c65095 120000 --- a/iOS/Example/Pods/Headers/Public/Doric/DoricJSCoreExecutor.h +++ b/iOS/Example/Pods/Headers/Public/Doric/DoricJSCoreExecutor.h @@ -1 +1 @@ -../../../../../Pod/Classes/DoricJSCoreExecutor.h \ No newline at end of file +../../../../../Pod/Classes/Engine/DoricJSCoreExecutor.h \ No newline at end of file diff --git a/iOS/Example/Pods/Headers/Public/Doric/DoricJSEngine.h b/iOS/Example/Pods/Headers/Public/Doric/DoricJSEngine.h index 766d6f65..b97a9e2d 120000 --- a/iOS/Example/Pods/Headers/Public/Doric/DoricJSEngine.h +++ b/iOS/Example/Pods/Headers/Public/Doric/DoricJSEngine.h @@ -1 +1 @@ -../../../../../Pod/Classes/DoricJSEngine.h \ No newline at end of file +../../../../../Pod/Classes/Engine/DoricJSEngine.h \ No newline at end of file diff --git a/iOS/Example/Pods/Headers/Public/Doric/DoricJSExecutorProtocal.h b/iOS/Example/Pods/Headers/Public/Doric/DoricJSExecutorProtocal.h index ea55b461..62843df3 120000 --- a/iOS/Example/Pods/Headers/Public/Doric/DoricJSExecutorProtocal.h +++ b/iOS/Example/Pods/Headers/Public/Doric/DoricJSExecutorProtocal.h @@ -1 +1 @@ -../../../../../Pod/Classes/DoricJSExecutorProtocal.h \ No newline at end of file +../../../../../Pod/Classes/Engine/DoricJSExecutorProtocal.h \ No newline at end of file diff --git a/iOS/Example/Pods/Headers/Public/Doric/DoricModalPlugin.h b/iOS/Example/Pods/Headers/Public/Doric/DoricModalPlugin.h index 71690aec..d147e1e2 120000 --- a/iOS/Example/Pods/Headers/Public/Doric/DoricModalPlugin.h +++ b/iOS/Example/Pods/Headers/Public/Doric/DoricModalPlugin.h @@ -1 +1 @@ -../../../../../Pod/Classes/DoricModalPlugin.h \ No newline at end of file +../../../../../Pod/Classes/Plugin/DoricModalPlugin.h \ No newline at end of file diff --git a/iOS/Example/Pods/Headers/Public/Doric/DoricNativePlugin.h b/iOS/Example/Pods/Headers/Public/Doric/DoricNativePlugin.h index 95e111c1..a1cc9008 120000 --- a/iOS/Example/Pods/Headers/Public/Doric/DoricNativePlugin.h +++ b/iOS/Example/Pods/Headers/Public/Doric/DoricNativePlugin.h @@ -1 +1 @@ -../../../../../Pod/Classes/DoricNativePlugin.h \ No newline at end of file +../../../../../Pod/Classes/Plugin/DoricNativePlugin.h \ No newline at end of file diff --git a/iOS/Example/Pods/Headers/Public/Doric/DoricPromise.h b/iOS/Example/Pods/Headers/Public/Doric/DoricPromise.h index de5c0b44..cf1e8a71 120000 --- a/iOS/Example/Pods/Headers/Public/Doric/DoricPromise.h +++ b/iOS/Example/Pods/Headers/Public/Doric/DoricPromise.h @@ -1 +1 @@ -../../../../../Pod/Classes/DoricPromise.h \ No newline at end of file +../../../../../Pod/Classes/Plugin/DoricPromise.h \ No newline at end of file diff --git a/iOS/Example/Pods/Headers/Public/Doric/DoricShaderPlugin.h b/iOS/Example/Pods/Headers/Public/Doric/DoricShaderPlugin.h new file mode 120000 index 00000000..ef0174f1 --- /dev/null +++ b/iOS/Example/Pods/Headers/Public/Doric/DoricShaderPlugin.h @@ -0,0 +1 @@ +../../../../../Pod/Classes/Plugin/DoricShaderPlugin.h \ No newline at end of file diff --git a/iOS/Example/Pods/Headers/Public/Doric/DoricStackNode.h b/iOS/Example/Pods/Headers/Public/Doric/DoricStackNode.h new file mode 120000 index 00000000..717b56d6 --- /dev/null +++ b/iOS/Example/Pods/Headers/Public/Doric/DoricStackNode.h @@ -0,0 +1 @@ +../../../../../Pod/Classes/Shader/DoricStackNode.h \ No newline at end of file diff --git a/iOS/Example/Pods/Headers/Public/Doric/DoricUtil.h b/iOS/Example/Pods/Headers/Public/Doric/DoricUtil.h index 0aa09e95..e9b242c5 120000 --- a/iOS/Example/Pods/Headers/Public/Doric/DoricUtil.h +++ b/iOS/Example/Pods/Headers/Public/Doric/DoricUtil.h @@ -1 +1 @@ -../../../../../Pod/Classes/DoricUtil.h \ No newline at end of file +../../../../../Pod/Classes/Util/DoricUtil.h \ No newline at end of file diff --git a/iOS/Example/Pods/Headers/Public/Doric/DoricVLayoutNode.h b/iOS/Example/Pods/Headers/Public/Doric/DoricVLayoutNode.h new file mode 120000 index 00000000..761dcd57 --- /dev/null +++ b/iOS/Example/Pods/Headers/Public/Doric/DoricVLayoutNode.h @@ -0,0 +1 @@ +../../../../../Pod/Classes/Shader/DoricVLayoutNode.h \ No newline at end of file diff --git a/iOS/Example/Pods/Headers/Public/Doric/DoricViewNode.h b/iOS/Example/Pods/Headers/Public/Doric/DoricViewNode.h new file mode 120000 index 00000000..bdb19d2b --- /dev/null +++ b/iOS/Example/Pods/Headers/Public/Doric/DoricViewNode.h @@ -0,0 +1 @@ +../../../../../Pod/Classes/Shader/DoricViewNode.h \ No newline at end of file diff --git a/iOS/Example/Pods/Pods.xcodeproj/project.pbxproj b/iOS/Example/Pods/Pods.xcodeproj/project.pbxproj index 75fa7935..0388717d 100644 --- a/iOS/Example/Pods/Pods.xcodeproj/project.pbxproj +++ b/iOS/Example/Pods/Pods.xcodeproj/project.pbxproj @@ -7,43 +7,53 @@ objects = { /* Begin PBXBuildFile section */ - 29DD0B93C9BDDD4BD8F4D3604812BC07 /* Doric-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D9C355251F1C95056C0AD3889BA16FB /* Doric-dummy.m */; }; - 422DCC3A36D2E500F8EB7657AE96D807 /* DoricModalPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 187C991D10D332CBA27B8131BB835B4D /* DoricModalPlugin.m */; }; - 4370AE1C064A9A78AFFFE9171687885B /* DoricUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = D308B1A3EBD5172711E9710931028210 /* DoricUtil.m */; }; - 455ED5C6B2C89EEB909B6604269994A3 /* DoricComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B65FC39854121EA72E6D5D158F4C58 /* DoricComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02E853F6DED7B96A75AAFC5F89B61607 /* DoricJSEngine.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BB707904F74F6271F896C5EFC287041 /* DoricJSEngine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0484E351DDC362465AB815850A8AAF10 /* DoricShaderPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = B9C7016EA330D0D31AF1B34412394A44 /* DoricShaderPlugin.m */; }; + 0AC34EC7429DEE5721040B05A34CBA44 /* DoricContextManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 390D7239329CA7FEB6B8C5C5780339D1 /* DoricContextManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CF7E494CF3543CA95069A04BC779DCF /* DoricContextHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = C7BE728BDD43BCF157620CB0D53052FA /* DoricContextHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E0B404968AD478152256BF91CCBC8BF /* DoricStackNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D5C71C1930B61737977CBA5A3A061313 /* DoricStackNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0EA5D9D68BF4DA8E1C34D9FEE18F512B /* DoricJSEngine.m in Sources */ = {isa = PBXBuildFile; fileRef = CC90593C9066641361358F6B8059F42D /* DoricJSEngine.m */; }; + 11307C20FB09DE48F14D512095AB8BFB /* DoricUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BDF78A16AAE47665A1D2B9551858449 /* DoricUtil.m */; }; + 14663348754C2F41B51A1E95897BD320 /* DoricUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = E884AE7DFADD6E20007AEFD148C353AE /* DoricUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1555B7EDAD25CB943985EE1F756D2C19 /* DoricBridgeExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = A4DE45878F456623AC5C35ADA8B735C0 /* DoricBridgeExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20BCC13EE00670AEA604AED4FD9786AD /* DoricContextManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 93ED9084731CCFEBA1A9A4998262CECF /* DoricContextManager.m */; }; + 31F73C92F401B1B38BA23619F9F84135 /* DoricViewNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 01767EF5971B69AC185D262B08FB1B92 /* DoricViewNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34232A80568AD699C14F270BFB8968F0 /* DoricGroupNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B4D0A16A19C3D4D2E8D1CD6FBEFE521 /* DoricGroupNode.m */; }; + 48F4B4F831BE602A267F4A829BFEBEEE /* DoricDriver.m in Sources */ = {isa = PBXBuildFile; fileRef = 95976AA433CB9C1B00B46558ABEC975E /* DoricDriver.m */; }; 49CFE195ADFA55E91789E15D0C87C01D /* Pods-ExampleTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A44D4CFEB27EB7F87F52864C6B32A80 /* Pods-ExampleTests-dummy.m */; }; + 4BB591549C96DF532ABE0B491D369E9C /* DoricHLayoutNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 413BF24005F7F4E7EFAB81BAC4728126 /* DoricHLayoutNode.m */; }; + 5B589891062C660C0EB5A500A38ACB8B /* DoricStackNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C779A7E4FF8E581E2AA50B8FC7A19B09 /* DoricStackNode.m */; }; 5BECF1ACCAAAEBA8D91A27C0A8202E95 /* Pods-ExampleUITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FE99AB24E829DD35491764E2DED6ED75 /* Pods-ExampleUITests-dummy.m */; }; - 6A2989333795DEE250369A3519870480 /* DoricRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 60EC5610A252BA9DF7184B4E19E11532 /* DoricRegistry.m */; }; - 6CD93DE173AD118050E815F7E805CAFC /* DoricRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A9A613917F5AEB180F8DFE148FB29B3 /* DoricRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D019B812C86DC7219436123003CB093 /* DoricNativePlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 0089AC9DF3E3062EC61BEECD61E9FAE9 /* DoricNativePlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F4D61B7B563DAD837D2EB8B9EAA2600 /* DoricPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = DF85D0F6D5C5A87373DA57643C41DEEF /* DoricPromise.m */; }; - 701C9FC71418B5CF5097BA01B5C525EE /* UIView+Doric.m in Sources */ = {isa = PBXBuildFile; fileRef = A19C43658EA228CA13EEA1076FC72462 /* UIView+Doric.m */; }; - 80E6C2AD4B88EEA0D174610ADD3D2041 /* DoricConstant.m in Sources */ = {isa = PBXBuildFile; fileRef = 8516E9FAAC65391CF49F72771CC2DAA1 /* DoricConstant.m */; }; - 8150DC55474B5B645088A26AA9E3B545 /* DoricPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = DE9C1619DD2BF2EB40727BEE4F274563 /* DoricPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5CAEC7B2443617E99C93EC2CE81A02B9 /* DoricPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = 76F2CFEF499827C03A600580D1F65A97 /* DoricPromise.m */; }; + 6311EF7D506823FEFD9420E2DDEB215E /* DoricJSExecutorProtocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A21D69C66F8EFB8E2DF058A4F964619 /* DoricJSExecutorProtocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63A37752C4AF62039FAC53AB53DF7DD2 /* UIView+Doric.m in Sources */ = {isa = PBXBuildFile; fileRef = 86E309D57CE0E9E432CF735A49C9EA8B /* UIView+Doric.m */; }; + 6461CAB6A023DC8117DDB31E58F4976B /* DoricModalPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 926A31705364B3294CFAD6163D053A18 /* DoricModalPlugin.m */; }; + 69110219565DD268F56336728419277B /* DoricAsyncResult.m in Sources */ = {isa = PBXBuildFile; fileRef = C1A5A2875D01EF2F3D5964151FC76184 /* DoricAsyncResult.m */; }; + 702A89C72C4E581A1FBDCAC1A2354F5A /* DoricJSCoreExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 61E1CCF7BF3E1ED668960FC296BEA40C /* DoricJSCoreExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 746FEB8E2017EF5586F8F87983AA81DE /* DoricBridgeExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 82463E45051A8F41BCA00B47E192F8E3 /* DoricBridgeExtension.m */; }; + 79ACA9FF39209D01F5CFD1A5168DA4C7 /* DoricRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B4684FDF4E19C93C13F4DE3EF56D66F /* DoricRegistry.m */; }; 86D2018718DB98803A0CD85A65887441 /* Pods-Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 674AA61D65F8AA0A85296F972EB84840 /* Pods-Example-dummy.m */; }; - 9451930505ADC63C2B860614A3AB5C1F /* DoricJSCoreExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 71A4D70BBB72CFA82515EEF18706137D /* DoricJSCoreExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 969599C251FA301D25586D0BADD08478 /* DoricUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A55939AD1FFCD8757FF934F924149E9 /* DoricUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9AAFEEC7DAEF1971041D227A4B6BB6B0 /* DoricContext.h in Headers */ = {isa = PBXBuildFile; fileRef = D502FFC8F1F6CAD0438218C3351FCE89 /* DoricContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B2E635BA24B4C96C85699A83B4A0698 /* DoricConstant.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A3426DFFADF2536E625E1F41C102D46 /* DoricConstant.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A616FE47EFBB2A4B0629D9B101AF02A0 /* DoricContextManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EADD53921A6F5930D1CFAB4544A0423D /* DoricContextManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A69253C685B9486F435DA00B0D74F49C /* DoricJSEngine.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D4AE84D8B99C78ADA1D97555B6E0AA6 /* DoricJSEngine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B5E4694D3D3243AF3FE6D9EF78D76501 /* DoricDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F5214BB1AD82A72740162D009BB3033 /* DoricDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA568C7A737A554B82833E17D0989B9D /* DoricAsyncResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 370041BF0D7D7ACAE40AD2C204415225 /* DoricAsyncResult.m */; }; - BDE7BEEB4A56AC3B37BACC0ED19A601A /* DoricComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = E7087950EBA89F1C9090E789AE37E3FC /* DoricComponent.m */; }; - C19CCCC9983463B36493148ADD28B997 /* DoricJSExecutorProtocal.h in Headers */ = {isa = PBXBuildFile; fileRef = A40ADF15E3DFA8134B77828C29A63223 /* DoricJSExecutorProtocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D94DF789BBDA69CD5F0FC22532A79854 /* DoricContext.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CDE936E82BE58F942B70B497594478B /* DoricContext.m */; }; - DD1DAF6642494A855DAE74D362720651 /* DoricAsyncResult.h in Headers */ = {isa = PBXBuildFile; fileRef = EEB05D1EBAA7E85630CF8F03A39DF5F8 /* DoricAsyncResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE7BD11FE70F73948D13DD76D3E2E16C /* DoricJSEngine.m in Sources */ = {isa = PBXBuildFile; fileRef = 6AA81F2935A334697F48CBDB8740D388 /* DoricJSEngine.m */; }; - E26688DE22EF1CCA00B642BF /* DoricBridgeExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = E26688DC22EF1CCA00B642BF /* DoricBridgeExtension.h */; }; - E26688DF22EF1CCA00B642BF /* DoricBridgeExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = E26688DD22EF1CCA00B642BF /* DoricBridgeExtension.m */; }; - E26688E222EF20C800B642BF /* DoricShaderPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = E26688E022EF20C800B642BF /* DoricShaderPlugin.h */; }; - E26688E322EF20C800B642BF /* DoricShaderPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = E26688E122EF20C800B642BF /* DoricShaderPlugin.m */; }; - E38E30B01791A73269065FF350CE8F9E /* DoricContextManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 836213D547B4CC487A1D695AE45E537D /* DoricContextManager.m */; }; - E6B45CF2CBF030A7D3F0B0478A82B2F5 /* DoricModalPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = E6CE2723B5B70C2BEE87FB815A98198D /* DoricModalPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F05E878CFD11812D9A3B4AC60A842A70 /* DoricNativePlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AAD292ADAAA87A469C532D73C91F53F /* DoricNativePlugin.m */; }; - F14898ED4BAFDCF268B2F2DB8307E409 /* DoricJSCoreExecutor.m in Sources */ = {isa = PBXBuildFile; fileRef = BB9A5DA1337269F5CA470FB0303C1DFB /* DoricJSCoreExecutor.m */; }; - F85D1531511037FCC5C6349FA7BC7379 /* DoricDriver.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D82ECD010D50338BFE8FC73B7B396BF /* DoricDriver.m */; }; - FC2E81F342E70C391EEA379FBA360941 /* UIView+Doric.h in Headers */ = {isa = PBXBuildFile; fileRef = 772968BFA83BBE06C788E9FFFFCE9BFD /* UIView+Doric.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88C67CA21061E04F085C77B6208DEFA2 /* DoricContext.m in Sources */ = {isa = PBXBuildFile; fileRef = DFE6D1A693E5158AE5721D839B62CF1C /* DoricContext.m */; }; + 8C7ECCEC5E108A633C51A71B79C64C79 /* DoricRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = ED359A9A0C394725E8C650C4F592576F /* DoricRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F76171F9991E616C45569C87007B4E8 /* DoricNativePlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 6459BB1AC3597ADAB31E5A2B51F48EFF /* DoricNativePlugin.m */; }; + 9525A9A5ABA3462A6B6A7F722B473397 /* DoricPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F175EBDCBE9DC172A7565CBA4CB8176 /* DoricPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9BAB7926D5F02A0516B41DBD8046CF89 /* DoricConstant.m in Sources */ = {isa = PBXBuildFile; fileRef = A56E85F56E485089E1553EEE85139607 /* DoricConstant.m */; }; + A49CC1E7AF31D4607E27480F28E00B09 /* DoricAsyncResult.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7A558576031CB505226AEF8B49A5E0 /* DoricAsyncResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A629B68B6E623AA8087B79E6EE0E4DEF /* DoricContextHolder.m in Sources */ = {isa = PBXBuildFile; fileRef = F5D0E5BC06761790B424F107CE0EAA68 /* DoricContextHolder.m */; }; + A80B3891F9A820BE4F1DA6AA3F9475C4 /* DoricVLayoutNode.h in Headers */ = {isa = PBXBuildFile; fileRef = AF38EA949749CB06DABB6FA999CAC426 /* DoricVLayoutNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AACA31EF73183D8874A7B924711A6C6C /* DoricNativePlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 498A429E52B358927D02115F7E871E04 /* DoricNativePlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B450402E70B7274441881FBB51D26294 /* DoricModalPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 14A0F441971AC14BF6A5DC689B0C1976 /* DoricModalPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4B84A7277CB967AC1151A97CBDC1D95 /* DoricConstant.h in Headers */ = {isa = PBXBuildFile; fileRef = 176DA5433231261855101C551199C951 /* DoricConstant.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB461169EF31C523CC07526BE8E08EB4 /* DoricGroupNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CE0B2AA5C5EF1919C795B7E453BE8B1 /* DoricGroupNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BDE07BFA3A170724CF5D14AE28710611 /* DoricHLayoutNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A06B29C9573D0F727806184AF0228AE /* DoricHLayoutNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE5E3B5E51B77DCF2604791ED4F54A35 /* DoricViewNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 93775820CB52FBEF46A18E6009B73704 /* DoricViewNode.m */; }; + CF9F1B2575932D31FFC013B4D83AC010 /* DoricShaderPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CDAABC10EE1A59D953364DAE6B5C025 /* DoricShaderPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3D5AE420C12950CBD2CFF957EE12353 /* UIView+Doric.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F2468AC725E6A3DCD54E9B02612E466 /* UIView+Doric.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E39374F7696974F3B4712EF8BCDDD570 /* DoricContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CBC88CD019C2318DDBFC3F7F0376BD0 /* DoricContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E553530AEEEA494610100F427D305FA3 /* DoricJSCoreExecutor.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C6B478E8F0035C0BF14AE96ABDE1D4E /* DoricJSCoreExecutor.m */; }; + E5B9511136208D585E6133DE8B8A840A /* DoricVLayoutNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A917FD49E146B338E83C21BBB4F1F855 /* DoricVLayoutNode.m */; }; + E72D34E5D8FED631D526E48706A4E433 /* Doric-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BD90A9CC3917B17FB2337F7DAF31C00 /* Doric-dummy.m */; }; + F699F53E1B540C7F71060E8B61471330 /* DoricDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = B556EB6DAF3AE37EFBAF55E60B72D13F /* DoricDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -71,70 +81,87 @@ /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 0089AC9DF3E3062EC61BEECD61E9FAE9 /* DoricNativePlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DoricNativePlugin.h; path = Pod/Classes/DoricNativePlugin.h; sourceTree = ""; }; - 0A55939AD1FFCD8757FF934F924149E9 /* DoricUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DoricUtil.h; path = Pod/Classes/DoricUtil.h; sourceTree = ""; }; - 0D4AE84D8B99C78ADA1D97555B6E0AA6 /* DoricJSEngine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DoricJSEngine.h; path = Pod/Classes/DoricJSEngine.h; sourceTree = ""; }; - 187C991D10D332CBA27B8131BB835B4D /* DoricModalPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DoricModalPlugin.m; path = Pod/Classes/DoricModalPlugin.m; sourceTree = ""; }; + 01767EF5971B69AC185D262B08FB1B92 /* DoricViewNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DoricViewNode.h; sourceTree = ""; }; + 14A0F441971AC14BF6A5DC689B0C1976 /* DoricModalPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DoricModalPlugin.h; sourceTree = ""; }; + 176DA5433231261855101C551199C951 /* DoricConstant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DoricConstant.h; sourceTree = ""; }; + 1A06B29C9573D0F727806184AF0228AE /* DoricHLayoutNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DoricHLayoutNode.h; sourceTree = ""; }; + 1A21D69C66F8EFB8E2DF058A4F964619 /* DoricJSExecutorProtocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DoricJSExecutorProtocal.h; sourceTree = ""; }; + 1B98FB1AC640B7CA5F98A2B03BC1B772 /* Doric.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Doric.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 1DC97F881F42239F4D5EE57FE5266B1F /* Pods-ExampleUITests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ExampleUITests-acknowledgements.plist"; sourceTree = ""; }; - 1F667CC0E19EAF34E5A4119E2121F585 /* libPods-Example.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Example.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 27D9E07AFE355507D16C97DC14384F97 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; + 1F667CC0E19EAF34E5A4119E2121F585 /* libPods-Example.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-Example.a"; path = "libPods-Example.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 35D3ADD1FF0C9A33D86DB110C181048B /* Pods-ExampleTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ExampleTests.debug.xcconfig"; sourceTree = ""; }; - 370041BF0D7D7ACAE40AD2C204415225 /* DoricAsyncResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DoricAsyncResult.m; path = Pod/Classes/DoricAsyncResult.m; sourceTree = ""; }; - 3A9A613917F5AEB180F8DFE148FB29B3 /* DoricRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DoricRegistry.h; path = Pod/Classes/DoricRegistry.h; sourceTree = ""; }; + 390D7239329CA7FEB6B8C5C5780339D1 /* DoricContextManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DoricContextManager.h; path = Pod/Classes/DoricContextManager.h; sourceTree = ""; }; + 413BF24005F7F4E7EFAB81BAC4728126 /* DoricHLayoutNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = DoricHLayoutNode.m; sourceTree = ""; }; 4426D67B66065EF97BCB0FBC9E35BEE6 /* Pods-Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Example-acknowledgements.markdown"; sourceTree = ""; }; - 4AAD292ADAAA87A469C532D73C91F53F /* DoricNativePlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DoricNativePlugin.m; path = Pod/Classes/DoricNativePlugin.m; sourceTree = ""; }; - 4CDE936E82BE58F942B70B497594478B /* DoricContext.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DoricContext.m; path = Pod/Classes/DoricContext.m; sourceTree = ""; }; + 498A429E52B358927D02115F7E871E04 /* DoricNativePlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DoricNativePlugin.h; sourceTree = ""; }; + 4BB707904F74F6271F896C5EFC287041 /* DoricJSEngine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DoricJSEngine.h; sourceTree = ""; }; + 4F175EBDCBE9DC172A7565CBA4CB8176 /* DoricPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DoricPromise.h; sourceTree = ""; }; + 4F2468AC725E6A3DCD54E9B02612E466 /* UIView+Doric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+Doric.h"; path = "Pod/Classes/UIView+Doric.h"; sourceTree = ""; }; 50CE420621B9D9ED01E06A8EDBD3E990 /* Pods-ExampleUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ExampleUITests.release.xcconfig"; sourceTree = ""; }; 57728CFE03A4D88821681C3D55A1FA85 /* Pods-Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Example.release.xcconfig"; sourceTree = ""; }; - 5955445DDA8D64608454778602A35351 /* doric-lib.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = "doric-lib.js"; path = "../js-framework/bundle/doric-lib.js"; sourceTree = ""; }; - 60EC5610A252BA9DF7184B4E19E11532 /* DoricRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DoricRegistry.m; path = Pod/Classes/DoricRegistry.m; sourceTree = ""; }; - 630CABE8F692FCDBFD1B122A2D0CE388 /* libPods-ExampleTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ExampleTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 61E1CCF7BF3E1ED668960FC296BEA40C /* DoricJSCoreExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DoricJSCoreExecutor.h; sourceTree = ""; }; + 630CABE8F692FCDBFD1B122A2D0CE388 /* libPods-ExampleTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-ExampleTests.a"; path = "libPods-ExampleTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 6459BB1AC3597ADAB31E5A2B51F48EFF /* DoricNativePlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = DoricNativePlugin.m; sourceTree = ""; }; 674AA61D65F8AA0A85296F972EB84840 /* Pods-Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Example-dummy.m"; sourceTree = ""; }; - 6AA81F2935A334697F48CBDB8740D388 /* DoricJSEngine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DoricJSEngine.m; path = Pod/Classes/DoricJSEngine.m; sourceTree = ""; }; - 71A4D70BBB72CFA82515EEF18706137D /* DoricJSCoreExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DoricJSCoreExecutor.h; path = Pod/Classes/DoricJSCoreExecutor.h; sourceTree = ""; }; - 772968BFA83BBE06C788E9FFFFCE9BFD /* UIView+Doric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+Doric.h"; path = "Pod/Classes/UIView+Doric.h"; sourceTree = ""; }; + 6A004EA843085E7A435B5A163D94CDAA /* Doric.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Doric.xcconfig; sourceTree = ""; }; + 6B4684FDF4E19C93C13F4DE3EF56D66F /* DoricRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DoricRegistry.m; path = Pod/Classes/DoricRegistry.m; sourceTree = ""; }; + 6CE0B2AA5C5EF1919C795B7E453BE8B1 /* DoricGroupNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DoricGroupNode.h; sourceTree = ""; }; + 76F2CFEF499827C03A600580D1F65A97 /* DoricPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = DoricPromise.m; sourceTree = ""; }; 786AB58F4C2451575BBF7722ACDE9BEB /* Pods-ExampleUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ExampleUITests.debug.xcconfig"; sourceTree = ""; }; + 7AF0C335F692C1BE079047DE8C5AAB35 /* Doric-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Doric-prefix.pch"; sourceTree = ""; }; + 7BDF78A16AAE47665A1D2B9551858449 /* DoricUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = DoricUtil.m; sourceTree = ""; }; + 7CBC88CD019C2318DDBFC3F7F0376BD0 /* DoricContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DoricContext.h; path = Pod/Classes/DoricContext.h; sourceTree = ""; }; + 7CDAABC10EE1A59D953364DAE6B5C025 /* DoricShaderPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DoricShaderPlugin.h; sourceTree = ""; }; 8052FAE778A6A09F2260E4E85B371F57 /* Pods-ExampleTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ExampleTests.release.xcconfig"; sourceTree = ""; }; - 836213D547B4CC487A1D695AE45E537D /* DoricContextManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DoricContextManager.m; path = Pod/Classes/DoricContextManager.m; sourceTree = ""; }; - 8516E9FAAC65391CF49F72771CC2DAA1 /* DoricConstant.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DoricConstant.m; path = Pod/Classes/DoricConstant.m; sourceTree = ""; }; + 82463E45051A8F41BCA00B47E192F8E3 /* DoricBridgeExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = DoricBridgeExtension.m; sourceTree = ""; }; + 86E309D57CE0E9E432CF735A49C9EA8B /* UIView+Doric.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+Doric.m"; path = "Pod/Classes/UIView+Doric.m"; sourceTree = ""; }; 87E7F5288DD80B4FDE8896A6D2782093 /* Pods-Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Example-resources.sh"; sourceTree = ""; }; 8A44D4CFEB27EB7F87F52864C6B32A80 /* Pods-ExampleTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ExampleTests-dummy.m"; sourceTree = ""; }; + 8B4D0A16A19C3D4D2E8D1CD6FBEFE521 /* DoricGroupNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = DoricGroupNode.m; sourceTree = ""; }; + 8C6B478E8F0035C0BF14AE96ABDE1D4E /* DoricJSCoreExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = DoricJSCoreExecutor.m; sourceTree = ""; }; 8F4D6D38881BB9FAF4450841BD1BF9CD /* Pods-ExampleUITests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ExampleUITests-acknowledgements.markdown"; sourceTree = ""; }; - 9A3426DFFADF2536E625E1F41C102D46 /* DoricConstant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DoricConstant.h; path = Pod/Classes/DoricConstant.h; sourceTree = ""; }; + 926A31705364B3294CFAD6163D053A18 /* DoricModalPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = DoricModalPlugin.m; sourceTree = ""; }; + 93775820CB52FBEF46A18E6009B73704 /* DoricViewNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = DoricViewNode.m; sourceTree = ""; }; + 93ED9084731CCFEBA1A9A4998262CECF /* DoricContextManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DoricContextManager.m; path = Pod/Classes/DoricContextManager.m; sourceTree = ""; }; + 95976AA433CB9C1B00B46558ABEC975E /* DoricDriver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DoricDriver.m; path = Pod/Classes/DoricDriver.m; sourceTree = ""; }; + 9BD90A9CC3917B17FB2337F7DAF31C00 /* Doric-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Doric-dummy.m"; sourceTree = ""; }; 9CF6301AAD07F98FE89F30E7B5A07161 /* Pods-ExampleTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ExampleTests-acknowledgements.plist"; sourceTree = ""; }; - 9D82ECD010D50338BFE8FC73B7B396BF /* DoricDriver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DoricDriver.m; path = Pod/Classes/DoricDriver.m; sourceTree = ""; }; - 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9D9C355251F1C95056C0AD3889BA16FB /* Doric-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Doric-dummy.m"; sourceTree = ""; }; - 9F5214BB1AD82A72740162D009BB3033 /* DoricDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DoricDriver.h; path = Pod/Classes/DoricDriver.h; sourceTree = ""; }; + 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A12EA2D6D6F629978F16C0E458152B6E /* Pods-ExampleTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ExampleTests-acknowledgements.markdown"; sourceTree = ""; }; - A19C43658EA228CA13EEA1076FC72462 /* UIView+Doric.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+Doric.m"; path = "Pod/Classes/UIView+Doric.m"; sourceTree = ""; }; - A40ADF15E3DFA8134B77828C29A63223 /* DoricJSExecutorProtocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DoricJSExecutorProtocal.h; path = Pod/Classes/DoricJSExecutorProtocal.h; sourceTree = ""; }; - B1060ECA09FD9217BD3B163A76A4ED07 /* Doric.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Doric.xcconfig; sourceTree = ""; }; - BB9A5DA1337269F5CA470FB0303C1DFB /* DoricJSCoreExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DoricJSCoreExecutor.m; path = Pod/Classes/DoricJSCoreExecutor.m; sourceTree = ""; }; - C118B04AAC2A054C315A0037D71775B4 /* Doric.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = Doric.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - C232398D4E3A40F2337F8A40D7F8D751 /* libPods-ExampleUITests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ExampleUITests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - C2FBC49D9D916E1118C72A0CF4EB5DFB /* Doric-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Doric-prefix.pch"; sourceTree = ""; }; - CB6504BD07E3990E6F058E4073421ADA /* libDoric.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libDoric.a; sourceTree = BUILT_PRODUCTS_DIR; }; - D308B1A3EBD5172711E9710931028210 /* DoricUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DoricUtil.m; path = Pod/Classes/DoricUtil.m; sourceTree = ""; }; - D502FFC8F1F6CAD0438218C3351FCE89 /* DoricContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DoricContext.h; path = Pod/Classes/DoricContext.h; sourceTree = ""; }; - DE9C1619DD2BF2EB40727BEE4F274563 /* DoricPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DoricPromise.h; path = Pod/Classes/DoricPromise.h; sourceTree = ""; }; - DF85D0F6D5C5A87373DA57643C41DEEF /* DoricPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DoricPromise.m; path = Pod/Classes/DoricPromise.m; sourceTree = ""; }; + A4DE45878F456623AC5C35ADA8B735C0 /* DoricBridgeExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DoricBridgeExtension.h; sourceTree = ""; }; + A56E85F56E485089E1553EEE85139607 /* DoricConstant.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = DoricConstant.m; sourceTree = ""; }; + A917FD49E146B338E83C21BBB4F1F855 /* DoricVLayoutNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = DoricVLayoutNode.m; sourceTree = ""; }; + AA7A558576031CB505226AEF8B49A5E0 /* DoricAsyncResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DoricAsyncResult.h; sourceTree = ""; }; + AF38EA949749CB06DABB6FA999CAC426 /* DoricVLayoutNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DoricVLayoutNode.h; sourceTree = ""; }; + B556EB6DAF3AE37EFBAF55E60B72D13F /* DoricDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DoricDriver.h; path = Pod/Classes/DoricDriver.h; sourceTree = ""; }; + B9C7016EA330D0D31AF1B34412394A44 /* DoricShaderPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = DoricShaderPlugin.m; sourceTree = ""; }; + BAF9CB1E2E775FE40FABC02BCB820F33 /* doric-lib.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "doric-lib.js"; path = "../js-framework/bundle/doric-lib.js"; sourceTree = ""; }; + C1A5A2875D01EF2F3D5964151FC76184 /* DoricAsyncResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = DoricAsyncResult.m; sourceTree = ""; }; + C232398D4E3A40F2337F8A40D7F8D751 /* libPods-ExampleUITests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-ExampleUITests.a"; path = "libPods-ExampleUITests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + C779A7E4FF8E581E2AA50B8FC7A19B09 /* DoricStackNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = DoricStackNode.m; sourceTree = ""; }; + C7BE728BDD43BCF157620CB0D53052FA /* DoricContextHolder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DoricContextHolder.h; path = Pod/Classes/DoricContextHolder.h; sourceTree = ""; }; + CB6504BD07E3990E6F058E4073421ADA /* libDoric.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libDoric.a; path = libDoric.a; sourceTree = BUILT_PRODUCTS_DIR; }; + CC90593C9066641361358F6B8059F42D /* DoricJSEngine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = DoricJSEngine.m; sourceTree = ""; }; + D5C71C1930B61737977CBA5A3A061313 /* DoricStackNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DoricStackNode.h; sourceTree = ""; }; + DD9E3AB1EBC9455DAA9B1041F482FD21 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + DFE6D1A693E5158AE5721D839B62CF1C /* DoricContext.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DoricContext.m; path = Pod/Classes/DoricContext.m; sourceTree = ""; }; DFFAD17E7567EE856A59F246D50A9B0B /* Pods-Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Example-acknowledgements.plist"; sourceTree = ""; }; - E26688DC22EF1CCA00B642BF /* DoricBridgeExtension.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = DoricBridgeExtension.h; path = Pod/Classes/DoricBridgeExtension.h; sourceTree = ""; }; - E26688DD22EF1CCA00B642BF /* DoricBridgeExtension.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = DoricBridgeExtension.m; path = Pod/Classes/DoricBridgeExtension.m; sourceTree = ""; }; - E26688E022EF20C800B642BF /* DoricShaderPlugin.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = DoricShaderPlugin.h; path = Pod/Classes/DoricShaderPlugin.h; sourceTree = ""; }; - E26688E122EF20C800B642BF /* DoricShaderPlugin.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = DoricShaderPlugin.m; path = Pod/Classes/DoricShaderPlugin.m; sourceTree = ""; }; E340F908A05867E06E975FDCDD32315C /* Pods-Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Example.debug.xcconfig"; sourceTree = ""; }; - E6CE2723B5B70C2BEE87FB815A98198D /* DoricModalPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DoricModalPlugin.h; path = Pod/Classes/DoricModalPlugin.h; sourceTree = ""; }; - E7087950EBA89F1C9090E789AE37E3FC /* DoricComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DoricComponent.m; path = Pod/Classes/DoricComponent.m; sourceTree = ""; }; - EADD53921A6F5930D1CFAB4544A0423D /* DoricContextManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DoricContextManager.h; path = Pod/Classes/DoricContextManager.h; sourceTree = ""; }; - EEB05D1EBAA7E85630CF8F03A39DF5F8 /* DoricAsyncResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DoricAsyncResult.h; path = Pod/Classes/DoricAsyncResult.h; sourceTree = ""; }; - F5B65FC39854121EA72E6D5D158F4C58 /* DoricComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DoricComponent.h; path = Pod/Classes/DoricComponent.h; sourceTree = ""; }; - F8954C920908870B4AB5D7268B386777 /* doric-sandbox.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = "doric-sandbox.js"; path = "../js-framework/bundle/doric-sandbox.js"; sourceTree = ""; }; + E3CA0CE3F88FED2226D306D601A382A5 /* doric-sandbox.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "doric-sandbox.js"; path = "../js-framework/bundle/doric-sandbox.js"; sourceTree = ""; }; + E884AE7DFADD6E20007AEFD148C353AE /* DoricUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DoricUtil.h; sourceTree = ""; }; + ED359A9A0C394725E8C650C4F592576F /* DoricRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DoricRegistry.h; path = Pod/Classes/DoricRegistry.h; sourceTree = ""; }; + F5D0E5BC06761790B424F107CE0EAA68 /* DoricContextHolder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DoricContextHolder.m; path = Pod/Classes/DoricContextHolder.m; sourceTree = ""; }; FE99AB24E829DD35491764E2DED6ED75 /* Pods-ExampleUITests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ExampleUITests-dummy.m"; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ + 049A8E39C7D08ACBEC8BA63E3D49643F /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 0BAD36B7F232A56FB4EDD23DD8325A04 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -149,13 +176,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - B88F3F1CA95D71EB24B84327090E6C5F /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; C5F5F9AE8591441292295FD9101B9D1C /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -177,63 +197,93 @@ name = Products; sourceTree = ""; }; - 4DD5682E7390ADCEDC24AB860E654B03 /* Pod */ = { + 375B915FBF5D01B2E55B1CB32E0B402F /* Support Files */ = { isa = PBXGroup; children = ( - C118B04AAC2A054C315A0037D71775B4 /* Doric.podspec */, - 27D9E07AFE355507D16C97DC14384F97 /* LICENSE */, + 6A004EA843085E7A435B5A163D94CDAA /* Doric.xcconfig */, + 9BD90A9CC3917B17FB2337F7DAF31C00 /* Doric-dummy.m */, + 7AF0C335F692C1BE079047DE8C5AAB35 /* Doric-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "Example/Pods/Target Support Files/Doric"; sourceTree = ""; }; - 628FE0ECE2D6CC5EEB68FDFC7B8F83B3 /* Resources */ = { + 376395E7349AB3273FA652241A18F0AA /* Util */ = { isa = PBXGroup; children = ( - 5955445DDA8D64608454778602A35351 /* doric-lib.js */, - F8954C920908870B4AB5D7268B386777 /* doric-sandbox.js */, + AA7A558576031CB505226AEF8B49A5E0 /* DoricAsyncResult.h */, + C1A5A2875D01EF2F3D5964151FC76184 /* DoricAsyncResult.m */, + 176DA5433231261855101C551199C951 /* DoricConstant.h */, + A56E85F56E485089E1553EEE85139607 /* DoricConstant.m */, + E884AE7DFADD6E20007AEFD148C353AE /* DoricUtil.h */, + 7BDF78A16AAE47665A1D2B9551858449 /* DoricUtil.m */, ); - name = Resources; + name = Util; + path = Pod/Classes/Util; sourceTree = ""; }; - 66BC265C6E2704371186E21C72DD63C3 /* Doric */ = { + 478FD1407028F23C75A0AC11798C2863 /* Engine */ = { isa = PBXGroup; children = ( - EEB05D1EBAA7E85630CF8F03A39DF5F8 /* DoricAsyncResult.h */, - 370041BF0D7D7ACAE40AD2C204415225 /* DoricAsyncResult.m */, - F5B65FC39854121EA72E6D5D158F4C58 /* DoricComponent.h */, - E7087950EBA89F1C9090E789AE37E3FC /* DoricComponent.m */, - 9A3426DFFADF2536E625E1F41C102D46 /* DoricConstant.h */, - 8516E9FAAC65391CF49F72771CC2DAA1 /* DoricConstant.m */, - D502FFC8F1F6CAD0438218C3351FCE89 /* DoricContext.h */, - 4CDE936E82BE58F942B70B497594478B /* DoricContext.m */, - EADD53921A6F5930D1CFAB4544A0423D /* DoricContextManager.h */, - 836213D547B4CC487A1D695AE45E537D /* DoricContextManager.m */, - 9F5214BB1AD82A72740162D009BB3033 /* DoricDriver.h */, - 9D82ECD010D50338BFE8FC73B7B396BF /* DoricDriver.m */, - 71A4D70BBB72CFA82515EEF18706137D /* DoricJSCoreExecutor.h */, - BB9A5DA1337269F5CA470FB0303C1DFB /* DoricJSCoreExecutor.m */, - 0D4AE84D8B99C78ADA1D97555B6E0AA6 /* DoricJSEngine.h */, - 6AA81F2935A334697F48CBDB8740D388 /* DoricJSEngine.m */, - A40ADF15E3DFA8134B77828C29A63223 /* DoricJSExecutorProtocal.h */, - E6CE2723B5B70C2BEE87FB815A98198D /* DoricModalPlugin.h */, - 187C991D10D332CBA27B8131BB835B4D /* DoricModalPlugin.m */, - 0089AC9DF3E3062EC61BEECD61E9FAE9 /* DoricNativePlugin.h */, - 4AAD292ADAAA87A469C532D73C91F53F /* DoricNativePlugin.m */, - DE9C1619DD2BF2EB40727BEE4F274563 /* DoricPromise.h */, - DF85D0F6D5C5A87373DA57643C41DEEF /* DoricPromise.m */, - 3A9A613917F5AEB180F8DFE148FB29B3 /* DoricRegistry.h */, - 60EC5610A252BA9DF7184B4E19E11532 /* DoricRegistry.m */, - 0A55939AD1FFCD8757FF934F924149E9 /* DoricUtil.h */, - D308B1A3EBD5172711E9710931028210 /* DoricUtil.m */, - 772968BFA83BBE06C788E9FFFFCE9BFD /* UIView+Doric.h */, - A19C43658EA228CA13EEA1076FC72462 /* UIView+Doric.m */, - 4DD5682E7390ADCEDC24AB860E654B03 /* Pod */, - 628FE0ECE2D6CC5EEB68FDFC7B8F83B3 /* Resources */, - DDBE73454928656D85164075BB584FEB /* Support Files */, - E26688DC22EF1CCA00B642BF /* DoricBridgeExtension.h */, - E26688DD22EF1CCA00B642BF /* DoricBridgeExtension.m */, - E26688E022EF20C800B642BF /* DoricShaderPlugin.h */, - E26688E122EF20C800B642BF /* DoricShaderPlugin.m */, + 61E1CCF7BF3E1ED668960FC296BEA40C /* DoricJSCoreExecutor.h */, + 8C6B478E8F0035C0BF14AE96ABDE1D4E /* DoricJSCoreExecutor.m */, + 4BB707904F74F6271F896C5EFC287041 /* DoricJSEngine.h */, + CC90593C9066641361358F6B8059F42D /* DoricJSEngine.m */, + 1A21D69C66F8EFB8E2DF058A4F964619 /* DoricJSExecutorProtocal.h */, + ); + name = Engine; + path = Pod/Classes/Engine; + sourceTree = ""; + }; + 53E81BEE3C202E223BE6BC2B2070EAD3 /* Extension */ = { + isa = PBXGroup; + children = ( + A4DE45878F456623AC5C35ADA8B735C0 /* DoricBridgeExtension.h */, + 82463E45051A8F41BCA00B47E192F8E3 /* DoricBridgeExtension.m */, + ); + name = Extension; + path = Pod/Classes/Extension; + sourceTree = ""; + }; + 5F86F405DF2F983B57FC78DC86DAC405 /* Plugin */ = { + isa = PBXGroup; + children = ( + 14A0F441971AC14BF6A5DC689B0C1976 /* DoricModalPlugin.h */, + 926A31705364B3294CFAD6163D053A18 /* DoricModalPlugin.m */, + 498A429E52B358927D02115F7E871E04 /* DoricNativePlugin.h */, + 6459BB1AC3597ADAB31E5A2B51F48EFF /* DoricNativePlugin.m */, + 4F175EBDCBE9DC172A7565CBA4CB8176 /* DoricPromise.h */, + 76F2CFEF499827C03A600580D1F65A97 /* DoricPromise.m */, + 7CDAABC10EE1A59D953364DAE6B5C025 /* DoricShaderPlugin.h */, + B9C7016EA330D0D31AF1B34412394A44 /* DoricShaderPlugin.m */, + ); + name = Plugin; + path = Pod/Classes/Plugin; + sourceTree = ""; + }; + 6048B7CE17041F6A9855DCE8FF78DB25 /* Doric */ = { + isa = PBXGroup; + children = ( + 7CBC88CD019C2318DDBFC3F7F0376BD0 /* DoricContext.h */, + DFE6D1A693E5158AE5721D839B62CF1C /* DoricContext.m */, + C7BE728BDD43BCF157620CB0D53052FA /* DoricContextHolder.h */, + F5D0E5BC06761790B424F107CE0EAA68 /* DoricContextHolder.m */, + 390D7239329CA7FEB6B8C5C5780339D1 /* DoricContextManager.h */, + 93ED9084731CCFEBA1A9A4998262CECF /* DoricContextManager.m */, + B556EB6DAF3AE37EFBAF55E60B72D13F /* DoricDriver.h */, + 95976AA433CB9C1B00B46558ABEC975E /* DoricDriver.m */, + ED359A9A0C394725E8C650C4F592576F /* DoricRegistry.h */, + 6B4684FDF4E19C93C13F4DE3EF56D66F /* DoricRegistry.m */, + 4F2468AC725E6A3DCD54E9B02612E466 /* UIView+Doric.h */, + 86E309D57CE0E9E432CF735A49C9EA8B /* UIView+Doric.m */, + 478FD1407028F23C75A0AC11798C2863 /* Engine */, + 53E81BEE3C202E223BE6BC2B2070EAD3 /* Extension */, + 5F86F405DF2F983B57FC78DC86DAC405 /* Plugin */, + BC3D85DC7CDFC6D25C3D224BEB49F133 /* Pod */, + 84C32A70ED61309BD2E7B49EC4794F46 /* Resources */, + 9252432FBE5E1FA9CFD4C2866E162F1C /* Shader */, + 375B915FBF5D01B2E55B1CB32E0B402F /* Support Files */, + 376395E7349AB3273FA652241A18F0AA /* Util */, ); name = Doric; path = ../..; @@ -263,6 +313,15 @@ name = "Targets Support Files"; sourceTree = ""; }; + 84C32A70ED61309BD2E7B49EC4794F46 /* Resources */ = { + isa = PBXGroup; + children = ( + BAF9CB1E2E775FE40FABC02BCB820F33 /* doric-lib.js */, + E3CA0CE3F88FED2226D306D601A382A5 /* doric-sandbox.js */, + ); + name = Resources; + sourceTree = ""; + }; 87BF90E86730F73BF5CB57472930C8FD /* Pods-ExampleUITests */ = { isa = PBXGroup; children = ( @@ -276,11 +335,38 @@ path = "Target Support Files/Pods-ExampleUITests"; sourceTree = ""; }; + 9252432FBE5E1FA9CFD4C2866E162F1C /* Shader */ = { + isa = PBXGroup; + children = ( + 6CE0B2AA5C5EF1919C795B7E453BE8B1 /* DoricGroupNode.h */, + 8B4D0A16A19C3D4D2E8D1CD6FBEFE521 /* DoricGroupNode.m */, + 1A06B29C9573D0F727806184AF0228AE /* DoricHLayoutNode.h */, + 413BF24005F7F4E7EFAB81BAC4728126 /* DoricHLayoutNode.m */, + D5C71C1930B61737977CBA5A3A061313 /* DoricStackNode.h */, + C779A7E4FF8E581E2AA50B8FC7A19B09 /* DoricStackNode.m */, + 01767EF5971B69AC185D262B08FB1B92 /* DoricViewNode.h */, + 93775820CB52FBEF46A18E6009B73704 /* DoricViewNode.m */, + AF38EA949749CB06DABB6FA999CAC426 /* DoricVLayoutNode.h */, + A917FD49E146B338E83C21BBB4F1F855 /* DoricVLayoutNode.m */, + ); + name = Shader; + path = Pod/Classes/Shader; + sourceTree = ""; + }; + BC3D85DC7CDFC6D25C3D224BEB49F133 /* Pod */ = { + isa = PBXGroup; + children = ( + 1B98FB1AC640B7CA5F98A2B03BC1B772 /* Doric.podspec */, + DD9E3AB1EBC9455DAA9B1041F482FD21 /* LICENSE */, + ); + name = Pod; + sourceTree = ""; + }; CF1408CF629C7361332E53B88F7BD30C = { isa = PBXGroup; children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, - ECDAF20273AF2AD74624C2CA19EF7F73 /* Development Pods */, + E059370AA74361A31256E49BFE60A18C /* Development Pods */, D89477F20FB1DE18A04690586D7808C4 /* Frameworks */, 29D5F571358D2DB73A9BA656A4698F3A /* Products */, 71D7AAC4D13F3A060E368F44B7510778 /* Targets Support Files */, @@ -294,21 +380,10 @@ name = Frameworks; sourceTree = ""; }; - DDBE73454928656D85164075BB584FEB /* Support Files */ = { + E059370AA74361A31256E49BFE60A18C /* Development Pods */ = { isa = PBXGroup; children = ( - B1060ECA09FD9217BD3B163A76A4ED07 /* Doric.xcconfig */, - 9D9C355251F1C95056C0AD3889BA16FB /* Doric-dummy.m */, - C2FBC49D9D916E1118C72A0CF4EB5DFB /* Doric-prefix.pch */, - ); - name = "Support Files"; - path = "Example/Pods/Target Support Files/Doric"; - sourceTree = ""; - }; - ECDAF20273AF2AD74624C2CA19EF7F73 /* Development Pods */ = { - isa = PBXGroup; - children = ( - 66BC265C6E2704371186E21C72DD63C3 /* Doric */, + 6048B7CE17041F6A9855DCE8FF78DB25 /* Doric */, ); name = "Development Pods"; sourceTree = ""; @@ -343,27 +418,32 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 9EB9278F23E9B1C8B0206EE96FC190FC /* Headers */ = { + E6DC4B9328D41DCF241586FCC753E7C9 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - DD1DAF6642494A855DAE74D362720651 /* DoricAsyncResult.h in Headers */, - 455ED5C6B2C89EEB909B6604269994A3 /* DoricComponent.h in Headers */, - 9B2E635BA24B4C96C85699A83B4A0698 /* DoricConstant.h in Headers */, - 9AAFEEC7DAEF1971041D227A4B6BB6B0 /* DoricContext.h in Headers */, - E26688E222EF20C800B642BF /* DoricShaderPlugin.h in Headers */, - A616FE47EFBB2A4B0629D9B101AF02A0 /* DoricContextManager.h in Headers */, - B5E4694D3D3243AF3FE6D9EF78D76501 /* DoricDriver.h in Headers */, - 9451930505ADC63C2B860614A3AB5C1F /* DoricJSCoreExecutor.h in Headers */, - E26688DE22EF1CCA00B642BF /* DoricBridgeExtension.h in Headers */, - A69253C685B9486F435DA00B0D74F49C /* DoricJSEngine.h in Headers */, - C19CCCC9983463B36493148ADD28B997 /* DoricJSExecutorProtocal.h in Headers */, - E6B45CF2CBF030A7D3F0B0478A82B2F5 /* DoricModalPlugin.h in Headers */, - 6D019B812C86DC7219436123003CB093 /* DoricNativePlugin.h in Headers */, - 8150DC55474B5B645088A26AA9E3B545 /* DoricPromise.h in Headers */, - 6CD93DE173AD118050E815F7E805CAFC /* DoricRegistry.h in Headers */, - 969599C251FA301D25586D0BADD08478 /* DoricUtil.h in Headers */, - FC2E81F342E70C391EEA379FBA360941 /* UIView+Doric.h in Headers */, + A49CC1E7AF31D4607E27480F28E00B09 /* DoricAsyncResult.h in Headers */, + 1555B7EDAD25CB943985EE1F756D2C19 /* DoricBridgeExtension.h in Headers */, + B4B84A7277CB967AC1151A97CBDC1D95 /* DoricConstant.h in Headers */, + E39374F7696974F3B4712EF8BCDDD570 /* DoricContext.h in Headers */, + 0CF7E494CF3543CA95069A04BC779DCF /* DoricContextHolder.h in Headers */, + 0AC34EC7429DEE5721040B05A34CBA44 /* DoricContextManager.h in Headers */, + F699F53E1B540C7F71060E8B61471330 /* DoricDriver.h in Headers */, + BB461169EF31C523CC07526BE8E08EB4 /* DoricGroupNode.h in Headers */, + BDE07BFA3A170724CF5D14AE28710611 /* DoricHLayoutNode.h in Headers */, + 702A89C72C4E581A1FBDCAC1A2354F5A /* DoricJSCoreExecutor.h in Headers */, + 02E853F6DED7B96A75AAFC5F89B61607 /* DoricJSEngine.h in Headers */, + 6311EF7D506823FEFD9420E2DDEB215E /* DoricJSExecutorProtocal.h in Headers */, + B450402E70B7274441881FBB51D26294 /* DoricModalPlugin.h in Headers */, + AACA31EF73183D8874A7B924711A6C6C /* DoricNativePlugin.h in Headers */, + 9525A9A5ABA3462A6B6A7F722B473397 /* DoricPromise.h in Headers */, + 8C7ECCEC5E108A633C51A71B79C64C79 /* DoricRegistry.h in Headers */, + CF9F1B2575932D31FFC013B4D83AC010 /* DoricShaderPlugin.h in Headers */, + 0E0B404968AD478152256BF91CCBC8BF /* DoricStackNode.h in Headers */, + 14663348754C2F41B51A1E95897BD320 /* DoricUtil.h in Headers */, + 31F73C92F401B1B38BA23619F9F84135 /* DoricViewNode.h in Headers */, + A80B3891F9A820BE4F1DA6AA3F9475C4 /* DoricVLayoutNode.h in Headers */, + D3D5AE420C12950CBD2CFF957EE12353 /* UIView+Doric.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -397,11 +477,11 @@ }; 3467588C9AC1920A96217C14EB70DA40 /* Doric */ = { isa = PBXNativeTarget; - buildConfigurationList = AF4C0ED616837647AB6441C13A428AB4 /* Build configuration list for PBXNativeTarget "Doric" */; + buildConfigurationList = BA7C18F7331C93A5425E84ED1611D903 /* Build configuration list for PBXNativeTarget "Doric" */; buildPhases = ( - 9EB9278F23E9B1C8B0206EE96FC190FC /* Headers */, - D07A44371ED438FF0A6BED834DAE1119 /* Sources */, - B88F3F1CA95D71EB24B84327090E6C5F /* Frameworks */, + E6DC4B9328D41DCF241586FCC753E7C9 /* Headers */, + 73928D1DF48438FA1F66E7C93C013B0B /* Sources */, + 049A8E39C7D08ACBEC8BA63E3D49643F /* Frameworks */, ); buildRules = ( ); @@ -494,6 +574,35 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 73928D1DF48438FA1F66E7C93C013B0B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E72D34E5D8FED631D526E48706A4E433 /* Doric-dummy.m in Sources */, + 69110219565DD268F56336728419277B /* DoricAsyncResult.m in Sources */, + 746FEB8E2017EF5586F8F87983AA81DE /* DoricBridgeExtension.m in Sources */, + 9BAB7926D5F02A0516B41DBD8046CF89 /* DoricConstant.m in Sources */, + 88C67CA21061E04F085C77B6208DEFA2 /* DoricContext.m in Sources */, + A629B68B6E623AA8087B79E6EE0E4DEF /* DoricContextHolder.m in Sources */, + 20BCC13EE00670AEA604AED4FD9786AD /* DoricContextManager.m in Sources */, + 48F4B4F831BE602A267F4A829BFEBEEE /* DoricDriver.m in Sources */, + 34232A80568AD699C14F270BFB8968F0 /* DoricGroupNode.m in Sources */, + 4BB591549C96DF532ABE0B491D369E9C /* DoricHLayoutNode.m in Sources */, + E553530AEEEA494610100F427D305FA3 /* DoricJSCoreExecutor.m in Sources */, + 0EA5D9D68BF4DA8E1C34D9FEE18F512B /* DoricJSEngine.m in Sources */, + 6461CAB6A023DC8117DDB31E58F4976B /* DoricModalPlugin.m in Sources */, + 8F76171F9991E616C45569C87007B4E8 /* DoricNativePlugin.m in Sources */, + 5CAEC7B2443617E99C93EC2CE81A02B9 /* DoricPromise.m in Sources */, + 79ACA9FF39209D01F5CFD1A5168DA4C7 /* DoricRegistry.m in Sources */, + 0484E351DDC362465AB815850A8AAF10 /* DoricShaderPlugin.m in Sources */, + 5B589891062C660C0EB5A500A38ACB8B /* DoricStackNode.m in Sources */, + 11307C20FB09DE48F14D512095AB8BFB /* DoricUtil.m in Sources */, + CE5E3B5E51B77DCF2604791ED4F54A35 /* DoricViewNode.m in Sources */, + E5B9511136208D585E6133DE8B8A840A /* DoricVLayoutNode.m in Sources */, + 63A37752C4AF62039FAC53AB53DF7DD2 /* UIView+Doric.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 9A3583B42723658D87E4868694121B3A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -502,30 +611,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - D07A44371ED438FF0A6BED834DAE1119 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 29DD0B93C9BDDD4BD8F4D3604812BC07 /* Doric-dummy.m in Sources */, - BA568C7A737A554B82833E17D0989B9D /* DoricAsyncResult.m in Sources */, - BDE7BEEB4A56AC3B37BACC0ED19A601A /* DoricComponent.m in Sources */, - 80E6C2AD4B88EEA0D174610ADD3D2041 /* DoricConstant.m in Sources */, - D94DF789BBDA69CD5F0FC22532A79854 /* DoricContext.m in Sources */, - E38E30B01791A73269065FF350CE8F9E /* DoricContextManager.m in Sources */, - F85D1531511037FCC5C6349FA7BC7379 /* DoricDriver.m in Sources */, - F14898ED4BAFDCF268B2F2DB8307E409 /* DoricJSCoreExecutor.m in Sources */, - DE7BD11FE70F73948D13DD76D3E2E16C /* DoricJSEngine.m in Sources */, - 422DCC3A36D2E500F8EB7657AE96D807 /* DoricModalPlugin.m in Sources */, - F05E878CFD11812D9A3B4AC60A842A70 /* DoricNativePlugin.m in Sources */, - 6F4D61B7B563DAD837D2EB8B9EAA2600 /* DoricPromise.m in Sources */, - E26688DF22EF1CCA00B642BF /* DoricBridgeExtension.m in Sources */, - 6A2989333795DEE250369A3519870480 /* DoricRegistry.m in Sources */, - 4370AE1C064A9A78AFFFE9171687885B /* DoricUtil.m in Sources */, - E26688E322EF20C800B642BF /* DoricShaderPlugin.m in Sources */, - 701C9FC71418B5CF5097BA01B5C525EE /* UIView+Doric.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ @@ -572,53 +657,6 @@ }; name = Debug; }; - 2A073BBD00AB36450522DD123F0F925C /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B1060ECA09FD9217BD3B163A76A4ED07 /* Doric.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/Doric/Doric-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = Doric; - PRODUCT_NAME = Doric; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 2EE06C523A07FA7A72E225FD3B578BF8 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B1060ECA09FD9217BD3B163A76A4ED07 /* Doric.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/Doric/Doric-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = Doric; - PRODUCT_NAME = Doric; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; 3A9BD353C9AA5B193D9D2F584EAE7C0F /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = E340F908A05867E06E975FDCDD32315C /* Pods-Example.debug.xcconfig */; @@ -705,6 +743,29 @@ }; name = Debug; }; + 6A3D91209D9E4CC3D26657FA7E67677C /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6A004EA843085E7A435B5A163D94CDAA /* Doric.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/Doric/Doric-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = Doric; + PRODUCT_NAME = Doric; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 747661AF61F4387FF6885B69B54F271E /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 8052FAE778A6A09F2260E4E85B371F57 /* Pods-ExampleTests.release.xcconfig */; @@ -856,6 +917,30 @@ }; name = Release; }; + E644C29362FF8C8228175BFA65068833 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6A004EA843085E7A435B5A163D94CDAA /* Doric.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/Doric/Doric-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = Doric; + PRODUCT_NAME = Doric; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ @@ -877,15 +962,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - AF4C0ED616837647AB6441C13A428AB4 /* Build configuration list for PBXNativeTarget "Doric" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 2EE06C523A07FA7A72E225FD3B578BF8 /* Debug */, - 2A073BBD00AB36450522DD123F0F925C /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; B2548596E2544D6246F7A1567F0FED35 /* Build configuration list for PBXNativeTarget "Pods-ExampleTests" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -895,6 +971,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + BA7C18F7331C93A5425E84ED1611D903 /* Build configuration list for PBXNativeTarget "Doric" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 6A3D91209D9E4CC3D26657FA7E67677C /* Debug */, + E644C29362FF8C8228175BFA65068833 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; FF1E8FCEC0A05CD6042539B49FE84977 /* Build configuration list for PBXNativeTarget "Pods-ExampleUITests" */ = { isa = XCConfigurationList; buildConfigurations = ( diff --git a/iOS/Pod/Classes/DoricComponent.h b/iOS/Pod/Classes/DoricContextHolder.h similarity index 88% rename from iOS/Pod/Classes/DoricComponent.h rename to iOS/Pod/Classes/DoricContextHolder.h index e7b3e2b4..4bd31f02 100644 --- a/iOS/Pod/Classes/DoricComponent.h +++ b/iOS/Pod/Classes/DoricContextHolder.h @@ -9,7 +9,7 @@ #import "DoricContext.h" NS_ASSUME_NONNULL_BEGIN -@interface DoricComponent : NSObject +@interface DoricContextHolder : NSObject @property (nonatomic,strong) DoricContext *doricContext; - (instancetype)initWithContext:(DoricContext *)doricContext; diff --git a/iOS/Pod/Classes/DoricComponent.m b/iOS/Pod/Classes/DoricContextHolder.m similarity index 78% rename from iOS/Pod/Classes/DoricComponent.m rename to iOS/Pod/Classes/DoricContextHolder.m index ced97eab..9cb589f2 100644 --- a/iOS/Pod/Classes/DoricComponent.m +++ b/iOS/Pod/Classes/DoricContextHolder.m @@ -5,9 +5,9 @@ // Created by pengfei.zhou on 2019/7/29. // -#import "DoricComponent.h" +#import "DoricContextHolder.h" -@implementation DoricComponent +@implementation DoricContextHolder - (instancetype)initWithContext:(DoricContext *)doricContext { if(self = [super init]){ diff --git a/iOS/Pod/Classes/DoricContextManager.m b/iOS/Pod/Classes/DoricContextManager.m index c6707373..c5c437cf 100644 --- a/iOS/Pod/Classes/DoricContextManager.m +++ b/iOS/Pod/Classes/DoricContextManager.m @@ -55,11 +55,11 @@ - (DoricContext *)getContext:(NSString *)contextId { - (void)destroyContext:(DoricContext *)context { NSString *contextId = context.contextId; - [[context.driver destroyContext:contextId] setFinishCallback:^(){ + [context.driver destroyContext:contextId].finishCallback = ^{ dispatch_sync(self.mapQueue, ^(){ [self.doricContextMap removeObjectForKey:contextId]; }); - }]; + }; } @end diff --git a/iOS/Pod/Classes/DoricUtil.m b/iOS/Pod/Classes/DoricUtil.m deleted file mode 100644 index 469bc5b1..00000000 --- a/iOS/Pod/Classes/DoricUtil.m +++ /dev/null @@ -1,15 +0,0 @@ -// -// DoricUtil.m -// Doric -// -// Created by pengfei.zhou on 2019/7/26. -// - -#import "DoricUtil.h" - -void DoricLog(NSString * _Nonnull format, ...) { - va_list args; - va_start(args, format); - NSLogv([NSString stringWithFormat:@"Doric:%@",format],args); - va_end(args); -} diff --git a/iOS/Pod/Classes/DoricJSCoreExecutor.h b/iOS/Pod/Classes/Engine/DoricJSCoreExecutor.h similarity index 100% rename from iOS/Pod/Classes/DoricJSCoreExecutor.h rename to iOS/Pod/Classes/Engine/DoricJSCoreExecutor.h diff --git a/iOS/Pod/Classes/DoricJSCoreExecutor.m b/iOS/Pod/Classes/Engine/DoricJSCoreExecutor.m similarity index 100% rename from iOS/Pod/Classes/DoricJSCoreExecutor.m rename to iOS/Pod/Classes/Engine/DoricJSCoreExecutor.m diff --git a/iOS/Pod/Classes/DoricJSEngine.h b/iOS/Pod/Classes/Engine/DoricJSEngine.h similarity index 100% rename from iOS/Pod/Classes/DoricJSEngine.h rename to iOS/Pod/Classes/Engine/DoricJSEngine.h diff --git a/iOS/Pod/Classes/DoricJSEngine.m b/iOS/Pod/Classes/Engine/DoricJSEngine.m similarity index 100% rename from iOS/Pod/Classes/DoricJSEngine.m rename to iOS/Pod/Classes/Engine/DoricJSEngine.m diff --git a/iOS/Pod/Classes/DoricJSExecutorProtocal.h b/iOS/Pod/Classes/Engine/DoricJSExecutorProtocal.h similarity index 100% rename from iOS/Pod/Classes/DoricJSExecutorProtocal.h rename to iOS/Pod/Classes/Engine/DoricJSExecutorProtocal.h diff --git a/iOS/Pod/Classes/DoricBridgeExtension.h b/iOS/Pod/Classes/Extension/DoricBridgeExtension.h similarity index 100% rename from iOS/Pod/Classes/DoricBridgeExtension.h rename to iOS/Pod/Classes/Extension/DoricBridgeExtension.h diff --git a/iOS/Pod/Classes/DoricBridgeExtension.m b/iOS/Pod/Classes/Extension/DoricBridgeExtension.m similarity index 100% rename from iOS/Pod/Classes/DoricBridgeExtension.m rename to iOS/Pod/Classes/Extension/DoricBridgeExtension.m diff --git a/iOS/Pod/Classes/DoricModalPlugin.h b/iOS/Pod/Classes/Plugin/DoricModalPlugin.h similarity index 100% rename from iOS/Pod/Classes/DoricModalPlugin.h rename to iOS/Pod/Classes/Plugin/DoricModalPlugin.h diff --git a/iOS/Pod/Classes/DoricModalPlugin.m b/iOS/Pod/Classes/Plugin/DoricModalPlugin.m similarity index 100% rename from iOS/Pod/Classes/DoricModalPlugin.m rename to iOS/Pod/Classes/Plugin/DoricModalPlugin.m diff --git a/iOS/Pod/Classes/DoricNativePlugin.h b/iOS/Pod/Classes/Plugin/DoricNativePlugin.h similarity index 73% rename from iOS/Pod/Classes/DoricNativePlugin.h rename to iOS/Pod/Classes/Plugin/DoricNativePlugin.h index 00f61100..d7efcd36 100644 --- a/iOS/Pod/Classes/DoricNativePlugin.h +++ b/iOS/Pod/Classes/Plugin/DoricNativePlugin.h @@ -6,13 +6,13 @@ // #import -#import "DoricComponent.h" +#import "DoricContextHolder.h" #import "DoricPromise.h" #import "DoricRegistry.h" NS_ASSUME_NONNULL_BEGIN -@interface DoricNativePlugin : DoricComponent +@interface DoricNativePlugin : DoricContextHolder @end diff --git a/iOS/Pod/Classes/DoricNativePlugin.m b/iOS/Pod/Classes/Plugin/DoricNativePlugin.m similarity index 100% rename from iOS/Pod/Classes/DoricNativePlugin.m rename to iOS/Pod/Classes/Plugin/DoricNativePlugin.m diff --git a/iOS/Pod/Classes/DoricPromise.h b/iOS/Pod/Classes/Plugin/DoricPromise.h similarity index 100% rename from iOS/Pod/Classes/DoricPromise.h rename to iOS/Pod/Classes/Plugin/DoricPromise.h diff --git a/iOS/Pod/Classes/DoricPromise.m b/iOS/Pod/Classes/Plugin/DoricPromise.m similarity index 100% rename from iOS/Pod/Classes/DoricPromise.m rename to iOS/Pod/Classes/Plugin/DoricPromise.m diff --git a/iOS/Pod/Classes/DoricShaderPlugin.h b/iOS/Pod/Classes/Plugin/DoricShaderPlugin.h similarity index 100% rename from iOS/Pod/Classes/DoricShaderPlugin.h rename to iOS/Pod/Classes/Plugin/DoricShaderPlugin.h diff --git a/iOS/Pod/Classes/DoricShaderPlugin.m b/iOS/Pod/Classes/Plugin/DoricShaderPlugin.m similarity index 100% rename from iOS/Pod/Classes/DoricShaderPlugin.m rename to iOS/Pod/Classes/Plugin/DoricShaderPlugin.m diff --git a/iOS/Pod/Classes/Shader/DoricGroupNode.h b/iOS/Pod/Classes/Shader/DoricGroupNode.h new file mode 100644 index 00000000..0788f7ad --- /dev/null +++ b/iOS/Pod/Classes/Shader/DoricGroupNode.h @@ -0,0 +1,16 @@ +// +// DoricGroupNode.h +// Doric +// +// Created by pengfei.zhou on 2019/7/30. +// + +#import "DoricViewNode.h" + +NS_ASSUME_NONNULL_BEGIN + +@interface DoricGroupNode : DoricViewNode +- (void)blendChild:(DoricViewNode *)child layoutConfig:(NSDictionary *)layoutconfig; +@end + +NS_ASSUME_NONNULL_END diff --git a/iOS/Pod/Classes/Shader/DoricGroupNode.m b/iOS/Pod/Classes/Shader/DoricGroupNode.m new file mode 100644 index 00000000..322c7f2f --- /dev/null +++ b/iOS/Pod/Classes/Shader/DoricGroupNode.m @@ -0,0 +1,23 @@ +// +// DoricGroupNode.m +// Doric +// +// Created by pengfei.zhou on 2019/7/30. +// + +#import "DoricGroupNode.h" + +@implementation DoricGroupNode + +- (UIView *)build:(NSDictionary *)props { + return [[UIView alloc] init]; +} + +- (void)blendView:(UIView *)view forPropName:(NSString *)name propValue:(id)prop { + +} + +- (void)blendChild:(DoricViewNode *)child layoutConfig:(NSDictionary *)layoutconfig { + +} +@end diff --git a/iOS/Pod/Classes/Shader/DoricHLayoutNode.h b/iOS/Pod/Classes/Shader/DoricHLayoutNode.h new file mode 100644 index 00000000..acb4c143 --- /dev/null +++ b/iOS/Pod/Classes/Shader/DoricHLayoutNode.h @@ -0,0 +1,16 @@ +// +// DoricHLayoutNode.h +// Doric +// +// Created by pengfei.zhou on 2019/7/30. +// + +#import "DoricGroupNode.h" + +NS_ASSUME_NONNULL_BEGIN + +@interface DoricHLayoutNode : DoricGroupNode + +@end + +NS_ASSUME_NONNULL_END diff --git a/iOS/Pod/Classes/Shader/DoricHLayoutNode.m b/iOS/Pod/Classes/Shader/DoricHLayoutNode.m new file mode 100644 index 00000000..7af5871d --- /dev/null +++ b/iOS/Pod/Classes/Shader/DoricHLayoutNode.m @@ -0,0 +1,12 @@ +// +// DoricHLayoutNode.m +// Doric +// +// Created by pengfei.zhou on 2019/7/30. +// + +#import "DoricHLayoutNode.h" + +@implementation DoricHLayoutNode + +@end diff --git a/iOS/Pod/Classes/Shader/DoricStackNode.h b/iOS/Pod/Classes/Shader/DoricStackNode.h new file mode 100644 index 00000000..792d2762 --- /dev/null +++ b/iOS/Pod/Classes/Shader/DoricStackNode.h @@ -0,0 +1,16 @@ +// +// DoricStackNode.h +// Doric +// +// Created by pengfei.zhou on 2019/7/30. +// + +#import "DoricGroupNode.h" + +NS_ASSUME_NONNULL_BEGIN + +@interface DoricStackNode : DoricGroupNode + +@end + +NS_ASSUME_NONNULL_END diff --git a/iOS/Pod/Classes/Shader/DoricStackNode.m b/iOS/Pod/Classes/Shader/DoricStackNode.m new file mode 100644 index 00000000..2f4d1581 --- /dev/null +++ b/iOS/Pod/Classes/Shader/DoricStackNode.m @@ -0,0 +1,12 @@ +// +// DoricStackNode.m +// Doric +// +// Created by pengfei.zhou on 2019/7/30. +// + +#import "DoricStackNode.h" + +@implementation DoricStackNode + +@end diff --git a/iOS/Pod/Classes/Shader/DoricVLayoutNode.h b/iOS/Pod/Classes/Shader/DoricVLayoutNode.h new file mode 100644 index 00000000..01a6e5c2 --- /dev/null +++ b/iOS/Pod/Classes/Shader/DoricVLayoutNode.h @@ -0,0 +1,16 @@ +// +// DoricVLayoutNode.h +// Doric +// +// Created by pengfei.zhou on 2019/7/30. +// + +#import "DoricGroupNode.h" + +NS_ASSUME_NONNULL_BEGIN + +@interface DoricVLayoutNode : DoricGroupNode + +@end + +NS_ASSUME_NONNULL_END diff --git a/iOS/Pod/Classes/Shader/DoricVLayoutNode.m b/iOS/Pod/Classes/Shader/DoricVLayoutNode.m new file mode 100644 index 00000000..3750833d --- /dev/null +++ b/iOS/Pod/Classes/Shader/DoricVLayoutNode.m @@ -0,0 +1,12 @@ +// +// DoricVLayoutNode.m +// Doric +// +// Created by pengfei.zhou on 2019/7/30. +// + +#import "DoricVLayoutNode.h" + +@implementation DoricVLayoutNode + +@end diff --git a/iOS/Pod/Classes/Shader/DoricViewNode.h b/iOS/Pod/Classes/Shader/DoricViewNode.h new file mode 100644 index 00000000..bb3a01f0 --- /dev/null +++ b/iOS/Pod/Classes/Shader/DoricViewNode.h @@ -0,0 +1,29 @@ +// +// DoricViewNode.h +// Doric +// +// Created by pengfei.zhou on 2019/7/30. +// + +#import "DoricContextHolder.h" + +#import "UIView+Doric.h" + +NS_ASSUME_NONNULL_BEGIN +@class DoricGroupNode; + +@interface DoricViewNode : DoricContextHolder + +@property (nonatomic,strong) V view; + +@property (nonatomic,weak) DoricGroupNode *parent; + +- (V)build:(NSDictionary *)props; + +- (void)blend:(NSDictionary *)props; + +- (void)blendView:(V)view forPropName:(NSString *)name propValue:(id)prop; + +@end + +NS_ASSUME_NONNULL_END diff --git a/iOS/Pod/Classes/Shader/DoricViewNode.m b/iOS/Pod/Classes/Shader/DoricViewNode.m new file mode 100644 index 00000000..63a695a1 --- /dev/null +++ b/iOS/Pod/Classes/Shader/DoricViewNode.m @@ -0,0 +1,46 @@ +// +// DoricViewNode.m +// Doric +// +// Created by pengfei.zhou on 2019/7/30. +// + +#import "DoricViewNode.h" +#import "DoricUtil.h" +#import "DoricGroupNode.h" + +@implementation DoricViewNode + +- (UIView *)build:(NSDictionary *)props { + return [[UIView alloc] init]; +} + +- (void)blend:(NSDictionary *)props { + if(self.view == nil) { + self.view = [self build:props]; + } + for (NSString *key in props) { + id value = props[key]; + [self blendView:self.view forPropName:key propValue:value]; + } +} + +- (void)blendView:(UIView *)view forPropName:(NSString *)name propValue:(id)prop { + if([name isEqualToString:@"width"]) { + view.width = [(NSNumber *)prop floatValue]; + } else if([name isEqualToString:@"height"]) { + view.height = [(NSNumber *)prop floatValue]; + } else if([name isEqualToString:@"x"]) { + view.x = [(NSNumber *)prop floatValue]; + } else if([name isEqualToString:@"y"]) { + view.y = [(NSNumber *)prop floatValue]; + } else if([name isEqualToString:@"bgColor"]) { + view.backgroundColor = DoricColor(prop); + } else if([name isEqualToString:@"layoutConfig"]) { + if(self.parent && [prop isKindOfClass:[NSDictionary class]]){ + [self.parent blendChild:self layoutConfig:prop]; + } + } +} + +@end diff --git a/iOS/Pod/Classes/DoricAsyncResult.h b/iOS/Pod/Classes/Util/DoricAsyncResult.h similarity index 69% rename from iOS/Pod/Classes/DoricAsyncResult.h rename to iOS/Pod/Classes/Util/DoricAsyncResult.h index 50ddda96..7153c9be 100644 --- a/iOS/Pod/Classes/DoricAsyncResult.h +++ b/iOS/Pod/Classes/Util/DoricAsyncResult.h @@ -15,12 +15,14 @@ typedef void(^DoricResultCallback)(R); typedef void(^DoricExceptionCallback)(NSException *); typedef void(^DoricFinishCallback)(void); +@property(nonatomic,strong) DoricResultCallback resultCallback; +@property(nonatomic,strong) DoricExceptionCallback exceptionCallback; +@property(nonatomic,strong) DoricFinishCallback finishCallback; + - (void)setupResult:(R)result; - (void)setupError:(NSException*)exception; - (BOOL)hasResult; - (R)getResult; -- (void)setResultCallback:(DoricResultCallback) callback exceptionCallback:(DoricExceptionCallback) exceptionCallback; -- (void)setFinishCallback:(DoricFinishCallback) callback; @end NS_ASSUME_NONNULL_END diff --git a/iOS/Pod/Classes/DoricAsyncResult.m b/iOS/Pod/Classes/Util/DoricAsyncResult.m similarity index 86% rename from iOS/Pod/Classes/DoricAsyncResult.m rename to iOS/Pod/Classes/Util/DoricAsyncResult.m index 8326c235..4209d683 100644 --- a/iOS/Pod/Classes/DoricAsyncResult.m +++ b/iOS/Pod/Classes/Util/DoricAsyncResult.m @@ -9,9 +9,6 @@ @interface DoricAsyncResult() @property(nonatomic,strong) id result; -@property(nonatomic,strong) DoricResultCallback resultCallback; -@property(nonatomic,strong) DoricExceptionCallback exceptionCallback; -@property(nonatomic,strong) DoricFinishCallback finishCallback; @end @implementation DoricAsyncResult diff --git a/iOS/Pod/Classes/DoricConstant.h b/iOS/Pod/Classes/Util/DoricConstant.h similarity index 100% rename from iOS/Pod/Classes/DoricConstant.h rename to iOS/Pod/Classes/Util/DoricConstant.h diff --git a/iOS/Pod/Classes/DoricConstant.m b/iOS/Pod/Classes/Util/DoricConstant.m similarity index 100% rename from iOS/Pod/Classes/DoricConstant.m rename to iOS/Pod/Classes/Util/DoricConstant.m diff --git a/iOS/Pod/Classes/DoricUtil.h b/iOS/Pod/Classes/Util/DoricUtil.h similarity index 73% rename from iOS/Pod/Classes/DoricUtil.h rename to iOS/Pod/Classes/Util/DoricUtil.h index 3917d408..cb5c4c0e 100644 --- a/iOS/Pod/Classes/DoricUtil.h +++ b/iOS/Pod/Classes/Util/DoricUtil.h @@ -8,3 +8,5 @@ #import void DoricLog(NSString * _Nonnull format, ...); + +UIColor* _Nonnull DoricColor(NSNumber * _Nonnull number); diff --git a/iOS/Pod/Classes/Util/DoricUtil.m b/iOS/Pod/Classes/Util/DoricUtil.m new file mode 100644 index 00000000..9fd913f4 --- /dev/null +++ b/iOS/Pod/Classes/Util/DoricUtil.m @@ -0,0 +1,25 @@ +// +// DoricUtil.m +// Doric +// +// Created by pengfei.zhou on 2019/7/26. +// + +#import "DoricUtil.h" + +void DoricLog(NSString * _Nonnull format, ...) { + va_list args; + va_start(args, format); + NSLogv([NSString stringWithFormat:@"Doric:%@",format],args); + va_end(args); +} + +UIColor *DoricColor(NSNumber *number) { + CGFloat r, g, b, a; + long colorValue = [number longValue]; + a = ((colorValue >> 6) & 0xff)/225.0f; + r = ((colorValue >> 4) & 0xff)/225.0f; + g = ((colorValue >> 2) & 0xff)/225.0f; + b = ((colorValue >> 0) & 0xff)/225.0f; + return [UIColor colorWithRed:r green:g blue:b alpha:a]; +} diff --git a/js-framework/demo.ts b/js-framework/demo.ts index 90056bdc..50d5add0 100644 --- a/js-framework/demo.ts +++ b/js-framework/demo.ts @@ -48,7 +48,6 @@ class CounterVM extends ViewModel { } } -@Entry class MyPage extends VMPanel{ getVMClass() { @@ -372,7 +371,7 @@ class SnakeVM extends ViewModel{ } } } - +@Entry class SnakePanel extends VMPanel{ getVMClass() {