package cn.stylefeng.guns.gen.core.generator.guns.js;
|
|
import cn.stylefeng.guns.gen.core.generator.base.AbstractCustomGenerator;
|
import org.beetl.core.Template;
|
|
import java.io.File;
|
import java.util.Map;
|
|
/**
|
* Guns主页面js生成器
|
*
|
* @author fengshuonan
|
* @date 2018-12-13-2:20 PM
|
*/
|
public class GunsPageIndexJsGenerator extends AbstractCustomGenerator {
|
|
public GunsPageIndexJsGenerator(Map<String, Object> tableContext) {
|
super(tableContext);
|
}
|
|
@Override
|
public void bindingOthers(Template template) {
|
super.bindingConditionParams(template);
|
}
|
|
@Override
|
public String getTemplateResourcePath() {
|
return "/gunsTemplates/page.js.btl";
|
}
|
|
@Override
|
public String getGenerateFileTempPath() {
|
String lowerEntity = (String) this.tableContext.get("lowerEntity");
|
File file = new File(contextParam.getOutputPath() + "/js/" + lowerEntity + "/" + lowerEntity + ".js");
|
return file.getAbsolutePath();
|
}
|
|
@Override
|
public String getGenerateFileDirectPath() {
|
String lowerEntity = (String) this.tableContext.get("lowerEntity");
|
File file = new File(contextParam.getOutputPath() + "/webapp/assets/" + lowerEntity + "/" + lowerEntity + ".js");
|
return file.getAbsolutePath();
|
}
|
}
|