cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
BrentonC
Helper I
Helper I

Storing dict outside of visual.ts

Hello,

I have encoded a heap of images as base64 and stored them in a dict, currently, it is making a mess in my visual.ts file, it's super long. Is there any way I can store these in another file and call the variable when needed? I have been banging my head against the wall for a while.

 

dict.PNG

 

Thank You

1 ACCEPTED SOLUTION
dm-p
Super User
Super User

Hi @BrentonC,

  1. Create a file in the relative folder to your visual.ts, e.g. constants.ts.
  2. Cut/paste your dict declaration into this file.
  3. Change private dict to export const dict
  4. In your visual.ts, at the top, add import { dict } from './constants'; (edited for correctness)
  5. You can then access the object as dict anywhere in the visual.ts code (so you may need to remove 'this.' from any instances if you've done that, as it's no longer a property of your Visual class.

Note that you don't have to use these exact names, just make sure everything links together, e.g. the constant name and the file it's sourced from.

Also, the export in front of your const declaration in step 3 is very important, otherwise it's not 'visible' to other files when you try to import it.

If you want to see a pre-canned example within your project (assuming you started with a blank visual), your settings.ts does the same thing with the VisualSettings class declaration, and its subsequent import into visual.ts.

Here's some further reading on ES6 imports and exports.

Good luck!

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

3 REPLIES 3
dm-p
Super User
Super User

Hi @BrentonC,

  1. Create a file in the relative folder to your visual.ts, e.g. constants.ts.
  2. Cut/paste your dict declaration into this file.
  3. Change private dict to export const dict
  4. In your visual.ts, at the top, add import { dict } from './constants'; (edited for correctness)
  5. You can then access the object as dict anywhere in the visual.ts code (so you may need to remove 'this.' from any instances if you've done that, as it's no longer a property of your Visual class.

Note that you don't have to use these exact names, just make sure everything links together, e.g. the constant name and the file it's sourced from.

Also, the export in front of your const declaration in step 3 is very important, otherwise it's not 'visible' to other files when you try to import it.

If you want to see a pre-canned example within your project (assuming you started with a blank visual), your settings.ts does the same thing with the VisualSettings class declaration, and its subsequent import into visual.ts.

Here's some further reading on ES6 imports and exports.

Good luck!

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)




Thank you, it did have an issue with me trying to import './constants.ts' as it did not want the extension on there so './constants' did the job. I am not very familiar with javascript/node.js, best I do some reading up on it and learn the fundamentals. Thank you for the good explanation.

 

Brenton Collins

Glad to hear it's working for you, and thanks for the feedback on the file extension - I'll update the answer with the correct info 🙂





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
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors