mirror of
https://github.com/rxliuli/apps.apple.com.git
synced 2025-11-10 01:30:33 +00:00
init commit
This commit is contained in:
37
src/components/jet/item/ProductRatingsItem.svelte
Normal file
37
src/components/jet/item/ProductRatingsItem.svelte
Normal file
@@ -0,0 +1,37 @@
|
||||
<script lang="ts">
|
||||
import type { Ratings } from '@jet-app/app-store/api/models';
|
||||
|
||||
import RatingComponent from '@amp/web-app-components/src/components/Rating/Rating.svelte';
|
||||
import { getJet } from '~/jet/svelte';
|
||||
import { getI18n } from '~/stores/i18n';
|
||||
|
||||
export let item: Ratings;
|
||||
|
||||
const i18n = getI18n();
|
||||
const jet = getJet();
|
||||
const numberOfRatings = jet.localization.formattedCount(
|
||||
item.totalNumberOfRatings,
|
||||
);
|
||||
</script>
|
||||
|
||||
<article>
|
||||
{#if item.totalNumberOfRatings === 0}
|
||||
{item.status}
|
||||
{:else}
|
||||
<RatingComponent
|
||||
averageRating={jet.localization.decimal(item.ratingAverage, 1)}
|
||||
ratingCount={item.totalNumberOfRatings}
|
||||
ratingCountText={$i18n.t('ASE.Web.AppStore.Ratings.CountText', {
|
||||
numberOfRatings: numberOfRatings,
|
||||
})}
|
||||
totalText={$i18n.t('ASE.Web.AppStore.Ratings.TotalText')}
|
||||
ratingCountsList={item.ratingCounts}
|
||||
/>
|
||||
{/if}
|
||||
</article>
|
||||
|
||||
<style>
|
||||
article {
|
||||
--ratingBarColor: var(--systemPrimary);
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user