File size: 7,554 Bytes
f56a29b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 | /**
* PptxGenJS: Slide Class
*/
import { CHART_NAME, SHAPE_NAME } from './core-enums'
import {
AddSlideProps,
BackgroundProps,
FormulaProps,
HexColor,
IChartMulti,
IChartOpts,
IChartOptsLib,
IOptsChartData,
ISlideObject,
ISlideRel,
ISlideRelChart,
ISlideRelMedia,
ImageProps,
MediaProps,
PresLayout,
PresSlide,
ShapeProps,
SlideLayout,
SlideNumberProps,
TableProps,
TableRow,
TextProps,
TextPropsOptions,
} from './core-interfaces'
import * as genObj from './gen-objects'
export default class Slide {
private readonly _setSlideNum: (value: SlideNumberProps) => void
public addSlide: (options?: AddSlideProps) => PresSlide
public getSlide: (slideNum: number) => PresSlide
public _name: string
public _presLayout: PresLayout
public _rels: ISlideRel[]
public _relsChart: ISlideRelChart[]
public _relsMedia: ISlideRelMedia[]
public _rId: number
public _slideId: number
public _slideLayout: SlideLayout
public _slideNum: number
public _slideNumberProps: SlideNumberProps
public _slideObjects: ISlideObject[]
public _newAutoPagedSlides: PresSlide[]
constructor(params: {
addSlide: (options?: AddSlideProps) => PresSlide
getSlide: (slideNum: number) => PresSlide
presLayout: PresLayout
setSlideNum: (value: SlideNumberProps) => void
slideId: number
slideRId: number
slideNumber: number
slideLayout?: SlideLayout
}) {
this.addSlide = params.addSlide
this.getSlide = params.getSlide
this._name = `Slide ${params.slideNumber}`
this._presLayout = params.presLayout
this._rId = params.slideRId
this._rels = []
this._relsChart = []
this._relsMedia = []
this._setSlideNum = params.setSlideNum
this._slideId = params.slideId
this._slideLayout = params.slideLayout || null
this._slideNum = params.slideNumber
this._slideObjects = []
/** NOTE: Slide Numbers: In order for Slide Numbers to function they need to be in all 3 files: master/layout/slide
* `defineSlideMaster` and `addNewSlide.slideNumber` will add {slideNumber} to `this.masterSlide` and `this.slideLayouts`
* so, lastly, add to the Slide now.
*/
this._slideNumberProps = this._slideLayout?._slideNumberProps ? this._slideLayout._slideNumberProps : null
}
/**
* Background color
* @type {string|BackgroundProps}
* @deprecated in v3.3.0 - use `background` instead
*/
private _bkgd: string | BackgroundProps
public set bkgd(value: string | BackgroundProps) {
this._bkgd = value
if (!this._background || !this._background.color) {
if (!this._background) this._background = {}
if (typeof value === 'string') this._background.color = value
}
}
public get bkgd(): string | BackgroundProps {
return this._bkgd
}
/**
* Background color or image
* @type {BackgroundProps}
* @example solid color `background: { color:'FF0000' }`
* @example color+trans `background: { color:'FF0000', transparency:0.5 }`
* @example base64 `background: { data:'image/png;base64,ABC[...]123' }`
* @example url `background: { path:'https://some.url/image.jpg'}`
* @since v3.3.0
*/
private _background: BackgroundProps
public set background(props: BackgroundProps) {
this._background = props
// Add background (image data/path must be captured before `exportPresentation()` is called)
if (props) genObj.addBackgroundDefinition(props, this)
}
public get background(): BackgroundProps {
return this._background
}
/**
* Default font color
* @type {HexColor}
*/
private _color: HexColor
public set color(value: HexColor) {
this._color = value
}
public get color(): HexColor {
return this._color
}
/**
* @type {boolean}
*/
private _hidden: boolean
public set hidden(value: boolean) {
this._hidden = value
}
public get hidden(): boolean {
return this._hidden
}
/**
* @type {SlideNumberProps}
*/
public set slideNumber(value: SlideNumberProps) {
// NOTE: Slide Numbers: In order for Slide Numbers to function they need to be in all 3 files: master/layout/slide
this._slideNumberProps = value
this._setSlideNum(value)
}
public get slideNumber(): SlideNumberProps {
return this._slideNumberProps
}
public get newAutoPagedSlides(): PresSlide[] {
return this._newAutoPagedSlides
}
/**
* Add chart to Slide
* @param {CHART_NAME|IChartMulti[]} type - chart type
* @param {object[]} data - data object
* @param {IChartOpts} options - chart options
* @return {Slide} this Slide
*/
addChart(type: CHART_NAME | IChartMulti[], data: IOptsChartData[], options?: IChartOpts): Slide {
// FUTURE: TODO-VERSION-4: Remove first arg - only take data and opts, with "type" required on opts
// Set `_type` on IChartOptsLib as its what is used as object is passed around
const optionsWithType: IChartOptsLib = options || {}
optionsWithType._type = type
genObj.addChartDefinition(this, type, data, options)
return this
}
/**
* Add image to Slide
* @param {ImageProps} options - image options
* @return {Slide} this Slide
*/
addImage(options: ImageProps): Slide {
genObj.addImageDefinition(this, options)
return this
}
/**
* Add media (audio/video) to Slide
* @param {MediaProps} options - media options
* @return {Slide} this Slide
*/
addMedia(options: MediaProps): Slide {
genObj.addMediaDefinition(this, options)
return this
}
/**
* Add speaker notes to Slide
* @docs https://gitbrent.github.io/PptxGenJS/docs/speaker-notes.html
* @param {string} notes - notes to add to slide
* @return {Slide} this Slide
*/
addNotes(notes: string): Slide {
genObj.addNotesDefinition(this, notes)
return this
}
/**
* Add shape to Slide
* @param {SHAPE_NAME} shapeName - shape name
* @param {ShapeProps} options - shape options
* @return {Slide} this Slide
*/
addShape(shapeName: SHAPE_NAME, options?: ShapeProps): Slide {
// NOTE: As of v3.1.0, <script> users are passing the old shape object from the shapes file (orig to the project)
// But React/TypeScript users are passing the shapeName from an enum, which is a simple string, so lets cast
// <script./> => `pptx.shapes.RECTANGLE` [string] "rect" ... shapeName['name'] = 'rect'
// TypeScript => `pptxgen.shapes.RECTANGLE` [string] "rect" ... shapeName = 'rect'
// let shapeNameDecode = typeof shapeName === 'object' && shapeName['name'] ? shapeName['name'] : shapeName
genObj.addShapeDefinition(this, shapeName, options)
return this
}
/**
* Add table to Slide
* @param {TableRow[]} tableRows - table rows
* @param {TableProps} options - table options
* @return {Slide} this Slide
*/
addTable(tableRows: TableRow[], options?: TableProps): Slide {
// FUTURE: we pass `this` - we dont need to pass layouts - they can be read from this!
this._newAutoPagedSlides = genObj.addTableDefinition(this, tableRows, options, this._slideLayout, this._presLayout, this.addSlide, this.getSlide)
return this
}
/**
* Add text to Slide
* @param {string|TextProps[]} text - text string or complex object
* @param {TextPropsOptions} options - text options
* @return {Slide} this Slide
*/
addText(text: string | TextProps[], options?: TextPropsOptions): Slide {
const textParam = typeof text === 'string' || typeof text === 'number' ? [{ text, options }] : text
genObj.addTextDefinition(this, textParam, options, false)
return this
}
/**
* Add formula (Office Math / OMML) to Slide
* @param {FormulaProps} options - formula options
* @return {Slide} this Slide
*/
addFormula(options: FormulaProps): Slide {
genObj.addFormulaDefinition(this, options)
return this
}
}
|