-
Notifications
You must be signed in to change notification settings - Fork 18
47998 frontend [ templates ] Show Draft for inactive templates without integrations #260
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
Open
aicarma-artyom-maslov
wants to merge
3
commits into
master
Choose a base branch
from
frontend/templates/47998__fix_inactive_template_card
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
e7f4059
47998 fix(templates): show Draft for inactive templates without integ…
aicarma-artyom-maslov f7c95fe
47998 fix(templates): scope webhook exclusion to card badge only
aicarma-artyom-maslov 240ff07
47998 fix(templates): show Draft for cards without integrations
aicarma-artyom-maslov 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 hidden or 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 hidden or 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
15 changes: 15 additions & 0 deletions
15
frontend/src/public/components/Templates/TemplatesUser/types.ts
This file contains hidden or 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
40 changes: 40 additions & 0 deletions
40
frontend/src/public/components/Templates/utils/__tests__/templateIntegrations.test.ts
This file contains hidden or 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,40 @@ | ||
| import { EIntegrations } from '../../../../types/integrations'; | ||
|
|
||
| import { checkShowDraftTemplateWarning } from '../checkShowDraftTemplateWarning'; | ||
| import { hasTemplateCardIntegrations } from '../templateIntegrations'; | ||
|
|
||
| describe('hasTemplateCardIntegrations', () => { | ||
| it('returns false when template has no integrations', () => { | ||
| expect(hasTemplateCardIntegrations([])).toBe(false); | ||
| }); | ||
|
|
||
| it('returns false when template has only account-wide webhooks', () => { | ||
| expect(hasTemplateCardIntegrations([EIntegrations.Webhooks])).toBe(false); | ||
| }); | ||
|
|
||
| it('returns true when template has connected integrations', () => { | ||
| expect(hasTemplateCardIntegrations([EIntegrations.API])).toBe(true); | ||
| }); | ||
| }); | ||
|
|
||
| describe('checkShowDraftTemplateWarning', () => { | ||
| it('returns false for active template', () => { | ||
| expect(checkShowDraftTemplateWarning(true, true, [EIntegrations.API])).toBe(false); | ||
| }); | ||
|
|
||
| it('returns false for inactive template without integrations', () => { | ||
| expect(checkShowDraftTemplateWarning(false, false, [])).toBe(false); | ||
| }); | ||
|
|
||
| it('returns true for inactive public template', () => { | ||
| expect(checkShowDraftTemplateWarning(false, true, [])).toBe(true); | ||
| }); | ||
|
|
||
| it('returns true for inactive template with integrations', () => { | ||
| expect(checkShowDraftTemplateWarning(false, false, [EIntegrations.Zapier])).toBe(true); | ||
| }); | ||
|
|
||
| it('returns true for inactive template with only webhooks', () => { | ||
| expect(checkShowDraftTemplateWarning(false, false, [EIntegrations.Webhooks])).toBe(true); | ||
| }); | ||
| }); | ||
8 changes: 4 additions & 4 deletions
8
frontend/src/public/components/Templates/utils/checkShowDraftTemplateWarning.ts
This file contains hidden or 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,10 +1,10 @@ | ||
| import { EIntegrations } from "../../../types/integrations"; | ||
| import { isArrayWithItems } from "../../../utils/helpers"; | ||
| import { EIntegrations } from '../../../types/integrations'; | ||
| import { isArrayWithItems } from '../../../utils/helpers'; | ||
|
|
||
| export function checkShowDraftTemplateWarning( | ||
| isTemplateActive: boolean, | ||
| isTemplatePublic: boolean, | ||
| templateIntegrations: EIntegrations[] | ||
| templateIntegrations: EIntegrations[], | ||
| ) { | ||
| return !isTemplateActive && (isArrayWithItems(templateIntegrations) || isTemplatePublic); | ||
| return !isTemplateActive && (isTemplatePublic || isArrayWithItems(templateIntegrations)); | ||
| } |
10 changes: 10 additions & 0 deletions
10
frontend/src/public/components/Templates/utils/templateIntegrations.ts
This file contains hidden or 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,10 @@ | ||
| import { EIntegrations } from '../../../types/integrations'; | ||
|
|
||
| // Webhooks are account-wide, so they do not affect a template card's state. | ||
| export const TEMPLATE_CARD_INTEGRATIONS_EXCLUDE = [EIntegrations.Webhooks]; | ||
|
|
||
| export function hasTemplateCardIntegrations(templateIntegrations: EIntegrations[]) { | ||
| return templateIntegrations.some( | ||
| integration => !TEMPLATE_CARD_INTEGRATIONS_EXCLUDE.includes(integration), | ||
| ); | ||
| } |
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.
Uh oh!
There was an error while loading. Please reload this page.