|
@@ -55,6 +55,7 @@ function setState() {
|
|
|
},
|
|
|
function (response) {
|
|
|
if (response != undefined) {
|
|
|
+ const formattedDislike = numberFormat(response.dislikes);
|
|
|
// setLikes(response.likes);
|
|
|
console.log(response);
|
|
|
setDislikes(response.dislikes);
|
|
@@ -91,6 +92,12 @@ function isVideoLoaded() {
|
|
|
);
|
|
|
}
|
|
|
|
|
|
+function numberFormat(numberState) {
|
|
|
+ const userLocales = navigator.language;
|
|
|
+ const formatter = Intl.NumberFormat(userLocales, { notation: 'compact' })
|
|
|
+ return formatter.format(numberState)
|
|
|
+}
|
|
|
+
|
|
|
function setEventListeners(evt) {
|
|
|
function checkForJS_Finish() {
|
|
|
if (getButtons()?.offsetParent && isVideoLoaded()) {
|