Screen shots
Usage
import { openContentRating } from '@web-lite/content-rating/@next'
import openContentRating from '@web-lite/content-rating/@next'
import openContentRating from '@web-lite/content-rating'
import { openContentRating } from '@web-lite/content-rating/@bundled'
import openContentRating from '@web-lite/content-rating/@bundled'
type and Data
const t = {
title: 'این محتوا را چگونه ارزیابی میکنید؟',
submitText: 'ثبت',
ratingFeedback: {
1: 'ارزیابی شما ثبت شد، با تشکر',
2: 'ارزیابی شما ثبت شد، با تشکر',
3: 'ارزیابی شما ثبت شد، با تشکر',
4: 'ارزیابی شما ثبت شد، با تشکر',
5: 'ارزیابی شما ثبت شد، با تشکر',
},
}
type Rate = 1 | 2 | 3 | 4 | 5
type SideEffectFunction = () => void
export interface ContentRateConfig {
analyticsPrefix: string
title?: typeof t['title']
submitText?: typeof t['submitText']
destroyDelay?: number
onClose?: SideEffectFunction
onSubmit?: (rate: Rate) => Promise<void>
onDestroy: SideEffectFunction
ratingFeedback?: typeof t['ratingFeedback']
}
exported functions
type openContentRating = async (
instance: string,
config: ContentRateConfig) => Promise<void>
TODO:
- Add compatible version 4 using mui/lab to shrink code size
- Export esm after this issue has been resolve