Dell Alienware X17 R1 Gaming Laptop (2021) | 17.3

$48.72
$2,199.00
-98%
Title:  Default Title
Quantity

Description

  • [ New But Upgraded ] This is a new computer in the original retail packaging but might have been opened by the seller to upgrade the Hard Drive & Ram. 1 year warranty from Dell. 1 year warranty from the seller on any upgraded components.[ Intel Core i7 Gaming Processor The 17" Alienware X17 R1 Gaming Laptop in Dell's Alienware family comes with all the latest technology including DDR4 Memory clocked at a whopping 3200MHz and a 11th generation Intel 8-core Processor. The Eight cores on the the
  • [ Display & Graphics ]This Alienware X17 R1 Gaming Laptop comes with a 17.3" Non-Touch Screen with FHD (1920x1080) resolution for stunningly clear visuals and a 360HZ Refresh rate for super smooth gameplay and a dedicated Nvidia GeForce RTX 3070 graphics card with 8GB of Dedicated Graphics Ram great for gaming or photo and video editing
  • [ High Speed RAM And Enormous Space ]The 32GB DDR4 RAM Running @ 3200MHz will let you smoothly run multiple applications and browser tabs all at once and a 1TB (1000GB) PCIe NVMe M.2 Solid State Drive will provide fast startup, fast data transfers, and allow for large file storage!
  • [ Operating System ] Windows 10 is Microsoft's most battle tested Operating System and if you want to upgrade to the latest windows 11, windows 11 is a simple free upgarade through windows update. The Home Edition will come with everything you need but you can also upgrade to windows pro from the windows store for $100.
  • [ Extra Details ]A Wecbam comes integrated. Wifi and Bluetooth come integrated. [ PORTS & SLOTS ]Global headset jack | Type-C Thunderbolt 4 / USB 3.2 Gen 2 Port, with Power Delivery (5V/3A) | (2) USB 3.2 Gen 1 Type-A with Powershare | Killer E3100 RJ-45 2.5G Ethernet | Type-C USB 3.2 Gen 2 Port, with Power Delivery (5V/3A) | HDMI 2.1 | Micro SD | Mini Display Port 1.4 |


PORTS & SLOTS

  1. Global headset jack
  2. Type-C Thunderboltâ„ 4 / USB 3.2 Gen 2 Port, with Power Delivery (5V/3A)
  3. (2) USB 3.2 Gen 1 Type-A with Powershare
  4. Killer E3100 RJ-45 2.5G Ethernet
  5. Type-C USB 3.2 Gen 2 Port, with Power Delivery (5V/3A)
  6. HDMI 2.1
  7. Micro SD
  8. Mini Display Port 1.4

Features & Design

Dimensions & Weight

With FHD 360Hz display:
1. Height: 0.823†(20.9mm) 2. Width: 15.718" (399.23mm)| 3. Length: 11.791†(299.49mm)
Starting weight: 6.65 lb (3.02 kg)* | Maximum weight: 7.05 lb (3.2 kg)*

With FHD 165Hz or UHD 120Hz displays:
1. Height: 0.843†(21.4mm) 2. Width: 15.718" (399.23mm)| 3. Length: 11.791†(299.49mm)
Starting weight: 6.65 lb (3.02 kg)* | Maximum weight: 7.05 lb (3.2 kg)*


Customer Reviews
Here are what our customers say.
Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.