Skip to content

Commit

Permalink
jrnxf
Browse files Browse the repository at this point in the history
  • Loading branch information
jrnxf committed Dec 23, 2022
1 parent 7562442 commit 55e16b0
Show file tree
Hide file tree
Showing 18 changed files with 72 additions and 76 deletions.
2 changes: 1 addition & 1 deletion .github/CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ further defined and clarified by project maintainers.
## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported by contacting me directly at [email protected]. All complaints
reported by contacting me directly at [email protected]. All complaints
will be reviewed and investigated and will result in a response that is deemed
necessary and appropriate to the circumstances. The project team is obligated
to maintain confidentiality with regard to the reporter of an incident. Further
Expand Down
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ merge of your pull request!
<!-- to check an item, place an "x" in the box like so: "- [x] Documentation" -->

- [ ] `Allow edits from maintainers` option checked
- [ ] Branch name is prefixed with `[your_username]/` (ex. `thatvegandev/featureX`)
- [ ] Branch name is prefixed with `[your_username]/` (ex. `jrnxf/feature_xyz`)
- [ ] Documentation added
- [ ] Tests added
- [ ] No failing actions
Expand Down
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
🦎 gh extension to explore the ecosystem

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

![demo](https://github.com/thatvegandev/assets/raw/main/gh-eco/demo.gif)
![demo](https://github.com/jrnxf/assets/raw/main/gh-eco/demo.gif)

## Installation

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

```sh
gh extension install thatvegandev/gh-eco
gh extension install jrnxf/gh-eco
```

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

```sh
# git
git clone https://github.com/thatvegandev/gh-eco
git clone https://github.com/jrnxf/gh-eco

# GitHub CLI
gh repo clone thatvegandev/gh-eco
gh repo clone jrnxf/gh-eco
```

2. `cd` into it
Expand All @@ -42,10 +42,10 @@ Stars](https://img.shields.io/github/stars/thatvegandev/gh-eco)](https://github.
cd gh-eco
```

3. build it
3. add dependencies and build it

```sh
gh build
go get && go build
```

4. install it locally
Expand Down Expand Up @@ -121,9 +121,9 @@ this please feel free to open an issue / pull request and start the discussion!
All contributions are greatly appreciated!

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

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

## License
Expand All @@ -139,6 +139,6 @@ Check out these amazing projects that inspired `gh-eco`!

## Follow

[![github](https://img.shields.io/github/followers/thatvegandev?style=social)](https://github.com/thatvegandev)
[![twitter](https://img.shields.io/twitter/follow/thatvegandev?color=white&style=social)](https://twitter.com/thatvegandev)
[![github](https://img.shields.io/github/followers/jrnxf?style=social)](https://github.com/jrnxf)
[![twitter](https://img.shields.io/twitter/follow/_jrnxf?color=white&style=social)](https://twitter.com/_jrnxf)
[![youtube](https://img.shields.io/youtube/channel/subscribers/UCEDfokz6igeN4bX7Whq49-g?style=social)](https://youtube.com/user/thatvegandev)
8 changes: 4 additions & 4 deletions api/github/github.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ import (

tea "github.com/charmbracelet/bubbletea"
"github.com/cli/go-gh"
"github.com/jrnxf/gh-eco/api/github/mutations"
"github.com/jrnxf/gh-eco/api/github/queries"
"github.com/jrnxf/gh-eco/ui/commands"
"github.com/jrnxf/gh-eco/utils"
graphql "github.com/shurcooL/graphql"
"github.com/thatvegandev/gh-eco/api/github/mutations"
"github.com/thatvegandev/gh-eco/api/github/queries"
"github.com/thatvegandev/gh-eco/ui/commands"
"github.com/thatvegandev/gh-eco/utils"
)

const GH_ECO_REPO_ID string = "R_kgDOHVAImQ"
Expand Down
10 changes: 5 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/thatvegandev/gh-eco
module github.com/jrnxf/gh-eco

go 1.17

Expand All @@ -9,7 +9,7 @@ require (
github.com/charmbracelet/lipgloss v0.5.0
github.com/cli/go-gh v0.0.3
github.com/shurcooL/graphql v0.0.0-20200928012149-18c5c3165e3a
golang.org/x/term v0.0.0-20210422114643-f5beecf764ed
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211
)

require (
Expand All @@ -25,15 +25,15 @@ require (
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/microcosm-cc/bluemonday v1.0.17 // indirect
github.com/microcosm-cc/bluemonday v1.0.21 // indirect
github.com/muesli/ansi v0.0.0-20211018074035-2e021307bc4b // indirect
github.com/muesli/reflow v0.3.0 // indirect
github.com/muesli/termenv v0.11.1-0.20220212125758-44cd13922739 // indirect
github.com/olekukonko/tablewriter v0.0.5 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/yuin/goldmark v1.4.4 // indirect
github.com/yuin/goldmark-emoji v1.0.1 // indirect
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 // indirect
golang.org/x/sys v0.0.0-20211019181941-9d821ace8654 // indirect
golang.org/x/net v0.0.0-20221002022538-bcab6841153b // indirect
golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)
20 changes: 8 additions & 12 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
github.com/MakeNowJust/heredoc v1.0.0 h1:cXCdzVdstXyiTqTvfqk9SDHpKNjxuom+DOlyEeQ4pzQ=
github.com/MakeNowJust/heredoc v1.0.0/go.mod h1:mG5amYoWBHf8vpLOuehzbGGw0EHxpZZ6lCpQ4fNJ8LE=
github.com/alecthomas/chroma v0.10.0 h1:7XDcGkCQopCNKjZHfYrNLraA+M7e0fMiJ/Mfikbfjek=
github.com/alecthomas/chroma v0.10.0/go.mod h1:jtJATyUxlIORhUOFNA9NZDWGAQ8wpxQQqNSB4rjA/1s=
Expand Down Expand Up @@ -27,18 +26,15 @@ github.com/containerd/console v1.0.2/go.mod h1:ytZPjGgY2oeTkAONYafi2kSj0aYggsf8a
github.com/containerd/console v1.0.3 h1:lIr7SlA5PxZyMV30bDW0MGbiOPXwc63yRuCP0ARubLw=
github.com/containerd/console v1.0.3/go.mod h1:7LqA/THxQ86k76b8c/EMSiaJ3h1eZkMkXar0TQ1gf3U=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/dlclark/regexp2 v1.4.0 h1:F1rxgk7p4uKjwIQxBs9oAXe5CqrXlCduYEJvrF4u93E=
github.com/dlclark/regexp2 v1.4.0/go.mod h1:2pZnwuY/m+8K6iRw6wQdMtk+rH5tNGR1i55kozfMjCc=
github.com/gorilla/css v1.0.0 h1:BQqNyPTi50JCFMTw/b67hByjMVXZRwGha6wxVGkeihY=
github.com/gorilla/css v1.0.0/go.mod h1:Dn721qIggHpt4+EFCcTLTU/vk5ySda2ReITrtgBl60c=
github.com/henvic/httpretty v0.0.6 h1:JdzGzKZBajBfnvlMALXXMVQWxWMF/ofTy8C3/OSUTxs=
github.com/henvic/httpretty v0.0.6/go.mod h1:X38wLjWXHkXT7r2+uK8LjCMne9rsuNaBLJ+5cU2/Pmo=
github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI=
github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=
github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE=
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw=
github.com/lucasb-eyer/go-colorful v1.2.0 h1:1nnpGOrhyZZuNyfu1QjKiUICQ74+3FNCN69Aj6K7nkY=
Expand All @@ -51,8 +47,9 @@ github.com/mattn/go-runewidth v0.0.10/go.mod h1:RAqKPSqVFrSLVXbA8x7dzmKdmGzieGRC
github.com/mattn/go-runewidth v0.0.12/go.mod h1:RAqKPSqVFrSLVXbA8x7dzmKdmGzieGRCM46jaSJTDAk=
github.com/mattn/go-runewidth v0.0.13 h1:lTGmDsbAYt5DmK6OnoV7EuIF1wEIFAcxld6ypU4OSgU=
github.com/mattn/go-runewidth v0.0.13/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w=
github.com/microcosm-cc/bluemonday v1.0.17 h1:Z1a//hgsQ4yjC+8zEkV8IWySkXnsxmdSY642CTFQb5Y=
github.com/microcosm-cc/bluemonday v1.0.17/go.mod h1:Z0r70sCuXHig8YpBzCc5eGHAap2K7e/u082ZUpDRRqM=
github.com/microcosm-cc/bluemonday v1.0.21 h1:dNH3e4PSyE4vNX+KlRGHT5KrSvjeUkoNPwEORjffHJg=
github.com/microcosm-cc/bluemonday v1.0.21/go.mod h1:ytNkv4RrDrLJ2pqlsSI46O6IVXmZOBBD4SaJyDwwTkM=
github.com/muesli/ansi v0.0.0-20211018074035-2e021307bc4b h1:1XF24mVaiu7u+CFywTdcDo2ie1pzzhwjt6RHqzpMU34=
github.com/muesli/ansi v0.0.0-20211018074035-2e021307bc4b/go.mod h1:fQuZ0gauxyBcmsdE3ZT4NasjaRdxmbCS0jRHsrWu3Ho=
github.com/muesli/reflow v0.2.1-0.20210115123740-9e1d0d53df68/go.mod h1:Xk+z4oIWdQqJzsxyjgl3P22oYZnHdZ8FFTHAQQt5BMQ=
Expand All @@ -65,7 +62,6 @@ github.com/muesli/termenv v0.11.1-0.20220212125758-44cd13922739/go.mod h1:Bd5NYQ
github.com/olekukonko/tablewriter v0.0.5 h1:P2Ga83D34wi1o9J6Wh1mRuqd4mF/x/lgBS7N7AbDhec=
github.com/olekukonko/tablewriter v0.0.5/go.mod h1:hPp6KlRPjbx+hW8ykQs1w3UBbZlj6HuIJcUGPhkA7kY=
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/rivo/uniseg v0.1.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
github.com/rivo/uniseg v0.2.0 h1:S1pD9weZBuJdFmowNwbpi7BJ8TNftyUImj/0WQi72jY=
Expand All @@ -74,31 +70,31 @@ github.com/sahilm/fuzzy v0.1.0/go.mod h1:VFvziUEIMCrT6A6tw2RFIXPXXmzXbOsSHF0DOI8
github.com/shurcooL/graphql v0.0.0-20200928012149-18c5c3165e3a h1:KikTa6HtAK8cS1qjvUvvq4QO21QnwC+EfvB+OAuZ/ZU=
github.com/shurcooL/graphql v0.0.0-20200928012149-18c5c3165e3a/go.mod h1:AuYgA5Kyo4c7HfUmvRGs/6rGlMMV/6B1bVnB9JxJEEg=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY=
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
github.com/yuin/goldmark v1.4.4 h1:zNWRjYUW32G9KirMXYHQHVNFkXvMI7LpgNW2AgYAoIs=
github.com/yuin/goldmark v1.4.4/go.mod h1:rmuwmfZ0+bvzB24eSC//bk1R1Zp3hM0OXYv/G2LIilg=
github.com/yuin/goldmark-emoji v1.0.1 h1:ctuWEyzGBwiucEqxzwe0SOYDXPAucOrE9NQC18Wa1os=
github.com/yuin/goldmark-emoji v1.0.1/go.mod h1:2w1E6FEWLcDQkoTE+7HU6QF1F6SLlNGjRIBbIZQFqkQ=
golang.org/x/net v0.0.0-20210614182718-04defd469f4e/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 h1:CIJ76btIcR3eFI5EgSo6k1qKw9KJexJuRLI9G7Hp5wE=
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
golang.org/x/net v0.0.0-20221002022538-bcab6841153b h1:6e93nYa3hNqAvLr0pD4PN1fFS+gKzp2zAXqrnTCstqU=
golang.org/x/net v0.0.0-20221002022538-bcab6841153b/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk=
golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.0.0-20211019181941-9d821ace8654 h1:id054HUawV2/6IGm2IV8KZQjqtwAOo2CYlOToYqa0d0=
golang.org/x/sys v0.0.0-20211019181941-9d821ace8654/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 h1:WIoqL4EROvwiPdUtaip4VcDdpZ4kha7wBWZrbVKCIZg=
golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
golang.org/x/term v0.0.0-20210422114643-f5beecf764ed h1:Ei4bQjjpYUsS4efOUz+5Nz++IVkHk87n2zBA0NxBWc0=
golang.org/x/term v0.0.0-20210422114643-f5beecf764ed/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 h1:JGgROgKl9N8DuW20oFS5gxc+lE67/N3FcwmBPMe7ArY=
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY=
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b h1:h8qDotaEPuJATrMmW04NCwg7v22aHH28wwpauUhK9Oo=
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"log"

tea "github.com/charmbracelet/bubbletea"
"github.com/thatvegandev/gh-eco/ui"
"github.com/jrnxf/gh-eco/ui"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion ui/commands/commands.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package commands

import "github.com/thatvegandev/gh-eco/ui/models"
import "github.com/jrnxf/gh-eco/ui/models"

type FocusChange struct{}

Expand Down
4 changes: 2 additions & 2 deletions ui/components/graph/graph.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"strings"

"github.com/charmbracelet/lipgloss"
"github.com/thatvegandev/gh-eco/ui/models"
"github.com/thatvegandev/gh-eco/utils"
"github.com/jrnxf/gh-eco/ui/models"
"github.com/jrnxf/gh-eco/utils"
)

var (
Expand Down
4 changes: 2 additions & 2 deletions ui/components/help/help.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"github.com/charmbracelet/bubbles/key"
tea "github.com/charmbracelet/bubbletea"

"github.com/thatvegandev/gh-eco/ui/context"
"github.com/thatvegandev/gh-eco/utils"
"github.com/jrnxf/gh-eco/ui/context"
"github.com/jrnxf/gh-eco/utils"
)

type Model struct {
Expand Down
8 changes: 4 additions & 4 deletions ui/components/markdown/markdown.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import (
"fmt"
"strings"

"github.com/thatvegandev/gh-eco/ui/commands"
"github.com/thatvegandev/gh-eco/ui/context"
"github.com/thatvegandev/gh-eco/ui/styles"
"github.com/thatvegandev/gh-eco/utils"
"github.com/jrnxf/gh-eco/ui/commands"
"github.com/jrnxf/gh-eco/ui/context"
"github.com/jrnxf/gh-eco/ui/styles"
"github.com/jrnxf/gh-eco/utils"

"github.com/charmbracelet/bubbles/viewport"
tea "github.com/charmbracelet/bubbletea"
Expand Down
6 changes: 3 additions & 3 deletions ui/components/message/message.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (
tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"

"github.com/thatvegandev/gh-eco/ui/commands"
"github.com/thatvegandev/gh-eco/ui/context"
"github.com/thatvegandev/gh-eco/utils"
"github.com/jrnxf/gh-eco/ui/commands"
"github.com/jrnxf/gh-eco/ui/context"
"github.com/jrnxf/gh-eco/utils"
)

type Model struct {
Expand Down
8 changes: 4 additions & 4 deletions ui/components/repo/repo.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import (
"strings"

"github.com/charmbracelet/lipgloss"
"github.com/thatvegandev/gh-eco/ui/context"
"github.com/thatvegandev/gh-eco/ui/models"
"github.com/thatvegandev/gh-eco/ui/styles"
"github.com/thatvegandev/gh-eco/utils"
"github.com/jrnxf/gh-eco/ui/context"
"github.com/jrnxf/gh-eco/ui/models"
"github.com/jrnxf/gh-eco/ui/styles"
"github.com/jrnxf/gh-eco/utils"
)

func buildRepoDisplay(repo models.Repo, width int, isFocused bool, viewerHasStarred bool) string {
Expand Down
10 changes: 5 additions & 5 deletions ui/components/search/search.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ import (
"github.com/charmbracelet/bubbles/textinput"
tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"
"github.com/thatvegandev/gh-eco/api/github"
"github.com/thatvegandev/gh-eco/ui/commands"
"github.com/thatvegandev/gh-eco/ui/components/spinner"
"github.com/thatvegandev/gh-eco/ui/context"
"github.com/thatvegandev/gh-eco/utils"
"github.com/jrnxf/gh-eco/api/github"
"github.com/jrnxf/gh-eco/ui/commands"
"github.com/jrnxf/gh-eco/ui/components/spinner"
"github.com/jrnxf/gh-eco/ui/context"
"github.com/jrnxf/gh-eco/utils"
)

type Model struct {
Expand Down
14 changes: 7 additions & 7 deletions ui/components/user/user.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ import (

tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"
"github.com/thatvegandev/gh-eco/ui/commands"
"github.com/thatvegandev/gh-eco/ui/components/graph"
"github.com/thatvegandev/gh-eco/ui/components/repo"
"github.com/thatvegandev/gh-eco/ui/context"
"github.com/thatvegandev/gh-eco/ui/models"
"github.com/thatvegandev/gh-eco/ui/styles"
"github.com/thatvegandev/gh-eco/utils"
"github.com/jrnxf/gh-eco/ui/commands"
"github.com/jrnxf/gh-eco/ui/components/graph"
"github.com/jrnxf/gh-eco/ui/components/repo"
"github.com/jrnxf/gh-eco/ui/context"
"github.com/jrnxf/gh-eco/ui/models"
"github.com/jrnxf/gh-eco/ui/styles"
"github.com/jrnxf/gh-eco/utils"
"golang.org/x/term"
)

Expand Down
2 changes: 1 addition & 1 deletion ui/context/context.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package context

import "github.com/thatvegandev/gh-eco/ui/models"
import "github.com/jrnxf/gh-eco/ui/models"

type Mode int

Expand Down
18 changes: 9 additions & 9 deletions ui/ui.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ import (
tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"

"github.com/thatvegandev/gh-eco/api/github"
"github.com/thatvegandev/gh-eco/ui/commands"
"github.com/thatvegandev/gh-eco/ui/components/help"
"github.com/thatvegandev/gh-eco/ui/components/markdown"
"github.com/thatvegandev/gh-eco/ui/components/message"
"github.com/thatvegandev/gh-eco/ui/components/search"
"github.com/thatvegandev/gh-eco/ui/components/user"
"github.com/thatvegandev/gh-eco/ui/context"
"github.com/thatvegandev/gh-eco/utils"
"github.com/jrnxf/gh-eco/api/github"
"github.com/jrnxf/gh-eco/ui/commands"
"github.com/jrnxf/gh-eco/ui/components/help"
"github.com/jrnxf/gh-eco/ui/components/markdown"
"github.com/jrnxf/gh-eco/ui/components/message"
"github.com/jrnxf/gh-eco/ui/components/search"
"github.com/jrnxf/gh-eco/ui/components/user"
"github.com/jrnxf/gh-eco/ui/context"
"github.com/jrnxf/gh-eco/utils"
)

type Model struct {
Expand Down
4 changes: 2 additions & 2 deletions utils/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"strings"
"unicode"

"github.com/thatvegandev/gh-eco/api/github/queries"
"github.com/thatvegandev/gh-eco/ui/models"
"github.com/jrnxf/gh-eco/api/github/queries"
"github.com/jrnxf/gh-eco/ui/models"
)

func TruncateText(str string, max int) string {
Expand Down

0 comments on commit 55e16b0

Please sign in to comment.