Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
sheetalshettiga
Helper IV
Helper IV

Extracting .ts file from pbiviz file

Hello,

     I have got a .pbiviz file.How can i obtain .ts source file from this.Please help me with this.

1 ACCEPTED SOLUTION
dm-p
Super User
Super User

You can open up a .pbiviz file using an archive tool such as 7Zip. However, the challenge you will have is that the resulting code is much different to the original source. It has been run through the TypeScript compiler into JavaScript and also minified and assembled via Webpack in pbiviz package to make it as compact as possible for production use, which will also make a number of optimizations and changes. The resulting JS is also encoded so that it can sit inside a JSON property in the .pbiviz.

 

Even if you can extract and "uglify" it, it is not going to resemble the original source so a lot of guesswork would be required if you were trying to get it back to how the author might have written it.

 

JSON data from the visual project such as capabilities should be pretty much as entered in the original project though, so the amount of success you're going to have is going to vary based on what elements of the original code you want to look at.

 

If you can obtain the source code from the author, it will save you from a lot of pain. If you can advise the visual (if a marketplace one) I might be able to assist you with locating the author's repository (providing they have opted to open source their code)

 

Regards,

 

Daniel





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!


My course: Introduction to Developing Power BI Visuals


On how to ask a technical question, if you really want an answer (courtesy of SQLBI)




View solution in original post

1 REPLY 1
dm-p
Super User
Super User

You can open up a .pbiviz file using an archive tool such as 7Zip. However, the challenge you will have is that the resulting code is much different to the original source. It has been run through the TypeScript compiler into JavaScript and also minified and assembled via Webpack in pbiviz package to make it as compact as possible for production use, which will also make a number of optimizations and changes. The resulting JS is also encoded so that it can sit inside a JSON property in the .pbiviz.

 

Even if you can extract and "uglify" it, it is not going to resemble the original source so a lot of guesswork would be required if you were trying to get it back to how the author might have written it.

 

JSON data from the visual project such as capabilities should be pretty much as entered in the original project though, so the amount of success you're going to have is going to vary based on what elements of the original code you want to look at.

 

If you can obtain the source code from the author, it will save you from a lot of pain. If you can advise the visual (if a marketplace one) I might be able to assist you with locating the author's repository (providing they have opted to open source their code)

 

Regards,

 

Daniel





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!


My course: Introduction to Developing Power BI Visuals


On how to ask a technical question, if you really want an answer (courtesy of SQLBI)




Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors