mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 06:50:22 +08:00

* Do not attempt to export fields that cannot be json-encoded * update changelog w/ PR * also skip UnsafePointers * WIP to allow conversion from Go generic types to typescript * support for non-primitive generics also :) * fix generic types in parameters / return args * fixes a namespacing bug when mapping to pointer to struct * fixing invalid knownstructs * found a place it mattered, pushing the star replacement to the generate side * descend as much as necessary to find structs caught these examples in http.Request.TLS: PeerCertificates []*x509.Certificate VerifiedChains [][]*x509.Certificate * accidently reverted other fix * switch syntax for typescript record outputs prior syntax is primarily useful for naming keys so not useful here, and this syntax avoids square brackets in output which greatly simplifies generation for Go generics * better handle edge cases for nested arrays and slices * lots o tests * update changelog --------- Co-authored-by: Lea Anthony <lea.anthony@gmail.com>
95 lines
2.3 KiB
Go
95 lines
2.3 KiB
Go
package binding_test
|
|
|
|
import "github.com/wailsapp/wails/v2/internal/binding/binding_test/binding_test_import"
|
|
|
|
type ImportedMap struct {
|
|
AMapWrapperContainer binding_test_import.AMapWrapper `json:"AMapWrapperContainer"`
|
|
}
|
|
|
|
func (s ImportedMap) Get() ImportedMap {
|
|
return s
|
|
}
|
|
|
|
var ImportedMapTest = BindingTest{
|
|
name: "ImportedMap",
|
|
structs: []interface{}{
|
|
&ImportedMap{},
|
|
},
|
|
exemptions: nil,
|
|
shouldError: false,
|
|
want: `
|
|
export namespace binding_test {
|
|
export class ImportedMap {
|
|
AMapWrapperContainer: binding_test_import.AMapWrapper;
|
|
static createFrom(source: any = {}) {
|
|
return new ImportedMap(source);
|
|
}
|
|
constructor(source: any = {}) {
|
|
if ('string' === typeof source) source = JSON.parse(source);
|
|
this.AMapWrapperContainer = this.convertValues(source["AMapWrapperContainer"], binding_test_import.AMapWrapper);
|
|
}
|
|
convertValues(a: any, classs: any, asMap: boolean = false): any {
|
|
if (!a) {
|
|
return a;
|
|
}
|
|
if (a.slice && a.map) {
|
|
return (a as any[]).map(elem => this.convertValues(elem, classs));
|
|
} else if ("object" === typeof a) {
|
|
if (asMap) {
|
|
for (const key of Object.keys(a)) {
|
|
a[key] = new classs(a[key]);
|
|
}
|
|
return a;
|
|
}
|
|
return new classs(a);
|
|
}
|
|
return a;
|
|
}
|
|
}
|
|
}
|
|
|
|
export namespace binding_test_import {
|
|
export class AMapWrapper {
|
|
AMap: Record<string, binding_test_nestedimport.A>;
|
|
static createFrom(source: any = {}) {
|
|
return new AMapWrapper(source);
|
|
}
|
|
constructor(source: any = {}) {
|
|
if ('string' === typeof source) source = JSON.parse(source);
|
|
this.AMap = this.convertValues(source["AMap"], binding_test_nestedimport.A, true);
|
|
}
|
|
convertValues(a: any, classs: any, asMap: boolean = false): any {
|
|
if (!a) {
|
|
return a;
|
|
}
|
|
if (a.slice && a.map) {
|
|
return (a as any[]).map(elem => this.convertValues(elem, classs));
|
|
} else if ("object" === typeof a) {
|
|
if (asMap) {
|
|
for (const key of Object.keys(a)) {
|
|
a[key] = new classs(a[key]);
|
|
}
|
|
return a;
|
|
}
|
|
return new classs(a);
|
|
}
|
|
return a;
|
|
}
|
|
}
|
|
}
|
|
|
|
export namespace binding_test_nestedimport {
|
|
export class A {
|
|
A: string;
|
|
static createFrom(source: any = {}) {
|
|
return new A(source);
|
|
}
|
|
constructor(source: any = {}) {
|
|
if ('string' === typeof source) source = JSON.parse(source);
|
|
this.A = source["A"];
|
|
}
|
|
}
|
|
}
|
|
`,
|
|
}
|