Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

[3.X - Express] Support res.render() #279

Open
enzoclock opened this issue Mar 19, 2024 · 2 comments
Open

[3.X - Express] Support res.render() #279

enzoclock opened this issue Mar 19, 2024 · 2 comments

Comments

@enzoclock
Copy link

Hello 馃憢 Before anything, thank you for this nice template engine :)

Context

Unless I misread the documentation, it seems that V3 doesn't support the good'old Express res.render() anymore.

During setup, it is not possible to app.engine("eta", eta.render) to define eta as an express view engine.

My poor solution

Here is my walk around
const express = require("express");
const { Eta } = require("eta");

// Create app
const app = express();

// Setup eta
const eta = new Eta({ views: "./views" });
app.engine("eta", buildEtaEngine());
app.set("view engine", "eta");

// Home route
app.get("/", (req, res) => {
  res.render("home", { message: "Hello John" });
});

// Start server
app.listen(3000, () => {
  console.log(`Listening at http://localhost:${3000}`);
});


function buildEtaEngine() {
  return (path, opts, callback) => {
    try {
      const fileContent = eta.readFile(path);
      const rendered = eta.renderString(fileContent, opts);
      callback(null, rendered);
    } catch (error) {
      callback(error);
    };
  };
}

Question

Any reason for it not being supported anymore ?

Would it be interesting to add a eta.getExpressEngine() method or equivalent so the required setup to use the res.render() syntax with Express remains simple ?

Note

I'm not so familiar with open source contributions, let me know if anything is unclear

@nebrelbug
Copy link
Collaborator

@enzoclock thank you! I appreciate this suggestion, but I think it's best to keep the Eta API as minimal as possible.

However, I do like your solution. Maybe you could submit a PR to add that to the Eta documentation here?

@akbaryahya
Copy link

var w = express()
var eta = new Eta({ views: path.join(__dirname, "views"), cache: false })
w.engine("eta", buildEtaEngine())
w.set("view engine", "eta")
w.set("views",eta.config.views) // idk why need add this, even though the config is already there above
function buildEtaEngine(): (
	path: string,
	opts: any,
	callback: (error: Error | null, renderedTemplate?: string) => void
) => void {
	return (path: string, opts: any, callback: (error: Error | null, renderedTemplate?: string) => void) => {
		try {
			const fileContent = eta.readFile(path)
			const renderedTemplate = eta.renderString(fileContent, opts)
			callback(null, renderedTemplate)
		} catch (error) {
			callback(error as Error)
		}
	}
}

for some reason the path doesn't work if I don't add w.set("views",eta.config.views) or maybe views: path.join(__dirname, "views") is never read?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants