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

Add an "export wins have now moved" banner to company export tab #7184

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
26 changes: 24 additions & 2 deletions src/client/components/CompanyLocalHeader/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,27 @@ const hasAllocatedLeadIta = (company) =>
const hasManagedAccountDetails = (company) =>
company.oneListGroupTier && hasAllocatedLeadIta(company)

const DATA_HUB_HAS_MOVED_LINK =
'https://data-services-help.trade.gov.uk/data-hub/updates/announcements/export-wins-has-moved-to-data-hub/'

const DATA_HUB_HAS_MOVED_MESSAGE = (
<>
Historic export wins have now moved to Data Hub,{' '}
<Link
href={DATA_HUB_HAS_MOVED_LINK}
target="_blank"
rel="noopener noreferrer"
aria-label="See the export wins announcement"
>
see the export wins announcement
</Link>
.
</>
)

const CompanyLocalHeader = ({
breadcrumbs,
flashMessages,
flashMessages = [],
company,
csrfToken,
}) =>
Expand All @@ -133,7 +151,11 @@ const CompanyLocalHeader = ({
company.id,
company.name
)}
flashMessages={flashMessages}
flashMessages={
breadcrumbs[0]?.text === 'Exports'
? [[DATA_HUB_HAS_MOVED_MESSAGE, ...flashMessages]]
: flashMessages
}
>
<GridRow>
<GridCol setWidth="two-thirds">
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
const { company } = require('../../fixtures')
const urls = require('../../../../../src/lib/urls')

describe('Export wins moved banner', () => {
it('There should be a banner informing about export wins moving to Data Hub on the company page', () => {
cy.visit(urls.companies.exports.index(company.dnbCorp.id))

cy.get('[data-test="status-message"')
.should(
'have.text',
'Historic export wins have now moved to Data Hub, see the export wins announcement.'
)
.within(() => {
cy.contains('a', 'see the export wins announcement').should(
'have.attr',
'href',
'https://data-services-help.trade.gov.uk/data-hub/updates/announcements/export-wins-has-moved-to-data-hub/'
)
})
})

describe("There should't be a banner in the other tabs", () => {
;[
'overview',
'activity',
'business-details',
'contacts',
'account-management',
'investments/projects',
'orders',
].forEach((slug) =>
it(slug, () => {
cy.visit(`/companies/${company.dnbCorp.id}/${slug}`)

// We need to wait for company name appear...
cy.contains(company.dnbCorp.name)

// ...so that this waits for whent the data has been loaded and rendered
cy.contains('Historic export wins have now moved to Data Hub').should(
'not.exist'
)
})
)
})
})
Loading