Skip to content

Commit 7717451

Browse files
deploy: 8254d60
0 parents  commit 7717451

File tree

3,437 files changed

+578919
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,437 files changed

+578919
-0
lines changed

.nojekyll

Whitespace-only changes.

assets/chrome-icon.png

1.84 KB
Loading

assets/csv_dl.svg

+18
Loading

assets/favicon.ico

544 Bytes
Binary file not shown.

assets/github-black-icon.png

1.67 KB
Loading

assets/github-white-icon.png

1.53 KB
Loading

assets/settings-icon.png

1.61 KB
Loading

assets/settings-icon_big.png

1.67 KB
Loading

assets/useful-forks-banner.png

47.6 KB
Loading

assets/useful-forks-logo.png

1.18 KB
Loading

css/bulma-badge.min.css

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/bulma.min.css

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/my-style.css

+100
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
:root {
2+
--uf-orange: #fca311;
3+
--uf-orange-dark: #c97e11;
4+
--uf-blue: #14213d;
5+
--uf-blue-dark: #0d1624;
6+
}
7+
8+
.button.is-uf-orange {
9+
background-color: var(--uf-orange);
10+
border-color: transparent;
11+
color: #fff;
12+
}
13+
.button.is-uf-orange:hover {
14+
background-color: var(--uf-orange-dark);
15+
border-color: transparent;
16+
color: #fff;
17+
}
18+
.button.is-uf-blue {
19+
background-color: var(--uf-blue);
20+
border-color: transparent;
21+
color: #fff;
22+
}
23+
.button.is-uf-blue:hover {
24+
background-color: var(--uf-blue-dark);
25+
border-color: transparent;
26+
color: #fff;
27+
}
28+
29+
#useful_forks_msg {
30+
text-align: center;
31+
margin-top: 20px;
32+
margin-bottom: 20px;
33+
}
34+
#useful_forks_header {
35+
text-align: center;
36+
margin-bottom: 35px;
37+
}
38+
#useful_forks_inject {
39+
margin-top: 20px;
40+
}
41+
42+
.uf_badge svg {
43+
display: table-cell;
44+
padding-top: 3px;
45+
}
46+
47+
tr:hover {
48+
background-color: #e2e2e2 !important;
49+
}
50+
tr:nth-child(odd) {
51+
background-color: #f5f5f5;
52+
}
53+
table {
54+
margin: 0 auto !important;
55+
}
56+
57+
#button-group {
58+
visibility: hidden;
59+
}
60+
61+
.search-container {
62+
min-width: 60%;
63+
max-width: 800px;
64+
display: inline-block;
65+
}
66+
67+
.allButFooter {
68+
min-height: calc(100vh - 200px);
69+
}
70+
71+
.navbar-item > img {
72+
margin-right: 8px;
73+
}
74+
.navbar-item {
75+
display: flex !important;
76+
align-items: center !important;
77+
}
78+
79+
@media screen and (max-width: 1023px) {
80+
.navbar-menu {
81+
background-color: #f5f5f5 !important; /* dropdown background */
82+
padding: 0 !important;
83+
}
84+
.navbar-menu .navbar-item:hover {
85+
background-color: #4a4a4a !important; /* dropdown hovered row */
86+
color: #f8f8f8 !important; /* hovered text color */
87+
}
88+
}
89+
90+
@media screen and (min-width: 769px) {
91+
.modal-card, .modal-content {
92+
width: 660px !important; /* dialogs width */
93+
}
94+
}
95+
96+
@media screen and (min-width: 769px) {
97+
.field-label.is-normal {
98+
padding-top: 0 !important; /* settings popup fields misaligned */
99+
}
100+
}

dist/main.js

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/main.js.LICENSE.txt

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/*!
2+
* is-plain-object <https://github.com/jonschlinkert/is-plain-object>
3+
*
4+
* Copyright (c) 2014-2017, Jon Schlinkert.
5+
* Released under the MIT License.
6+
*/

dist/main.js.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.html

+266
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,266 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
6+
<!-- Global site tag (gtag.js) - Google Analytics -->
7+
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-109668880-3"></script>
8+
<script>
9+
window.dataLayer = window.dataLayer || [];
10+
function gtag(){dataLayer.push(arguments);}
11+
gtag('js', new Date());
12+
gtag('config', 'UA-109668880-3');
13+
</script>
14+
<!-- Personal wrapper around Google Analytics Events dispatch calls -->
15+
<script type="text/javascript" src="src/analytics-wrapper.js" charset="utf-8"></script>
16+
17+
<meta charset="utf-8">
18+
<meta name="viewport" content="width=device-width, initial-scale=1" />
19+
<meta name="description" content="Find useful forks of GitHub projects" />
20+
21+
<meta property="og:type" content="website">
22+
<meta property="og:locale" content="en_US">
23+
<meta property="og:site_name" content="useful-forks">
24+
<meta property="og:title" content="useful-forks">
25+
<meta property="og:url" content="https://useful-forks.github.io/">
26+
<meta property="og:image" content="https://useful-forks.github.io/assets/useful-forks-banner.png">
27+
28+
<link rel="icon" href="assets/favicon.ico" />
29+
<link rel="apple-touch-icon" href="assets/favicon.ico" />
30+
<link rel="bookmark" href="assets/favicon.ico" />
31+
<link rel="shortcut icon" href="assets/favicon.ico" />
32+
33+
<link rel="stylesheet preload" href="css/my-style.css" as="style" />
34+
<link rel="stylesheet preload" href="css/bulma.min.css" as="style" />
35+
<link rel="stylesheet preload" href="css/bulma-badge.min.css" as="style" />
36+
37+
<title>Useful Forks</title>
38+
</head>
39+
40+
<body>
41+
42+
<!-- CSS trick to force footer at bottom -->
43+
<div class="allButFooter">
44+
45+
<!-- Navigation bar -->
46+
<nav class="navbar is-dark" style="z-index: 1">
47+
<div class="container">
48+
<div class="navbar-brand">
49+
50+
<!-- Left-side buttons which are always displayed -->
51+
<a class="navbar-item has-text-weight-bold"
52+
href="https://useful-forks.github.io/"
53+
onclick="ga_homeHeader();">
54+
<img src="assets/useful-forks-logo.png" alt="UsefulForks_logo" />
55+
Home
56+
</a>
57+
<a class="navbar-item has-text-weight-bold"
58+
href="https://github.com/useful-forks/useful-forks.github.io" target="_blank" rel="noopener noreferrer"
59+
onclick="ga_githubHeader();">
60+
<img src="assets/github-white-icon.png" alt="GitHub_logo" />
61+
Open-Source Project
62+
</a>
63+
64+
<!-- Dropdown button for smaller screens -->
65+
<div class="navbar-burger burger" data-target="uf-burger">
66+
<!-- Each `<span>` is a line in the burger icon -->
67+
<span></span>
68+
<span></span>
69+
<span></span>
70+
</div>
71+
</div>
72+
73+
<div id="uf-burger" class="navbar-menu">
74+
75+
<!-- Left-side buttons which will populate the Burger -->
76+
<div class="navbar-start">
77+
<a class="navbar-item has-text-weight-bold"
78+
href="https://chrome.google.com/webstore/detail/useful-forks/aflbdmaojedofngiigjpnlabhginodbf" target="_blank" rel="noopener noreferrer"
79+
onclick="ga_chromeHeader();">
80+
<img src="assets/chrome-icon.png" alt="Chrome_logo" />
81+
Chrome Extension
82+
</a>
83+
</div>
84+
85+
<!-- Right-side buttons which will populate the Burger -->
86+
<div class="navbar-end">
87+
<a id="addTokenBtn" class="navbar-item has-text-weight-bold"
88+
onclick="openTokenDialog();">
89+
<img src="assets/settings-icon.png" alt="Access Token" />
90+
Add an Access Token
91+
</a>
92+
</div>
93+
</div>
94+
</div>
95+
</nav>
96+
97+
<!-- Access Token popup -->
98+
<div class="modal" id="useful_forks_token_popup">
99+
<div class="modal-background"></div>
100+
<div class="modal-card">
101+
<header class="modal-card-head">
102+
<p id="modalTokenCardTitle" class="modal-card-title">Add a GitHub Access Token</p>
103+
<button class="delete is-large" aria-label="close"
104+
onclick="closeTokenDialog();"></button>
105+
</header>
106+
<section class="modal-card-body">
107+
<p><em>Useful Forks</em> uses the GitHub API to retrieve repository metadata. You may see this dialog because you have hit the
108+
<a href="https://docs.github.com/rest/rate-limit" target="_blank" rel="noopener noreferrer">
109+
GitHub API rate limit</a>.
110+
</p><br/>
111+
<p>To raise that limit (it increases it by almost 5000 calls per hour), you should provide a personal Access Token.</p><br/>
112+
<p>If you don't already have one, you can create one and paste its ID into the text-box below. The required scope is pre-configured by the "Create" button's link below.</p><br/>
113+
<label class="label">Access Token (will be stored in your browser's local storage):</label>
114+
<input class="input" id="tokenInput" placeholder="ghp_cNlVBvUMvtiFsko51b25zZTOOsiwg1L2XRz2" />
115+
</section>
116+
<footer class="modal-card-foot">
117+
<a href="https://github.com/settings/tokens/new?description=useful-forks%20(no%20scope%20required)" target="_blank" rel="noopener noreferrer"
118+
class="button is-uf-blue is-large is-fullwidth"
119+
onclick="ga_createToken();">
120+
Create
121+
</a>
122+
<a class="button is-uf-orange is-large is-fullwidth"
123+
onclick="saveTokenBtnClicked();">
124+
Save
125+
</a>
126+
</footer>
127+
</div>
128+
</div>
129+
130+
<!-- Query Settings popup -->
131+
<div class="modal" id="uf_settings_popup">
132+
<div class="modal-background"></div>
133+
<div class="modal-card">
134+
<header class="modal-card-head">
135+
<p class="modal-card-title">Customize query settings</p>
136+
<button class="delete is-large" aria-label="close"
137+
onclick="closeSettingsDialog();"></button>
138+
</header>
139+
<section class="modal-card-body">
140+
<p>Settings will be saved on your local browser and will apply to your future queries.</p><br/>
141+
142+
<!-- Relationship used for the commit diff count. -->
143+
<div class="field is-horizontal">
144+
<div class="field-label is-normal">
145+
<label class="label">Diff relative:</label>
146+
</div>
147+
<div class="field-body">
148+
<div class="field">
149+
<div class="control">
150+
<label class="radio">
151+
<input type="radio" name="rsvp" checked>
152+
Parent
153+
</label>
154+
<label class="radio" disabled>
155+
<input type="radio" name="rsvp" disabled>
156+
Source [WIP]
157+
</label>
158+
<label class="radio" disabled>
159+
<input type="radio" name="rsvp" disabled>
160+
Heuristic [WIP]
161+
</label>
162+
</div>
163+
<p class="help mb-2"><strong>Default is 'Parent'.</strong> Which repository, relative to the evaluated fork, should be used to calculate the commit diff ('ahead' and 'behind').</p>
164+
</div>
165+
</div>
166+
</div>
167+
168+
<!-- Export CSV button display. -->
169+
<div class="field is-horizontal">
170+
<div class="field-label is-normal">
171+
<label class="label">Export CSV:</label>
172+
</div>
173+
<div class="field-body">
174+
<div class="field">
175+
<div class="control">
176+
<label class="checkbox">
177+
<input type="checkbox" id="uf_settings_csv" checked>
178+
Display
179+
</label>
180+
</div>
181+
<p class="help mb-2"><strong>Default is checked.</strong> Determines whether to display or not the "<span class="is-family-monospace">Export table below as CSV</span>" button when a scan ends.</p>
182+
</div>
183+
</div>
184+
</div>
185+
186+
</section>
187+
<footer class="modal-card-foot">
188+
<a class="button is-uf-orange is-large is-fullwidth"
189+
onclick="saveSettingsBtnClicked();">
190+
Save
191+
</a>
192+
</footer>
193+
</div>
194+
</div>
195+
196+
<!-- The actual "body" where all the action happens -->
197+
<dev class="section">
198+
<div class="container has-text-centered">
199+
<div class="search-container">
200+
<div class="field has-addons">
201+
<p class="control">
202+
<a class="button is-dark is-outlined px-2"
203+
onclick="openSettingsDialog();">
204+
<img src="assets/settings-icon_big.png" alt="Settings" width="26" height="26"/>
205+
</a>
206+
</p>
207+
<div class="control is-expanded">
208+
<input class="input is-dark" type="text" id="repo" name="repo" placeholder="payne911/PieMenu" autofocus />
209+
</div>
210+
<p class="control">
211+
<button class="button is-dark is-outlined" id="searchBtn">
212+
<span title="GitHub API calls issued so far for this query" class="badge is-dark" id="totalApiCalls">0 calls</span>
213+
Find useful forks
214+
</button>
215+
</p>
216+
</div>
217+
<div class="control" id="filterContainer" hidden>
218+
<input class="input" type="text" id="filter" name="filter"
219+
title='There are aliases too (e.g. "a" for "ahead", "d" for the date, etc.). There is an implicit AND boolean operator in between each filter.'
220+
placeholder="Type your filter here. eg: ahead>=1 behind<5" />
221+
</div>
222+
</div>
223+
</div>
224+
<div class="container" id="useful_forks_inject">
225+
</div>
226+
</dev>
227+
228+
</div>
229+
230+
<!-- Footer -->
231+
<footer class="footer" style="background-color:white">
232+
<div class="container">
233+
<hr style="background-color:#dbdbdb; height: 1px" />
234+
<div style="float:left">
235+
If you like this project, feel free to
236+
<strong>
237+
<a href="https://github.com/useful-forks/useful-forks.github.io" target="_blank" rel="noopener noreferrer"
238+
onclick="ga_footerStar();">give it a ⭐</a>
239+
</strong>
240+
or
241+
<strong>
242+
<a href="https://chrome.google.com/webstore/detail/useful-forks/aflbdmaojedofngiigjpnlabhginodbf/reviews" target="_blank" rel="noopener noreferrer"
243+
onclick="ga_footerStar();">leave a review</a>
244+
</strong>
245+
</div>
246+
<div style="float: right">
247+
<a class="icon button is-white" href="mailto:jeremi.grenier.berthiaume@gmail.com"
248+
onclick="ga_footerEmail();">
249+
250+
</a>
251+
</div>
252+
</div>
253+
</footer>
254+
255+
<script type="text/javascript" src="src/lib/jquery-3.6.0.min.js"></script>
256+
<script type="text/javascript" src="src/token.js" charset="utf-8"></script>
257+
<script type="text/javascript" src="src/navbar-burger.js" charset="utf-8"></script>
258+
<script type="text/javascript" src="src/settings.js" charset="utf-8"></script>
259+
<script type="text/javascript" src="src/queries-init.js" charset="utf-8"></script>
260+
<script type="text/javascript" src="src/csv-export.js" charset="utf-8"></script>
261+
<!-- "queries-logic.js" gets transformed into "main.js" -->
262+
<script src="dist/main.js"></script>
263+
264+
</body>
265+
266+
</html>

0 commit comments

Comments
 (0)