FastComments.com
Here you can edit and run the code snippet from our documentation.
Example Code Snippet "콜백 예제"
<script async src="https://cdn.fastcomments.com/js/embed-v2-async.min.js"></script> <div id="fastcomments-widget"></div> <script> window.fcConfigs = [{ target: '#fastcomments-widget', tenantId: 'demo', onInit: function () { console.log('Library started to fetch comments!'); }, onAuthenticationChange: function (eventName, userObj) { console.log('User authenticated!', eventName, userObj); }, onRender: function () { console.log('Render event happened!'); }, commentCountUpdated: function (newCount) { console.log('New comment count:', newCount); }, onReplySuccess: function (comment) { console.log('New comment saved!', comment); }, onVoteSuccess: function (comment, voteId, direction, status) { console.log('New vote saved!', comment, voteId, direction, status); }, onImageClicked: function (src) { console.log('Image clicked!', src); }, onOpenProfile: function (userId) { console.log('User tried to open profile', userId); // return true; // 기본 동작(fastcomments.com 사용자 프로필 열기)을 방지하려면 true를 반환하세요. }, onCommentSubmitStart: function(comment, continueSubmitFn, cancelFn) { console.log('Trying to submit comment', comment); setTimeout(function() { // 비동기 동작(예: API 호출 등)을 에뮬레이트합니다. if(confirm('Should submit?')) { continueSubmitFn(); } else { cancelFn('Some optional error message'); } }, 1000); }, onCommentsRendered: function(comments) { // comments는 페이지의 기본 정렬에 따라 정렬되며, 이는 Most Relevant(예: 가장 많은 추천을 받은 항목 등) 또는 Newest First(최신순)일 수 있습니다 const topCommentInList = comments[0]; console.log('First Comment Rendered:', topCommentInList.avatarSrc, topCommentInList.commenterName, topCommentInList.commentHTML); } }]; </script>
Result