-
-
Notifications
You must be signed in to change notification settings - Fork 218
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
43 changed files
with
1,512 additions
and
255 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -178,6 +178,9 @@ | |
} | ||
.buttons { | ||
padding: 0.7em 0; | ||
.btn { | ||
margin-left: 5px; | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,195 @@ | ||
import NiceModal, { useModal } from "@ebay/nice-modal-react"; | ||
import * as React from "react"; | ||
import { useState } from "react"; | ||
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; | ||
import { | ||
faCircleQuestion, | ||
faRssSquare, | ||
} from "@fortawesome/free-solid-svg-icons"; | ||
import Tooltip from "react-tooltip"; | ||
|
||
type BaseOptionProps = { | ||
label: string; | ||
key: string; | ||
tooltip?: string; | ||
}; | ||
|
||
type DropdownOption = BaseOptionProps & { | ||
type: "dropdown"; | ||
values: { id: string; value: string; displayValue?: string }[]; | ||
defaultIndex?: number; | ||
}; | ||
|
||
type NumberOption = BaseOptionProps & { | ||
type: "number"; | ||
min?: number; | ||
max?: number; | ||
defaultValue: number; | ||
}; | ||
|
||
export type SyndicationFeedModalProps = { | ||
feedTitle: string; | ||
options: (DropdownOption | NumberOption)[]; | ||
baseUrl: string; | ||
}; | ||
|
||
type SelectedOptions = { | ||
[key: string]: string; | ||
}; | ||
|
||
export default NiceModal.create((props: SyndicationFeedModalProps) => { | ||
const modal = useModal(); | ||
const closeModal = React.useCallback(() => { | ||
modal.hide(); | ||
document?.body?.classList?.remove("modal-open"); | ||
setTimeout(modal.remove, 200); | ||
}, [modal]); | ||
|
||
const { feedTitle, options, baseUrl } = props; | ||
|
||
const initialSelectedOptions: SelectedOptions = options.reduce( | ||
(acc: SelectedOptions, option) => { | ||
if (option.type === "number") { | ||
acc[option.key] = option.defaultValue.toString(); | ||
} else { | ||
const defaultIndex = option.defaultIndex ?? 0; | ||
acc[option.key] = option.values[defaultIndex].value; | ||
} | ||
return acc; | ||
}, | ||
{} | ||
); | ||
|
||
const [selectedOptions, setSelectedOptions] = React.useState<SelectedOptions>( | ||
initialSelectedOptions | ||
); | ||
|
||
const [copyButtonText, setCopyButtonText] = useState("Copy"); | ||
|
||
const handleOptionChange = (key: string, value: string) => { | ||
setSelectedOptions((prevSelectedOptions) => ({ | ||
...prevSelectedOptions, | ||
[key]: value, | ||
})); | ||
}; | ||
|
||
const buildLink = () => { | ||
const queryParams = new URLSearchParams(selectedOptions).toString(); | ||
return queryParams ? `${baseUrl}?${queryParams}` : baseUrl; | ||
}; | ||
|
||
const handleCopyClick = () => { | ||
navigator.clipboard.writeText(buildLink()).then(() => { | ||
setCopyButtonText("Copied"); | ||
|
||
setTimeout(() => { | ||
setCopyButtonText("Copy"); | ||
}, 2000); | ||
}); | ||
}; | ||
|
||
return ( | ||
<div | ||
id="SyndicationFeedModal" | ||
className={`modal fade ${modal.visible ? "in" : ""}`} | ||
tabIndex={-1} | ||
role="dialog" | ||
aria-labelledby="syndicationFeedModalLabel" | ||
data-backdrop="static" | ||
> | ||
<div | ||
className="modal-dialog" | ||
role="document" | ||
style={{ maxWidth: "800px" }} | ||
> | ||
<div className="modal-content"> | ||
<div className="modal-header"> | ||
<button | ||
type="button" | ||
className="close" | ||
data-dismiss="modal" | ||
aria-label="Close" | ||
onClick={closeModal} | ||
> | ||
<span aria-hidden="true">×</span> | ||
</button> | ||
<h4 className="modal-title" id="syndicationFeedModalLabel"> | ||
<FontAwesomeIcon icon={faRssSquare} /> | ||
Syndication feed: {feedTitle} | ||
</h4> | ||
</div> | ||
|
||
<div className="modal-body"> | ||
{options.map((option) => ( | ||
<div className="form-group" key={option.key}> | ||
<label htmlFor={option.key}> | ||
{option.label} | ||
{option.tooltip && ( | ||
<> | ||
| ||
<FontAwesomeIcon | ||
icon={faCircleQuestion} | ||
data-tip={option.tooltip} | ||
/> | ||
<Tooltip place="right" type="dark" effect="solid" /> | ||
</> | ||
)} | ||
</label> | ||
{option.type === "dropdown" && ( | ||
<select | ||
className="form-control" | ||
id={option.key} | ||
onChange={(e) => | ||
handleOptionChange(option.key, e.target.value) | ||
} | ||
defaultValue={selectedOptions[option.key]} | ||
> | ||
{option.values.map((value) => ( | ||
<option key={value.id} value={value.value}> | ||
{value.displayValue || value.value} | ||
</option> | ||
))} | ||
</select> | ||
)} | ||
{option.type === "number" && ( | ||
<input | ||
type="number" | ||
className="form-control" | ||
id={option.key} | ||
value={selectedOptions[option.key]} | ||
min={option.min} | ||
max={option.max} | ||
onChange={(e) => | ||
handleOptionChange(option.key, e.target.value) | ||
} | ||
/> | ||
)} | ||
</div> | ||
))} | ||
<div className="form-group"> | ||
<label htmlFor="feedLink">Subscription URL</label> | ||
<div style={{ display: "flex", alignItems: "center" }}> | ||
<input | ||
type="text" | ||
className="form-control" | ||
id="feedLink" | ||
value={buildLink()} | ||
readOnly | ||
style={{ marginRight: "10px", flexGrow: 1 }} | ||
/> | ||
<button | ||
type="button" | ||
className="btn btn-info btn-sm" | ||
onClick={handleCopyClick} | ||
style={{ minWidth: "100px", height: "34px" }} | ||
> | ||
{copyButtonText} | ||
</button> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}); |
Oops, something went wrong.