Skip to content

Commit 9942711

Browse files
committed
thatvegandev
1 parent 6fd4ae0 commit 9942711

File tree

19 files changed

+64
-66
lines changed

19 files changed

+64
-66
lines changed

.github/CODE_OF_CONDUCT.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ further defined and clarified by project maintainers.
6767
## Enforcement
6868

6969
Instances of abusive, harassing, or otherwise unacceptable behavior may be
70-
reported by contacting me directly at coloradocolby@gmail.com. All complaints
70+
reported by contacting me directly at thatvegandev@gmail.com. All complaints
7171
will be reviewed and investigated and will result in a response that is deemed
7272
necessary and appropriate to the circumstances. The project team is obligated
7373
to maintain confidentiality with regard to the reporter of an incident. Further

.github/PULL_REQUEST_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ merge of your pull request!
2626
<!-- to check an item, place an "x" in the box like so: "- [x] Documentation" -->
2727

2828
- [ ] `Allow edits from maintainers` option checked
29-
- [ ] Branch name is prefixed with `[your_username]/` (ex. `coloradocolby/featureX`)
29+
- [ ] Branch name is prefixed with `[your_username]/` (ex. `thatvegandev/featureX`)
3030
- [ ] Documentation added
3131
- [ ] Tests added
3232
- [ ] No failing actions

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
*.log
22
gh-eco
33
dist
4-
coverage.out
4+
coverage.out
5+
.DS_Store

README.md

+11-13
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
🦎 gh extension to explore the ecosystem
44

55
[![GitHub Go
6-
Workflow](https://github.com/coloradocolby/gh-eco/actions/workflows/ci.yml/badge.svg)](https://github.com/coloradocolby/gh-eco/actions/workflows/ci.yml)
6+
Workflow](https://github.com/thatvegandev/gh-eco/actions/workflows/ci.yml/badge.svg)](https://github.com/thatvegandev/gh-eco/actions/workflows/ci.yml)
77
[![License](https://img.shields.io/badge/License-MIT-default.svg)](./LICENSE.md) [![Github
8-
Stars](https://img.shields.io/github/stars/coloradocolby/gh-eco)](https://github.com/coloradocolby/gh-eco/stargazers)
8+
Stars](https://img.shields.io/github/stars/thatvegandev/gh-eco)](https://github.com/thatvegandev/gh-eco/stargazers)
99

10-
![demo](./assets/demo.gif)
10+
![demo](https://github.com/coloradocolby/assets/raw/main/gh-eco/demo.gif)
1111

1212
## Installation
1313

@@ -18,7 +18,7 @@ Stars](https://img.shields.io/github/stars/coloradocolby/gh-eco)](https://github
1818
2. Install this extension:
1919

2020
```sh
21-
gh extension install coloradocolby/gh-eco
21+
gh extension install thatvegandev/gh-eco
2222
```
2323

2424
<details>
@@ -30,10 +30,10 @@ Stars](https://img.shields.io/github/stars/coloradocolby/gh-eco)](https://github
3030

3131
```sh
3232
# git
33-
git clone https://github.com/coloradocolby/gh-eco
33+
git clone https://github.com/thatvegandev/gh-eco
3434

3535
# GitHub CLI
36-
gh repo clone coloradocolby/gh-eco
36+
gh repo clone thatvegandev/gh-eco
3737
```
3838

3939
2. `cd` into it
@@ -121,9 +121,9 @@ this please feel free to open an issue / pull request and start the discussion!
121121
All contributions are greatly appreciated!
122122

123123
If you have a suggestion that would make `gh-eco` better, please fork the repo and create a [pull
124-
request](https://github.com/coloradocolby/gh-eco/pulls) or open an issue.
124+
request](https://github.com/thatvegandev/gh-eco/pulls) or open an issue.
125125

126-
See the [open issues](https://github.com/coloradocolby/gh-eco/issues) for a full list of proposed
126+
See the [open issues](https://github.com/thatvegandev/gh-eco/issues) for a full list of proposed
127127
features (and known bugs).
128128

129129
## License
@@ -139,8 +139,6 @@ Check out these amazing projects that inspired `gh-eco`!
139139

140140
## Follow
141141

142-
[![github](https://img.shields.io/github/followers/coloradocolby?style=social)](https://github.com/coloradocolby)
143-
144-
[![twitter](https://img.shields.io/twitter/follow/coloradocolby?color=white&style=social)](https://twitter.com/coloradocolby)
145-
146-
[![youtube](https://img.shields.io/youtube/channel/subscribers/UCEDfokz6igeN4bX7Whq49-g?style=social)](https://youtube.com/user/coloradocolby)
142+
[![github](https://img.shields.io/github/followers/thatvegandev?style=social)](https://github.com/thatvegandev)
143+
[![twitter](https://img.shields.io/twitter/follow/thatvegandev?color=white&style=social)](https://twitter.com/thatvegandev)
144+
[![youtube](https://img.shields.io/youtube/channel/subscribers/UCEDfokz6igeN4bX7Whq49-g?style=social)](https://youtube.com/user/thatvegandev)

api/github/github.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ import (
55

66
tea "github.com/charmbracelet/bubbletea"
77
"github.com/cli/go-gh"
8-
"github.com/coloradocolby/gh-eco/api/github/mutations"
9-
"github.com/coloradocolby/gh-eco/api/github/queries"
10-
"github.com/coloradocolby/gh-eco/ui/commands"
11-
"github.com/coloradocolby/gh-eco/utils"
128
graphql "github.com/shurcooL/graphql"
9+
"github.com/thatvegandev/gh-eco/api/github/mutations"
10+
"github.com/thatvegandev/gh-eco/api/github/queries"
11+
"github.com/thatvegandev/gh-eco/ui/commands"
12+
"github.com/thatvegandev/gh-eco/utils"
1313
)
1414

1515
const GH_ECO_REPO_ID string = "R_kgDOHVAImQ"

assets/demo.gif

-9.84 MB
Binary file not shown.

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/coloradocolby/gh-eco
1+
module github.com/thatvegandev/gh-eco
22

33
go 1.17
44

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"log"
55

66
tea "github.com/charmbracelet/bubbletea"
7-
"github.com/coloradocolby/gh-eco/ui"
7+
"github.com/thatvegandev/gh-eco/ui"
88
)
99

1010
func main() {

ui/commands/commands.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package commands
22

3-
import "github.com/coloradocolby/gh-eco/ui/models"
3+
import "github.com/thatvegandev/gh-eco/ui/models"
44

55
type FocusChange struct{}
66

ui/components/graph/graph.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"strings"
55

66
"github.com/charmbracelet/lipgloss"
7-
"github.com/coloradocolby/gh-eco/ui/models"
8-
"github.com/coloradocolby/gh-eco/utils"
7+
"github.com/thatvegandev/gh-eco/ui/models"
8+
"github.com/thatvegandev/gh-eco/utils"
99
)
1010

1111
var (

ui/components/help/help.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"github.com/charmbracelet/bubbles/key"
66
tea "github.com/charmbracelet/bubbletea"
77

8-
"github.com/coloradocolby/gh-eco/ui/context"
9-
"github.com/coloradocolby/gh-eco/utils"
8+
"github.com/thatvegandev/gh-eco/ui/context"
9+
"github.com/thatvegandev/gh-eco/utils"
1010
)
1111

1212
type Model struct {

ui/components/markdown/markdown.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ import (
44
"fmt"
55
"strings"
66

7-
"github.com/coloradocolby/gh-eco/ui/commands"
8-
"github.com/coloradocolby/gh-eco/ui/context"
9-
"github.com/coloradocolby/gh-eco/ui/styles"
10-
"github.com/coloradocolby/gh-eco/utils"
7+
"github.com/thatvegandev/gh-eco/ui/commands"
8+
"github.com/thatvegandev/gh-eco/ui/context"
9+
"github.com/thatvegandev/gh-eco/ui/styles"
10+
"github.com/thatvegandev/gh-eco/utils"
1111

1212
"github.com/charmbracelet/bubbles/viewport"
1313
tea "github.com/charmbracelet/bubbletea"

ui/components/message/message.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import (
77
tea "github.com/charmbracelet/bubbletea"
88
"github.com/charmbracelet/lipgloss"
99

10-
"github.com/coloradocolby/gh-eco/ui/commands"
11-
"github.com/coloradocolby/gh-eco/ui/context"
12-
"github.com/coloradocolby/gh-eco/utils"
10+
"github.com/thatvegandev/gh-eco/ui/commands"
11+
"github.com/thatvegandev/gh-eco/ui/context"
12+
"github.com/thatvegandev/gh-eco/utils"
1313
)
1414

1515
type Model struct {

ui/components/repo/repo.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import (
55
"strings"
66

77
"github.com/charmbracelet/lipgloss"
8-
"github.com/coloradocolby/gh-eco/ui/context"
9-
"github.com/coloradocolby/gh-eco/ui/models"
10-
"github.com/coloradocolby/gh-eco/ui/styles"
11-
"github.com/coloradocolby/gh-eco/utils"
8+
"github.com/thatvegandev/gh-eco/ui/context"
9+
"github.com/thatvegandev/gh-eco/ui/models"
10+
"github.com/thatvegandev/gh-eco/ui/styles"
11+
"github.com/thatvegandev/gh-eco/utils"
1212
)
1313

1414
func buildRepoDisplay(repo models.Repo, width int, isFocused bool, viewerHasStarred bool) string {
@@ -65,5 +65,5 @@ func BuildPinnedRepoDisplay(repos []models.Repo, ctx *context.ProgramContext) st
6565
}
6666
}
6767

68-
return lipgloss.JoinHorizontal(lipgloss.Top, lc.String(), rc.String())
68+
return lipgloss.JoinVertical(lipgloss.Top, lc.String(), rc.String())
6969
}

ui/components/search/search.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ import (
88
"github.com/charmbracelet/bubbles/textinput"
99
tea "github.com/charmbracelet/bubbletea"
1010
"github.com/charmbracelet/lipgloss"
11-
"github.com/coloradocolby/gh-eco/api/github"
12-
"github.com/coloradocolby/gh-eco/ui/commands"
13-
"github.com/coloradocolby/gh-eco/ui/components/spinner"
14-
"github.com/coloradocolby/gh-eco/ui/context"
15-
"github.com/coloradocolby/gh-eco/utils"
11+
"github.com/thatvegandev/gh-eco/api/github"
12+
"github.com/thatvegandev/gh-eco/ui/commands"
13+
"github.com/thatvegandev/gh-eco/ui/components/spinner"
14+
"github.com/thatvegandev/gh-eco/ui/context"
15+
"github.com/thatvegandev/gh-eco/utils"
1616
)
1717

1818
type Model struct {

ui/components/user/user.go

+9-10
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,12 @@ import (
77

88
tea "github.com/charmbracelet/bubbletea"
99
"github.com/charmbracelet/lipgloss"
10-
"github.com/coloradocolby/gh-eco/ui/commands"
11-
"github.com/coloradocolby/gh-eco/ui/components/graph"
12-
"github.com/coloradocolby/gh-eco/ui/components/repo"
13-
"github.com/coloradocolby/gh-eco/ui/context"
14-
"github.com/coloradocolby/gh-eco/ui/models"
15-
"github.com/coloradocolby/gh-eco/ui/styles"
16-
"github.com/coloradocolby/gh-eco/utils"
10+
"github.com/thatvegandev/gh-eco/ui/commands"
11+
"github.com/thatvegandev/gh-eco/ui/components/repo"
12+
"github.com/thatvegandev/gh-eco/ui/context"
13+
"github.com/thatvegandev/gh-eco/ui/models"
14+
"github.com/thatvegandev/gh-eco/ui/styles"
15+
"github.com/thatvegandev/gh-eco/utils"
1716
"golang.org/x/term"
1817
)
1918

@@ -167,9 +166,9 @@ func (m *Model) buildDisplay() {
167166

168167
w(utils.GetNewLines(1))
169168

170-
w(lipgloss.NewStyle().
171-
Align(lipgloss.Left).
172-
Render(graph.BuildGraphDisplay(u.ActivityGraph.Weeks)))
169+
// w(lipgloss.NewStyle().
170+
// Align(lipgloss.Left).
171+
// Render(graph.BuildGraphDisplay(u.ActivityGraph.Weeks)))
173172

174173
w(utils.GetNewLines(2))
175174

ui/context/context.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package context
22

3-
import "github.com/coloradocolby/gh-eco/ui/models"
3+
import "github.com/thatvegandev/gh-eco/ui/models"
44

55
type Mode int
66

ui/ui.go

+9-9
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ import (
66
tea "github.com/charmbracelet/bubbletea"
77
"github.com/charmbracelet/lipgloss"
88

9-
"github.com/coloradocolby/gh-eco/api/github"
10-
"github.com/coloradocolby/gh-eco/ui/commands"
11-
"github.com/coloradocolby/gh-eco/ui/components/help"
12-
"github.com/coloradocolby/gh-eco/ui/components/markdown"
13-
"github.com/coloradocolby/gh-eco/ui/components/message"
14-
"github.com/coloradocolby/gh-eco/ui/components/search"
15-
"github.com/coloradocolby/gh-eco/ui/components/user"
16-
"github.com/coloradocolby/gh-eco/ui/context"
17-
"github.com/coloradocolby/gh-eco/utils"
9+
"github.com/thatvegandev/gh-eco/api/github"
10+
"github.com/thatvegandev/gh-eco/ui/commands"
11+
"github.com/thatvegandev/gh-eco/ui/components/help"
12+
"github.com/thatvegandev/gh-eco/ui/components/markdown"
13+
"github.com/thatvegandev/gh-eco/ui/components/message"
14+
"github.com/thatvegandev/gh-eco/ui/components/search"
15+
"github.com/thatvegandev/gh-eco/ui/components/user"
16+
"github.com/thatvegandev/gh-eco/ui/context"
17+
"github.com/thatvegandev/gh-eco/utils"
1818
)
1919

2020
type Model struct {

utils/utils.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"strings"
99
"unicode"
1010

11-
"github.com/coloradocolby/gh-eco/api/github/queries"
12-
"github.com/coloradocolby/gh-eco/ui/models"
11+
"github.com/thatvegandev/gh-eco/api/github/queries"
12+
"github.com/thatvegandev/gh-eco/ui/models"
1313
)
1414

1515
func TruncateText(str string, max int) string {

0 commit comments

Comments
 (0)