CodeNewbie Community ๐ŸŒฑ

Cover image for Be a dev detective with Sourcegraph ๐Ÿ”
Estee Tey
Estee Tey

Posted on • Originally published at esteetey.dev

Be a dev detective with Sourcegraph ๐Ÿ”

In this article, I will show you a simple scenario where you can learn how to utilize Sourcegraph to:

  1. Figure out the library of an unfamiliar UI component & use it in a project
  2. Find other projects that use this UI component
  3. Monitor for new projects & revisit searches

Figuring out an unfamiliar UI component

This component is something that I have not seen in any of the design system libraries that I've used. I first found it on Dremio.

Dremio.gif

There is an interactive slider in the centre of the container, and 2 very well designed images are presented in stark contrast next to each other. Notice the light/dark color scheme, and the use of same shapes in both images. This is a really smart way of using this component to showcase the different aspects & features of the services that they offer!

Putting the images aside, I didn't know of the name of the component so I didn't know how to exactly Google this thing.

๐Ÿ” To get some clues, let's once again use the Browser Inspector.

Inspecting the element

Inspecting Dremio component.png

There's a funny repeated class name called twentytwenty ๐Ÿค”. Normally developers who make their own custom UI would use Semantic Class Naming rather than a vague name like this. This gives us grounds to deduce that...

๐Ÿ‘‰ this classname is provided for a library implementation.

Now let's use Sourcegraph, a universal code search tool to look for this library, since we don't know whether the library is available on GitHub/ GitLab or etc.

Search for the library with Sourcegraph

Sourcegraph can be accessed here.

๐Ÿ” Let's try to find the library using the query repo: twentytwenty

Sourcegraph demo.png

Bingo! We got a few repositories with the description of "image comparison" which tallies to what the component does. From a glance, we can also see that this component is compatible with the following libraries:

  • jquery (1.2k โญ)
  • Vue (197 โญ)
  • React (40 โญ)

Once we click on one of the repositories, we can see that we can navigate the whole project within Sourcegraph itself โœจ There's also a handy icon for us to go the original GitHub repository if we wish to watch/star the repository.

Sourcegraph demo ii.png

Using the library

Following the setup instructions in the README for the Vue version of the component, I was able to spurn up the component very easily on codepen, using a neko ๐Ÿฑ and doggo ๐Ÿถ image, similar to what we saw on Dremio.

And that is how you can add this image slider UI to your own project too! If you're using React or jquery, you can check out the other 2 repositories instead. Although Dremio already shows a very good use case of the TwentyTwenty component, it will be cool for us to find out other creative ways of using this component too.

Search for other projects that used the component

๐Ÿ” To search for other projects that use this component, we can construct a different search query that comprise of 3 filters

  1. select:repo
    • by default, Sourcegraph gives us search results in terms of the files where they find relevant content. however, we only want to know the projects, in other words the repositories that uses the component
  2. -repo:^github\.com/.*/.*twentytwenty
    • the repo search filter takes in a regex pattern
    • we want to exclude the repositories that provide the UI component such as react-twentytwenty, vue-twentytwenty and so on, so the search filter becomes -repo
  3. content:"twentytwenty-container"
    • we want the projects to include usage of the twentytwenty-container classname like how Dremio did it.
    • you could try with just twentytwenty, but you will get search results irrelevant to this component as well, because there is a widely used official Wordpress theme called TwentyTwenty too.

Combining all three, we get this search query.

select:repo -repo:^github\.com/.*/.*twentytwenty content:"twentytwenty-container"
Enter fullscreen mode Exit fullscreen mode

If you copy and paste it into Sourcegraph, you will get the following search results.

image.png

These repositories are all using the the TwentyTwenty component! However, we can't tell at a glance about the framework of each project that are listed in the search results. Most of these results would be using the jQuery plugin version of the component, since the component was first created as that plugin. But what if your project doesn't use jQuery?

Finding a specific framework project

For example, say you are working on a Vue project, it would be more relevant to find projects of the same framework that use this component and check out how they implement it in code.

๐Ÿ” To do this, you can add an extra search filter lang: Vue, which creates the combined query below.

select:repo -repo:^github\.com/.*/.*twentytwenty content:"twentytwenty-container" lang:Vue
Enter fullscreen mode Exit fullscreen mode

When you run this search query, as of this post, there is only 1 project out of the 72 that we found just now that is Vue.

image.png

In this open source font project Victor Mono, they created a Vue website app that uses the TwentyTwenty component to showcase the difference between the font they offer and the other common programming fonts. It's a pretty cool use case ๐Ÿ˜Ž!

VictorMono TwentyTwenty Component Usage Demo.gif

Won't it be nice if you could get notified in the future when there are new open source projects that are using creative usages of Vue projects using this component?

Well, Sourcegraph comes with this functionality! โœจ

Code Monitoring

To save your searches and monitor code, you would need to create an account with Sourcegraph. You can sign up easily using the GitHub authentication feature.

To create a code monitor, you can click on "Monitoring" at the NavBar.

First, you have to create a new trigger based on a search query. We can copy paste the query we had before, and then add a new filter type:diff.

select:repo -repo:^github\.com/.*/.*twentytwenty content:"twentytwenty-container" lang:Vue type:diff patternType:literal
Enter fullscreen mode Exit fullscreen mode
  • This new filter is required to tell the code monitor when to notify you.
  • type:diff represents you

image.png

Then we have to choose an action to run. For now, there's only "Send email notifications", so choose that option and continue. You can also click on "Send test email" to see how the notification will be like.

image.png

This is the test email that I got.

Test Email by Sourcegraph

After filling all the necessary inputs, the "Create code monitor" button will be clickable.

image.png

Save a search

To save a search and revisit it manually later, there are 2 ways you can reach the Saved Searches page.

  1. First way: Click on your profile and then on "Saved Searches" image.png
  2. Second way: Click on the "Save Search" button after you run a query at the search page. image.png

Then you will be brought to this page, where you can add a description for the query that you are saving.

image.png

For a more exhaustive list of search query syntax to craft more detailed queries, check out the Sourcegraph documentation for Search Query Syntax.

That's a wrap folks! ๐ŸŽ‰

birds excited

Thank you for reading, hope you enjoyed the article to become a better dev detective with Sourcegraph! This is just a very simple use case of how you can utilize Sourcegraph to learn of new libraries like TwentyTwenty and how other projects have used them. Imagine other possibilities you could do with this powerful search tool! โœจ

If you find the article awesome, hit the reactions ๐Ÿงก and share it ๐Ÿฆ~

To stay updated whenever I post new stuff, follow me on Twitter.

Oldest comments (0)