Skip to content

Commit 959c8fc

Browse files
committed
Modal UI tweaks
1 parent 8ffd027 commit 959c8fc

File tree

3 files changed

+16
-6
lines changed

3 files changed

+16
-6
lines changed

src/components/LoadModal.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from "react";
2-
import { X, Edit2 } from "react-feather";
2+
import { X, Edit2, Trash2 } from "react-feather";
33

44
export const LoadModal = ({ setShowModal, customPatterns, setCustomPatterns, setPattern }) => {
55
const handleDelete = (id) => {
@@ -37,7 +37,7 @@ export const LoadModal = ({ setShowModal, customPatterns, setCustomPatterns, set
3737
<Edit2 size="1rem" />
3838
</div>
3939
<div className="btn delete" onClick={() => handleDelete(pattern.id)}>
40-
<X size="1rem" />
40+
<Trash2 size="1rem" />
4141
</div>
4242
</div>
4343
);

src/components/MorePatternsModal.js

+12-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React, { useState } from "react";
2-
import { DownloadCloud, X, XOctagon } from "react-feather";
2+
import { DownloadCloud, Trash2, X, XOctagon } from "react-feather";
33

44
export const MorePatternsModal = ({ setShowModal, collections, setCollections, patterns, setPatterns, groks }) => {
55
const urlRegex =
@@ -54,6 +54,15 @@ export const MorePatternsModal = ({ setShowModal, collections, setCollections, p
5454
<X size="1.25rem" onClick={() => setShowModal(null)} />
5555
</div>
5656
<form>
57+
<p style={{ marginTop: 0 }}>
58+
This will make a request to the URL inputted below and attempt to load the patterns from the repsonse. See
59+
the
60+
<a style={{ color: "#89ddff" }} href="https://github.com/cjslack/grok-debugger/tree/master/public/patterns">
61+
{" "}
62+
pattern repository
63+
</a>{" "}
64+
for example files.
65+
</p>
5766
<div className="modal-content">
5867
{errorMessage && (
5968
<div className="notification error">
@@ -71,7 +80,6 @@ export const MorePatternsModal = ({ setShowModal, collections, setCollections, p
7180
/>
7281
<input
7382
style={{ marginTop: 10 }}
74-
autoFocus={true}
7583
name="title"
7684
placeholder="Title"
7785
maxLength={20}
@@ -90,7 +98,7 @@ export const MorePatternsModal = ({ setShowModal, collections, setCollections, p
9098
<>
9199
<hr style={{ marginTop: "12px" }} />
92100
<div>
93-
<h3>Loaded Sets</h3>
101+
<h3>Downloaded Sets</h3>
94102
<div>
95103
{collections
96104
.filter((c) => c.url)
@@ -99,7 +107,7 @@ export const MorePatternsModal = ({ setShowModal, collections, setCollections, p
99107
<div className="set-item" key={c.value}>
100108
<div>{c.label}</div>
101109
<div className="btn delete" onClick={() => handleDelete(c.value)}>
102-
<X size="1rem" />
110+
<Trash2 size="1rem" />
103111
</div>
104112
</div>
105113
);

src/components/ShareModal.js

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ export const ShareModal = ({ setShowModal, pattern, sample }) => {
1212
const onLoad = async () => {
1313
setUrl(
1414
window.location.origin + "?pattern=" + encodeURIComponent(pattern) + "&sample=" + encodeURIComponent(sample)
15+
// + "&collections=" +
16+
// encodeURIComponent(JSON.stringify(collections.filter((c) => c.active)))
1517
);
1618
};
1719

0 commit comments

Comments
 (0)