Coder Social home page Coder Social logo

How can I put menu on top? about justpy HOT 2 CLOSED

justpy-org avatar justpy-org commented on September 24, 2024
How can I put menu on top?

from justpy.

Comments (2)

elimintz avatar elimintz commented on September 24, 2024 1

The way I would recommend doing this is to create a component out of menu that you could reuse.

First run this program (add the definition of menu to it):

import justpy as jp

c = jp.parse_html(menu)
for i in c.commands:
    print(i)

The output looks like this:

root = jp.Div()
c1 = jp.QToolbar(classes='bg-grey-3', a=root)
c2 = jp.QBtn(flat=True, round=True, dense=True, a=c1)
c3 = jp.QIcon(name='menu', a=c2)
c4 = jp.QMenu(a=c2)
c5 = jp.QList(style='min-width: 100px', a=c4)
c6 = jp.QItem(clickable=True, v_close_popup=True, a=c5)
c7 = jp.QItemSection(a=c6)
c8 = jp.A(href='/about', style='text-decoration: none', a=c7, text='about')
c9 = jp.QSeparator(a=c5)
c10 = jp.QItem(clickable=True, v_close_popup=True, a=c5)
c11 = jp.QItemSection(a=c10)
c12 = jp.A(href='/tool', style='text-decoration: none', a=c11, text='help')
c13 = jp.QToolbarTitle(a=c1, text='Toolbar')
c14 = jp.QBtn(flat=True, round=True, dense=True, a=c1)
c15 = jp.QIcon(name='more_vert', a=c14)

We use these commands to create the component. Your program would now look like this:

import justpy as jp

class MyToolbar(jp.QToolBar):

    def __init__(self, **kwargs):
        super().__init__(**kwargs)
        c1 = self
        c1.classes = 'bg-grey-3'
        c2 = jp.QBtn(flat=True, round=True, dense=True, a=c1)
        c3 = jp.QIcon(name='menu', a=c2)
        c4 = jp.QMenu(a=c2)
        c5 = jp.QList(style='min-width: 100px', a=c4)
        c6 = jp.QItem(clickable=True, v_close_popup=True, a=c5)
        c7 = jp.QItemSection(a=c6)
        c8 = jp.A(href='/about', style='text-decoration: none', a=c7, text='about')
        c9 = jp.QSeparator(a=c5)
        c10 = jp.QItem(clickable=True, v_close_popup=True, a=c5)
        c11 = jp.QItemSection(a=c10)
        c12 = jp.A(href='/tool', style='text-decoration: none', a=c11, text='help')
        c13 = jp.QToolBarTitle(a=c1, text='Toolbar')
        c14 = jp.QBtn(flat=True, round=True, dense=True, a=c1)
        c15 = jp.QIcon(name='more_vert', a=c14)


@jp.SetRoute('/')
def index():
    wp = jp.QuasarPage()
    wp.tailwind = True
    wp.add(MyToolbar())
    wp.add(jp.P(text='Index page', classes='text-5xl m-2'))
    return wp

@jp.SetRoute('/about')
def about():
    wp = jp.QuasarPage()
    wp.tailwind = True
    wp.add(MyToolbar())
    wp.add(jp.P(text='Hello there!', classes='text-5xl m-2'))
    return wp

jp.justpy()

Now, in this project or any other you can reuse the MyToolbar component

Note: The tailwind classes do not work on Quasar pages unless you set the tailwind attribute of the page to True (Quasar has its own set of classes).

Let me know if you have additional questions.

IMPORTANT : In version 0.0.6 coming out next week, QToolBar will change to QToolbar and QToolBarTitle will change to QToolbarTitle to be compatible with Quasar naming (There is a typo in 0.0.5).

from justpy.

partrita avatar partrita commented on September 24, 2024

Thanks you :)

from justpy.

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.