-
Notifications
You must be signed in to change notification settings - Fork 361
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Statically Cache Marketplace Apps #9732
Merged
bnussman-akamai
merged 8 commits into
linode:develop
from
bnussman-akamai:poc/add-marketplace-apps-static-caching
Oct 3, 2023
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
55c5413
initial POC
bnussman e3427e5
Merge branch 'develop' into poc/add-marketplace-apps-static-caching
bnussman 14329eb
use `placeholderData` insted of `initalData`
bnussman 53e3172
clean up and approve
bnussman 7bf46e3
revert regions so unit tests don't fail
bnussman 5142435
fix flags import
bnussman 671d463
add changeset
bnussman 7489f7f
Merge branch 'develop' into poc/add-marketplace-apps-static-caching
bnussman File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@linode/manager": Added | ||
--- | ||
|
||
Statically Cache Marketplace Apps ([#9732](https://github.com/linode/manager/pull/9732)) |
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
import { StackScript } from '@linode/api-v4'; | ||
import React from 'react'; | ||
import { useLocation } from 'react-router-dom'; | ||
|
||
import { baseApps } from 'src/features/StackScripts/stackScriptUtils'; | ||
import { useFlags } from 'src/hooks/useFlags'; | ||
import { useStackScriptsOCA } from 'src/queries/stackscripts'; | ||
import { getQueryParamFromQueryString } from 'src/utilities/queryParams'; | ||
|
||
const trimOneClickFromLabel = (script: StackScript) => { | ||
return { | ||
...script, | ||
label: script.label.replace('One-Click', ''), | ||
}; | ||
}; | ||
|
||
export interface WithMarketplaceAppsProps { | ||
appInstances: StackScript[] | undefined; | ||
appInstancesError: string | undefined; | ||
appInstancesLoading: boolean; | ||
} | ||
|
||
export const withMarketplaceApps = <Props>( | ||
Component: React.ComponentType<Props & WithMarketplaceAppsProps> | ||
) => (props: Props) => { | ||
const location = useLocation(); | ||
const flags = useFlags(); | ||
|
||
const type = getQueryParamFromQueryString(location.search, 'type'); | ||
|
||
// Only enable the query when the user is on the Marketplace page | ||
const enabled = type === 'One-Click'; | ||
|
||
const { data, error, isLoading } = useStackScriptsOCA(enabled); | ||
|
||
const newApps = flags.oneClickApps || []; | ||
const allowedApps = Object.keys({ ...baseApps, ...newApps }); | ||
|
||
const filteredApps = (data ?? []).filter((script) => { | ||
return ( | ||
!script.label.match(/helpers/i) && allowedApps.includes(String(script.id)) | ||
); | ||
}); | ||
const trimmedApps = filteredApps.map((stackscript) => | ||
trimOneClickFromLabel(stackscript) | ||
); | ||
|
||
return React.createElement(Component, { | ||
...props, | ||
appInstances: trimmedApps, | ||
appInstancesError: error?.[0]?.reason, | ||
appInstancesLoading: isLoading, | ||
}); | ||
}; |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
so this will work for all stackscripts requests? (stackscripts + OCA)? Or just OCA because of the filter definition?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just Marketplace. This filter is a copy-paste of
oneClickFilter
(I don't think I can import it from TS into a JS file)I don't think we want to attempt StackScript caching because at that point we'd have to worry about pagination.