FROM THE

Voices of our community.

4.53 average rating across 122 reviews from Amazon, Facebook, Google, and Reseller Ratings.

","image":"/img/product-common/leet.png","features":"False","engineering":"True","techspecs":"True","photos":"True","testimonials":"True","reviews":"True","display_name":"HTPC","product_name":"HTPC"},{"id":2,"name":"Home Theater PC","image":"/img/product-common/leet.png","features":"True","engineering":"True","techspecs":"True","photos":"True","testimonials":"True","reviews":"True","display_name":"Workstations","product_name":"Workstations"},{"id":3,"name":"Workstation","image":"/img/product-common/leet.png","features":"True","engineering":"True","techspecs":"True","photos":"True","testimonials":"True","reviews":"True","display_name":"Rackmount PCs","product_name":"Rackmount PCs"},{"id":4,"name":"Lapdesk","image":"/img/product-common/couchmaster-small-logo.png","features":"True","engineering":"False","techspecs":"True","photos":"True","testimonials":"True","reviews":"True","display_name":"Gaming PCs","product_name":"Gaming PCs"},{"id":5,"name":"Home Theater PC","image":"/img/product-common/maven-small.png","features":"True","engineering":"True","techspecs":"True","photos":"True","testimonials":"True","reviews":"True","display_name":"Cases","product_name":"Cases"},{"id":6,"name":"Home Theater PC","image":"/img/product-common/era-small.png","features":"True","engineering":"True","techspecs":"True","photos":"True","testimonials":"True","reviews":"True","display_name":"Couchmaster","product_name":"Couchmaster"}]; var models = [{"id":1,"productid":1,"name":"IKON","productname":"HTPC"},{"id":2,"productid":1,"name":"ERA","productname":"HTPC"},{"id":3,"productid":1,"name":"FORGE","productname":"HTPC"},{"id":4,"productid":1,"name":"MAVEN","productname":"HTPC"},{"id":5,"productid":1,"name":"LEET","productname":"HTPC"},{"id":6,"productid":2,"name":"WORKSTATION M","productname":"Workstations"},{"id":7,"productid":2,"name":"WORKSTATION L","productname":"Workstations"},{"id":8,"productid":2,"name":"INFINITUM Pro","productname":"Workstations"},{"id":9,"productid":2,"name":"LEET Pro","productname":"Workstations"},{"id":10,"productid":3,"name":"INFINITUM 3U","productname":"Rackmount PCs"},{"id":11,"productid":3,"name":"INFINITUM 4U","productname":"Rackmount PCs"},{"id":12,"productid":3,"name":"INFINITUM Pro","productname":"Rackmount PCs"},{"id":13,"productid":4,"name":"IKON","productname":"Gaming PCs"},{"id":14,"productid":4,"name":"FORGE","productname":"Gaming PCs"},{"id":15,"productid":4,"name":"mATX Compact","productname":"Gaming PCs"},{"id":16,"productid":5,"name":"ERA","productname":"Cases"},{"id":17,"productid":5,"name":"MAVEN","productname":"Cases"},{"id":18,"productid":5,"name":"LEET","productname":"Cases"},{"id":19,"productid":6,"name":"Couchmaster","productname":"Couchmaster"},{"id":20,"productid":6,"name":"Era Ref Custom","productname":"Couchmaster"},{"id":21,"productid":6,"name":"Era Core Stock","productname":"Couchmaster"},{"id":22,"productid":6,"name":"ERA Reference VR","productname":"Couchmaster"},{"id":23,"productid":6,"name":"Era Pure Stock","productname":"Couchmaster"},{"id":24,"productid":6,"name":"Era Pure Custom","productname":"Couchmaster"},{"id":25,"productid":2,"name":"WORKSTATION M/L","productname":"Workstations"}]; var totalCount; var currentPage; var pages; var limit = 11; var source = ``; $(document).ready(function () { populateProductsDropdown(); getTotalPosts(); }); function populateProductsDropdown() { products.forEach(i => { var option = ``; $('#cbProducts').append(option); }) } function populateModelsDropdown(productid) { $('#cbModels').empty(); $('#cbModels').append(''); var modelList = models.filter(i => i.productid == productid); modelList.forEach(i => { var option = ``; $('#cbModels').append(option); }) } function changeProduct(event) { var id = event.target.value; populateModelsDropdown(id); getTotalPosts(); } function changeModel(event) { getTotalPosts(); } function createPagination() { $('#pagination').empty(); pages = Math.ceil(totalCount / limit); var li = ``; $('#pagination').append(li) for (i = 1; i <= pages; i++) { var li = `
  • ${i}
  • `; $('#pagination').append(li); } var li = ``; $('#pagination').append(li); } function changeTestimonials(page = 0, id = '') { if (id === 'prev') { currentPage -= 1; } else if (id === 'next') { currentPage += 1; } else { currentPage = page; } $('#prev').show(); $('#next').show(); $('.pagination li').removeClass('active'); $(`li#${currentPage}`).addClass('active'); if (currentPage == 0) { $('#prev').hide(); } if (currentPage >= pages - 1) { $('#next').hide(); } getdata(); } function getTotalPosts() { $.ajax({ type: 'POST', url: 'testimonials.aspx/getTotalData', data: JSON.stringify({ product_id: $('#cbProducts').val(), model_id: $('#cbModels').val(), source: source }), contentType: "application/json;charset=utf-8", dataType: 'json', success: function (result) { totalCount = result.d; currentPage = 0; pages = 1; createPagination(); $('.loader').show(); changeTestimonials(0); }, error: function (msg) { alert("error:" + msg.statusText); } }); } function getdata() { $.ajax({ type: 'POST', url: 'testimonials.aspx/getdata', data: JSON.stringify({ page: currentPage, limit: limit, product_id: $('#cbProducts').val(), model_id: $('#cbModels').val(), source: source }), contentType: "application/json;charset=utf-8", dataType: 'json', success: function (result) { $('.listTestimonials').empty(); var list = JSON.parse(result.d); totalCount = list.length; testimonials = list; for (let a = 0; a < list.length; a++) { var data = list[a]; var content = data.postcontent; var li = ""; let contentLength = data.postcontent.length; let substringContent = content.substring(0, 500); let htmlContent = new DOMParser().parseFromString(substringContent, 'text/html').body.innerHTML; if (data.image != "") { li = `
  • ${htmlContent}
    ${contentLength > 500 ? `
    ${(data.author_company != "" && data.author_company != null) ? `
    ${data.author_name ?? ""} ${data.author_company ?? ""}
    ` : `
    ${data.author_name ?? ""}
    `}
  • `; } else { console.log(data.date); var li = `
  • ${htmlContent}
    ${contentLength > 500 && content ? `
    ${(data.author_company != "" && data.author_company != null) ? `
    ${data.author_name ?? ""} ${data.author_company ?? ""}
    ` : `
    ${data.author_name ?? ""}
    `}
  • ` } $('.listTestimonials').append(li); }; $('.loader').hide(); }, error: function (msg) { $('.loader').hide(); alert("error:" + msg.statusText); } }); } function showData(e) { var parentNode = $(`#${e.target.id}`).closest('.testimonialsInnerContent'); var title = parentNode.children('.title')[0].innerHTML; $('.modal-title').html(title); var data = parentNode.children('.full')[0].innerHTML; $('.modal-body').html(data); }