-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ Quantumcast ] - New Command "Open Cloudflow API Docs" (#6089)
* Update quantumcast extension - Release 0.0.2 (#8) - release 0.0.1 (#5) - Modified CHANGELOG (#4) - Merge initial release 0.0.1 (#3) - Dev (#2) - npm update (#1) - Added logos - Initial project setup - Update README.md - Initial commit * Update quantumcast extension - eslint mod - V0.0.3 (#10) - V0.0.3 (#9) * Update quantumcast extension - Add category - eslint mod - V0.0.3 (#10) - V0.0.3 (#9) * Update open-cloudflow-api-docs.tsx * Update open-cloudflow-api-docs.tsx --------- Co-authored-by: Per Nielsen Tikær <[email protected]>
- Loading branch information
1 parent
41998ab
commit b8d5b52
Showing
10 changed files
with
111 additions
and
80 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,18 @@ | ||
# Quantumcast Changelog | ||
|
||
## [0.0.2] - 2023-04-18 | ||
|
||
✨ New | ||
|
||
- Adding new command `Open Cloudflow Workspace` | ||
## [0.0.3] - 2023-04-21 | ||
|
||
💎 Improvements | ||
- ✨ New - Adding new command `Open Cloudflow API Documentation` | ||
- 💎 Improvements - Update package `quantumlib` to v0.0.9 | ||
|
||
- Update package `quantumlib` to v0.0.8 | ||
- Update package `@raycast/api` to v1.49.3 | ||
- Redesign the README | ||
|
||
🐞 Fixes | ||
## [0.0.2] - 2023-04-18 | ||
|
||
- Fixed some typos in list titles | ||
- ✨ New - Adding new command `Open Cloudflow Workspace` | ||
- 💎 Improvements - Update package `quantumlib` to v0.0.8 | ||
- 💎 Improvements - Update package `@raycast/api` to v1.49.3 | ||
- 💎 Improvements - Redesign the README | ||
- 🐞 Fixes - Fixed some typos in list titles | ||
|
||
## [0.0.1] - 2023-02-25 | ||
|
||
✨ New | ||
|
||
- Initial release 🥳 | ||
- ✨ New - Initial release 🥳 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,25 @@ | ||
import { List, Action, ActionPanel, getPreferenceValues } from '@raycast/api'; | ||
import { cloudflow } from 'quantumlib'; | ||
|
||
export default function Command() { | ||
const { cloudflowBaseUrl } = getPreferenceValues(); | ||
|
||
return ( | ||
<List searchBarPlaceholder="Select a documentation to open"> | ||
{cloudflow.getApiDocumentations(cloudflowBaseUrl).map((doc) => ( | ||
<List.Item | ||
id={doc.name} | ||
key={doc.name} | ||
title={doc.name} | ||
icon="quantumcast.png" | ||
accessories={[{ text: doc.location }]} | ||
actions={ | ||
<ActionPanel title="Quantumcast - API Documentation"> | ||
<Action.OpenInBrowser url={`${doc.url}`} /> | ||
</ActionPanel> | ||
} | ||
/> | ||
))} | ||
</List> | ||
); | ||
} |
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