Coder Social home page Coder Social logo

Key combinations about bubbles HOT 3 OPEN

charmbracelet avatar charmbracelet commented on August 20, 2024 1
Key combinations

from bubbles.

Comments (3)

meowgorithm avatar meowgorithm commented on August 20, 2024 2

There's no way to do this yet, though you can totally implement this in the manner like you're suggesting.

That said, this would also be an awesome feature for the Key Bubble. Transferring this issue accordingly.

from bubbles.

dlvhdr avatar dlvhdr commented on August 20, 2024 1

Cool I like this idea @ghostsquad.
I definitely think I need to improve the navigation in the preview pane and handle focus properly.
Let me know if you find an elegant solution for your project

from bubbles.

ghostsquad avatar ghostsquad commented on August 20, 2024

@dlvhdr I think this could be implemented by "focusing" a particular element/component in the UI, whether that's invisible or not would be up to you, with 1 key press. Then subsequent key presses flow only to the focused element. Allowing you to avoid timing race conditions.

This is what I figured out just last night.

func (m Model) onKeyPress(msg tea.KeyMsg) (tea.Model, tea.Cmd) {
	switch {
	case key.Matches(msg, m.keys.FocusLeft):
		return m.refocus(-1)

	case key.Matches(msg, m.keys.FocusRight):
		return m.refocus(1)

	case key.Matches(msg, m.keys.Quit):
		return m, tea.Quit
	default:
		return m.updateComponent(m.state.currentFocus, msg)
	}

	return m, nil
}

func (m Model) updateComponent(key componentKey, teaMsg tea.Msg) (Model, tea.Cmd) {
	compUpdate, compCmd := m.components[key].Update(teaMsg)
	m.components[key] = compUpdate
	return m, compCmd
}

Let me know if this helps. Also, I absolutely love https://github.com/dlvhdr/gh-dash - I've been using it as inspiration for a different project of mine. I just really the clean look of it, and use of icons and such. In fact, I discovered this focusing method as I was looking at gh-dash and wanted an alternative to the keybinding you setup there. You use ctrl+u and ctrl+d to scroll the "sidebar", and I wanted to leverage more of the default keybindings of the viewport (pageup/down, etc). Anyways, cheers 🍻

from bubbles.

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.