Skip to content

Commit

Permalink
Add prefix to analytics
Browse files Browse the repository at this point in the history
  • Loading branch information
TsayAdobe committed Sep 27, 2024
1 parent 212b0f9 commit 82efae2
Show file tree
Hide file tree
Showing 3 changed files with 84 additions and 1 deletion.
3 changes: 2 additions & 1 deletion acrobat/blocks/prompt-card/prompt-card.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable prefer-template */
/* eslint-disable compat/compat */
import { setLibs } from '../../scripts/utils.js';

Expand Down Expand Up @@ -38,7 +39,7 @@ async function createBlock(element, cfg) {
'data-toast': cfg.toast,
'daa-im': true,
'daa-lh': 'Featured prompts | Executive summary',
'daa-ll': `promptcard-${processTrackingLabels(cfg.title)}`,
'daa-ll': 'promptcard-' + processTrackingLabels(cfg.prefix) + '-' + processTrackingLabels(cfg.title),
});
const prefix = createTag('div', { class: 'prompt-prefix' });
const icon = createTag('img', {
Expand Down
55 changes: 55 additions & 0 deletions test/blocks/prompt-card/mocks/body-template-group-more.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<main>
<div>
<div class="prompt-card template group">
<div>
<div>Prefix</div>
<div>Ask</div>
</div>
<div>
<div>Rows</div>
<div>1</div>
</div>
<div>
<div></div>
</div>
<div>
<div>Title</div>
<div>Prompt</div>
</div>
<div>
<div>Sum it up</div>
<div>Summarize this document in 3 sentences.</div>
</div>
<div>
<div>Organize your thoughts</div>
<div>Suggest a few essay topics based on this reading that can help me get started.</div>
</div>
<div>
<div>Refresh your memory.</div>
<div>Provide 10 sample test questions that my professor could ask me.</div>
</div>
<div>
<div>Point out tech advantages</div>
<div>What are the key benefits for users of this proposed technology solution?</div>
</div>
<div>
<div>Point out tech advantages</div>
<div>What are the key benefits for users of this proposed technology solution?</div>
</div>
<div>
<div>Shorten up the intro</div>
<div>Rewrite the introduction so it has only 200 words and a Flesch reading score above 50.</div>
</div>
</div>
<div class="section-metadata">
<div>
<div>style</div>
<div>Four up, xl-spacing</div>
</div>
<div>
<div>background</div>
<div>#f8f8f8</div>
</div>
</div>
</div>
</main>
27 changes: 27 additions & 0 deletions test/blocks/prompt-card/prompt-card-template-group-more.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
/* eslint-disable no-promise-executor-return */
/* eslint-disable compat/compat */
import { readFile } from '@web/test-runner-commands';
import { expect } from '@esm-bundle/chai';
import { delay } from '../../helpers/waitfor.js';

describe('prompt-cards using the template and group features', () => {
before(async () => {
document.head.innerHTML = await readFile({ path: './mocks/head.html' });
document.body.innerHTML = await readFile({ path: './mocks/body-template-group-more.html' });
await import('../../../acrobat/scripts/scripts.js');
await delay(500);
await new Promise((resolve) => requestAnimationFrame(resolve));
});

it('creates prompt cards', () => {
const blades = document.querySelectorAll('.prompt-card:not(.hidden)');
expect([...blades].length).to.equal(2);
});

it('shows all cards after click view-all button', async () => {
const button = document.querySelector('.view-all .con-button');
button.click();
const promptcards = document.querySelectorAll('.prompt-card:not(.hidden)');
expect([...promptcards].length).to.equal(6);
});
});

0 comments on commit 82efae2

Please sign in to comment.