Skip to content
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

Basic plugin details page #2351

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,14 @@

## Unreleased

### New features

- [#2351: Build the basic plugin details page](https://github.com/alphagov/govuk-prototype-kit/pull/2351)

## 13.16.0

### New features

-
- [#2384: Add format items filter to core filters](https://github.com/alphagov/govuk-prototype-kit/pull/2384)
- [#2382: Make any npm module a plugin via a proxy plugin config](https://github.com/alphagov/govuk-prototype-kit/pull/2382)

Expand Down
35 changes: 24 additions & 11 deletions cypress/e2e/plugins/plugin-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,22 +42,26 @@ function provePluginTemplatesUninstalled (plugin) {
}

function initiatePluginAction (action, plugin, pluginName, options = {}) {
if (action === 'install') {
cy.visit(managePluginsPagePath)
} else {
cy.visit(manageInstalledPluginsPagePath)
}
cy.visit(managePluginsPagePath)

if (pluginName) {
cy.get(`[data-plugin-package-name="${plugin}"]`)
.scrollIntoView()
.find('h4')
.find('a')
.contains(pluginName)
}

cy.get(`[data-plugin-package-name="${plugin}"]`)
.scrollIntoView()
.find('button')
.find('a')
.click()

if (action === 'update') {
cy.get('a')
.contains('Latest version:').click()
}

cy.get('button')
.contains(capitalize(action))
.click()

Expand All @@ -73,7 +77,7 @@ function provePluginInstalled (plugin, pluginName) {
if (pluginName) {
cy.get(`[data-plugin-package-name="${plugin}"]`)
.scrollIntoView()
.find('h4')
.find('a')
.contains(pluginName)
}

Expand All @@ -91,7 +95,7 @@ function provePluginUninstalled (plugin, pluginName) {
if (pluginName) {
cy.get(`[data-plugin-package-name="${plugin}"]`)
.scrollIntoView()
.find('h4')
.find('a')
.contains(pluginName)
}

Expand All @@ -108,7 +112,13 @@ function provePluginUpdated (plugin, pluginName) {
provePluginInstalled(plugin, pluginName)
cy.get(`[data-plugin-package-name="${plugin}"]`)
.scrollIntoView()
.find('button')
.find('a')
.click()

cy.get('a')
.contains('Latest version:').should('not.exist')

cy.get('button')
.contains(capitalize('update')).should('not.exist')
}

Expand All @@ -117,10 +127,13 @@ function provePluginInstalledOldVersion (plugin, pluginName) {
if (pluginName) {
cy.get(`[data-plugin-package-name="${plugin}"]`)
.scrollIntoView()
.find('h4')
.find('a')
.contains(pluginName)
}

cy.get(`[data-plugin-package-name="${plugin}"] strong.govuk-tag`)
.contains('Update available')

cy.get('#installed-plugins-link').click()

cy.get(`[data-plugin-package-name="${plugin}"]`)
Expand Down
19 changes: 19 additions & 0 deletions lib/assets/sass/manage-prototype.scss
Original file line number Diff line number Diff line change
Expand Up @@ -440,6 +440,15 @@ body .govuk-prototype-kit-manage-prototype-govuk-tag {
padding-left: 0 !important;
}

.govuk-prototype-kit-manage-prototype-plugin-heading {
margin-bottom: 0;
}

.govuk-prototype-kit-manage-prototype-plugin-sub-heading {
color: #505a5f;
margin-bottom: 15px;
}

.govuk-prototype-kit-manage-prototype-plugin-list-plugin-list {
border-top: 1px solid #b1b4b6;
margin-bottom: 2em;
Expand Down Expand Up @@ -524,6 +533,9 @@ body .govuk-prototype-kit-manage-prototype-govuk-tag {

@media(min-width: 40.0525em) {
.govuk-prototype-kit-manage-prototype-plugin-list-plugin-list__item-buttons {
.govuk-button-group {
margin-bottom: 0;
}
.govuk-button, .govuk-link--no-visited-state {
margin: 0 15px 0 0;
}
Expand Down Expand Up @@ -574,3 +586,10 @@ body .govuk-prototype-kit-manage-prototype-govuk-tag {
}
}
}

.govuk-prototype-kit-manage-prototype-plugin-details-links {
padding-top: 20px;
margin-bottom: 20px;
border-top: 2px solid #b1b4b6;
border-bottom: 2px solid #b1b4b6;
}
54 changes: 47 additions & 7 deletions lib/manage-prototype-handlers.js
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ function getTemplatesPostInstallHandler (req, res) {
}))
}

function buildPluginData (pluginData) {
function buildPluginData (pluginData, isLatest) {
if (pluginData === undefined) {
return
}
Expand All @@ -417,22 +417,25 @@ function buildPluginData (pluginData) {
installedVersion,
required,
localVersion,
pluginConfig = {}
pluginConfig = {},
latestPluginConfig
} = pluginData
const meta = isLatest ? latestPluginConfig?.meta || pluginConfig?.meta : pluginConfig?.meta
const preparedPackageNameForDisplay = plugins.preparePackageNameForDisplay(packageName)
return {
...preparedPackageNameForDisplay,
...pluginConfig.meta,
...meta,
packageName,
latestVersion,
installedLocally,
installLink: `${contextPath}/plugins/install?package=${encodeURIComponent(packageName)}`,
installLink: installedVersion ? undefined : `${contextPath}/plugins/install?package=${encodeURIComponent(packageName)}`,
installCommand: `npm install ${packageName}`,
updateLink: updateAvailable ? `${contextPath}/plugins/update?package=${encodeURIComponent(packageName)}` : undefined,
updateCommand: latestVersion && `npm install ${packageName}@${latestVersion}`,
uninstallLink: installed && !required ? `${contextPath}/plugins/uninstall?package=${encodeURIComponent(packageName)}${installedLocally ? `&version=${encodeURIComponent(localVersion)}` : ''}` : undefined,
uninstallCommand: `npm uninstall ${packageName}`,
installedVersion
installedVersion,
inThisPlugin: getInThisPluginDetails(isLatest ? latestPluginConfig || pluginConfig : pluginConfig)
}
}

Expand All @@ -457,7 +460,7 @@ async function prepareForPluginPage (isInstalledPage, search) {
status: isInstalledPage ? 'installed' : 'search',
plugins: plugins.map(buildPluginData),
found: plugins.length,
updates: installedPlugins.filter(plugin => plugin.updateAvailable).length
updates: installedPlugins.filter(plugin => !plugin.installedLocally && plugin.updateAvailable).length
}
}

Expand Down Expand Up @@ -589,6 +592,24 @@ async function getPluginForRequest (req) {
return chosenPlugin
}

function getInThisPluginDetails (pluginConfig) {
const { nunjucksMacros = [], templates = [] } = pluginConfig || {}
const list = []
if (nunjucksMacros?.length) {
list.push({
title: 'Components',
items: nunjucksMacros.map(({ macroName }) => macroName)
})
}
if (templates?.length) {
list.push({
title: 'Templates',
items: templates.map(({ name }) => name)
})
}
return list
}

function modeIsComplete (mode, { installedVersion, latestVersion, version, installedLocally }) {
switch (mode) {
case 'update':
Expand Down Expand Up @@ -749,6 +770,24 @@ async function postPluginsModeHandler (req, res) {
res.json({ status })
}

async function getPluginDetailsHandler (req, res) {
const packageName = req.query.package
const isLatest = req.route.path.split('/').pop() === 'latest'
const latestLink = isLatest ? '' : req.originalUrl.replace('?', '/latest?')
const installedLink = isLatest ? req.originalUrl.replace('/latest?', '?') : ''
const plugin = await lookupPackageInfo(packageName)
const { name, scope, installedVersion, latestVersion, ...pluginData } = buildPluginData(plugin, isLatest)
const viewData = {
...pluginData,
installedVersion,
latestVersion,
latestLink,
installedLink,
plugin: { name, scope, version: latestLink ? installedVersion || latestVersion : latestVersion }
}
res.send(nunjucksManagementEnv.render(getManagementView('plugin-details.njk'), viewData))
}

module.exports = {
contextPath,
setKitRestarted,
Expand All @@ -772,5 +811,6 @@ module.exports = {
getPluginsModeHandler,
postPluginsStatusHandler,
postPluginsModeMiddleware,
postPluginsModeHandler
postPluginsModeHandler,
getPluginDetailsHandler
}
30 changes: 29 additions & 1 deletion lib/manage-prototype-handlers.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ const {
postTemplatesInstallHandler,
getTemplatesPostInstallHandler,
getPluginsHandler,
getPluginDetailsHandler,
postPluginsStatusHandler,
postPluginsModeMiddleware,
getPluginsModeHandler,
Expand Down Expand Up @@ -453,7 +454,8 @@ describe('manage-prototype-handlers', () => {
name: pluginDisplayName.name,
packageName,
uninstallCommand: `npm uninstall ${packageName}`,
updateCommand: `npm install ${packageName}@${latestVersion}`
updateCommand: `npm install ${packageName}@${latestVersion}`,
inThisPlugin: []
}

beforeEach(() => {
Expand Down Expand Up @@ -521,6 +523,32 @@ describe('manage-prototype-handlers', () => {
expect(res.redirect).toHaveBeenCalledWith(fullPath + '?search=' + search)
})

describe('getPluginDetailsHandler', () => {
it('plugins installed', async () => {
fse.readJsonSync.mockReturnValue(undefined)
req.route.path = 'plugins-installed'
await getPluginDetailsHandler(req, res)
expect(mockNunjucksRender).toHaveBeenCalledWith(
'views/manage-prototype/plugin-details.njk',
expect.objectContaining({
packageName: 'test-package',
installLink: '/manage-prototype/plugins/install?package=test-package',
installCommand: 'npm install test-package',
updateCommand: 'npm install [email protected]',
uninstallCommand: 'npm uninstall test-package',
inThisPlugin: [],
latestVersion: '2.0.0',
latestLink: '/current-url',
installedLink: '',
plugin: {
name: 'Test Package',
version: '2.0.0'
}
})
)
})
})

it('getPluginsModeHandler', async () => {
req.params.mode = 'install'
req.query.package = packageName
Expand Down
6 changes: 5 additions & 1 deletion lib/manage-prototype-routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ const {
postPluginsModeHandler,
postPluginsStatusHandler,
pluginCacheMiddleware,
postPluginsHandler
postPluginsHandler,
getPluginDetailsHandler
} = require('./manage-prototype-handlers')
const { packageDir, projectDir } = require('./utils/paths')
const { govukFrontendPaths } = require('./govukFrontendPaths')
Expand Down Expand Up @@ -79,6 +80,9 @@ router.post('/plugins/:mode', postPluginsModeMiddleware)

router.post('/plugins/:mode', csrfProtection, postPluginsModeHandler)

router.get('/plugin-details/latest', getPluginDetailsHandler)
router.get('/plugin-details', getPluginDetailsHandler)

// Find GOV.UK Frontend (via internal package, project fallback)
router.use('/dependencies/govuk-frontend', express.static(
govukFrontendPaths([packageDir, projectDir]).baseDir)
Expand Down
2 changes: 1 addition & 1 deletion lib/nunjucks/views/manage-prototype/index.njk
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</p>
{% if kitUpdateAvailable %}
<p>
<a href="{{ currentUrl }}/plugins">
<a href="{{ currentUrl }}/plugin-details?package=govuk-prototype-kit">
New version available: {{ latestAvailableKit }}
</a>
</p>
Expand Down
Loading