browsertrix/.vscode/snippets.code-snippets
sua yoo 83c9203a11
Initial QA Review UI! (#1624)
QA Details page:
- Enables QA tab with ability to start automated analysis QA Run + view a and manual review status
- Pages listed with review status + overall crawl review status shown on QA details (relates to #1508)
- Initial placeholder for QA run analytics (part of #1589)
- Addresses a good deal of #1477

Automated Analysis QA in Review Mode:
- Ability to select from multiple analysis QA runs / view QA runs in QA details
- Shows analysis screenshot, text and resources compare and replay tabs (fixes #1496)
- Sorting by worst screenshot / worst text score for each QA run
- Includes pages sidebar with screenshot/text/resource compare results (fixes #1497)

Manual Review QA in Review Mode:
- Per-page replay available as separate tab (fixes #1499)
- Supports thumbs up, thumbs down, notes for each page
- Supports entering review status approval (good/acceptable/bad can be entered when finishing review

---------
Co-authored-by: Emma Segal-Grossman <hi@emma.cafe>
Co-authored-by: Ilya Kreymer <ikreymer@gmail.com>
Co-authored-by: Henry Wilkinson <henry@wilkinson.graphics>
2024-04-04 15:09:52 -07:00

23 lines
604 B
Plaintext

{
"Tailwind Component": {
"scope": "javascript,typescript",
"prefix": ["component", "@customElement"],
"body": [
"import { localized } from \"@lit/localize\";",
"import { html } from \"lit\";",
"import { customElement } from \"lit/decorators.js\";",
"",
"import { TailwindElement } from \"@/classes/TailwindElement\";",
"",
"@localized()",
"@customElement(\"btrix-${1:component}\")",
"export class ${2:Component} extends TailwindElement {",
"\trender() {",
"\t\treturn html``;",
"\t}",
"}",
""
]
}
}