Giter Site home page Giter Site logo

Comments (3)

sdogruyol avatar sdogruyol commented on June 12, 2024 1

Yeah @zw963 that should work, you can even reduce the repetition with a macro

from kemal.

sdogruyol avatar sdogruyol commented on June 12, 2024

Hey @zw963

How about turning that line into a method like

def current_user(env)
  UserQuery.new.open_id(env.session.string("current_user_open_id")).first
end

Then you can access it from anywhere like

current_user(env)

How does that sound?

from kemal.

zw963 avatar zw963 commented on June 12, 2024

Hey @zw963

How about turning that line into a method like

def current_user(env)
  UserQuery.new.open_id(env.session.string("current_user_open_id")).first
end

Then you can access it from anywhere like

current_user(env)

How does that sound?

We have to pass current_user variable to template, so, i guess what you mean is:

def _current_user(env)
  UserQuery.new.open_id(env.session.string("current_user_open_id")).first
end

get path.home_index do |env|
  current_user = _current_user(env)

  render_use_layout "home.ecr"
end

it should work, if this is the expect usage for kemal (do the best), that is okay, though, consider not well.

from kemal.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.