-
-
Save thebentern/25fdba5121fd57f07c0302b0d0a36456 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add-Type -AssemblyName System.Web | |
function New-Title { | |
param( | |
[Parameter(ValueFromPipeline=$true)] | |
$title | |
) | |
Process { | |
@{title=$title} | |
} | |
} | |
function Export-DT{ | |
param( | |
[Parameter(ValueFromPipeline=$true)] | |
$TargetData, | |
[Switch]$Raw | |
) | |
Begin { | |
$dataSet=@() | |
$htmlFileName=[System.IO.Path]::GetTempFileName() -replace "tmp","html" | |
} | |
Process { | |
$columnNames=$TargetData.psobject.properties.name | |
$element = foreach ($name in $columnNames) { | |
$data=$TargetData.$name | |
if(!$data) { | |
$data="[missing]" | |
} | |
"`"{0}`"" -f ([System.Web.HttpUtility]::JavaScriptStringEncode($data)) | |
} | |
$dataSet+="`t[{0}]" -f ($element -join ',') | |
} | |
End { | |
$dataset="[`n{0}`n];" -f ($dataSet -join ",`n") | |
$columns=$columnNames | New-Title | ConvertTo-Json -Compress | |
$html=@" | |
<html> | |
<head> | |
<link href="https://cdn.datatables.net/1.10.11/css/jquery.dataTables.min.css" rel="stylesheet" /> | |
<script src="https://code.jquery.com/jquery-1.12.0.min.js"></script> | |
<script src="https://cdn.datatables.net/1.10.11/js/jquery.dataTables.min.js"></script> | |
<script > | |
`$(document).ready(function() { | |
var dataSet= $($dataset) | |
var table = `$('#targetTable').DataTable({ | |
data: dataSet, | |
columns: $($columns) | |
}); | |
}); | |
</script> | |
</head> | |
<body> | |
<table id="targetTable" class="display" width="100%" /> | |
</body> | |
</html> | |
"@ | |
if($Raw) { | |
$html | |
} else { | |
$html | Set-Content -Encoding Ascii $htmlFileName | |
ii $htmlFileName | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment