* Completed For visual-studio-app-center * Completed For visual-studio-marketplace * Completed For w3c Co-authored-by: repo-ranger[bot] <39074581+repo-ranger[bot]@users.noreply.github.com>
64 lines
1.8 KiB
JavaScript
64 lines
1.8 KiB
JavaScript
'use strict'
|
|
|
|
const { metric } = require('../text-formatters')
|
|
const { downloadCount } = require('../color-formatters')
|
|
const VisualStudioMarketplaceBase = require('./visual-studio-marketplace-base')
|
|
|
|
const documentation = `
|
|
<p>
|
|
This is for Visual Studio and Visual Studio Code Extensions.
|
|
</p>
|
|
<p>
|
|
For correct results on Azure DevOps Extensions, use the Azure DevOps Installs badge instead.
|
|
</p>
|
|
`
|
|
|
|
module.exports = class VisualStudioMarketplaceDownloads extends VisualStudioMarketplaceBase {
|
|
static category = 'downloads'
|
|
|
|
static route = {
|
|
base: '',
|
|
pattern:
|
|
'(visual-studio-marketplace|vscode-marketplace)/:measure(d|i)/:extensionId',
|
|
}
|
|
|
|
static examples = [
|
|
{
|
|
title: 'Visual Studio Marketplace Installs',
|
|
pattern: 'visual-studio-marketplace/i/:extensionId',
|
|
namedParams: { extensionId: 'ritwickdey.LiveServer' },
|
|
staticPreview: this.render({ measure: 'i', count: 843 }),
|
|
keywords: this.keywords,
|
|
documentation,
|
|
},
|
|
{
|
|
title: 'Visual Studio Marketplace Downloads',
|
|
pattern: 'visual-studio-marketplace/d/:extensionId',
|
|
namedParams: { extensionId: 'ritwickdey.LiveServer' },
|
|
staticPreview: this.render({ measure: 'd', count: 1239 }),
|
|
keywords: this.keywords,
|
|
documentation,
|
|
},
|
|
]
|
|
|
|
static render({ measure, count }) {
|
|
const label = measure === 'd' ? 'downloads' : 'installs'
|
|
|
|
return {
|
|
label,
|
|
message: metric(count),
|
|
color: downloadCount(count),
|
|
}
|
|
}
|
|
|
|
async handle({ measure, extensionId }) {
|
|
const json = await this.fetch({ extensionId })
|
|
const { statistics } = this.transformStatistics({ json })
|
|
const count =
|
|
measure === 'i'
|
|
? statistics.install
|
|
: statistics.install + statistics.updateCount
|
|
return this.constructor.render({ measure, count })
|
|
}
|
|
}
|