使用TypeWriter

时间:2018-02-09 17:43:13

标签: c# typescript typewriter

我正在使用TypeWriter从我的C#模型生成TypeScript类。它很棒。以下是我的现有模板,其工作正常:

${
    using Typewriter.Extensions.Types;

    Template(Settings settings)
    {
        settings.IncludeProject("ProjectName.Api");
        settings.OutputFilenameFactory = file => 
        {
            return file.Name.Replace("Dto.cs", ".ts");
        };
    }

    string DtoName(Class t) { return t.Name.Replace("Dto", ""); }
    string MapTypeName(Property p) { return MapTypeName(p.Type); }

    string MapTypeName(Type t)
    {
        var typeArguments = t.TypeArguments.ToList();

        if (typeArguments.Count == 1 && t.IsEnumerable)
        {
            return $"{MapTypeName(typeArguments[0])}[]";
        }

        if (typeArguments.Count == 2 && t.Name == $"KeyValuePair<{typeArguments[0]}, {typeArguments[1]}>")
        {
            return $"{{ key: {typeArguments[0]}; value: {typeArguments[1]}}}";
        }

        return t.Name.Replace("Dto", "");
    }
}

module CompanyName.Models.Api {
    $Classes(ProjectName.Api.Models.*Dto)[
    export class $DtoName {
        $Properties[
        public $name: $MapTypeName = $Type[$Default];]
    }]
}

我想有条件地为此模板添加特定类型的方法。我觉得这样的事情会奏效:

module CompanyName.Models.Api {
    $Classes(ProjectName.Api.Models.*Dto)[
    export class $DtoName {
        $Properties[
        public $name: $MapTypeName = $Type[$Default];]

        ${
            if ($name == "ADto") 
            {
                // I want to emit this code:
                //    public getStatistic(appType: string, status: string): number {
                //        const retval = _.find(this.data, { appType: appType, status: status });
                //        return retval ? retval.count : 0;
                //    }
            }
        }
    }]
}

但它不喜欢这种语法,我得到5个打字机错误,包括“意外令牌”和“无效令牌”。我试图改变这个:

module CompanyName.Models.Api {
    $Classes(ProjectName.Api.Models.*Dto)[
    export class $DtoName {
        $Properties[
        public $name: $MapTypeName = $Type[$Default];]

        $if ($name == "ADto") 
        {
            // I want to emit this code:
            //    public getStatistic(appType: string, status: string): number {
            //        const retval = _.find(this.data, { appType: appType, status: status });
            //        return retval ? retval.count : 0;
            //    }
        }
    }]
}

但打字机会发出整个$if { ... }块,这不是我想要的。

我必须专门为这个类创建第二个模板,还是可以使用条件执行此操作?如果是这样,怎么样?

1 个答案:

答案 0 :(得分:2)

我根据this Github issue comment

计算出来了

在主体中,在模板上方,添加此辅助函数:

bool IsStatisticsClass(Class c)
{
    return c.Name == "ADto";
}

这给了我们一些包装器(我不确定正确的术语是什么)。我们可以使用$IsStatisticsClass[ ... ]来有条件地添加代码。模板本身变为:

module CompanyName.Models.Api {
    $Classes(ProjectName.Api.Models.*Dto)[
    export class $DtoName {
        $Properties[
        public $name: $MapTypeName = $Type[$Default];]
        $IsStatisticsClass[            
        // This code is now emitted for a single class:
        //    public getStatistic(appType: string, status: string): number {
        //        const retval = _.find(this.data, { appType: appType, status: status });
        //        return retval ? retval.count : 0;
        //    }]
    }]
}

为了与我的问题保持一致,我已将发出的TypeScript代码注释掉了。