intentful
Version:
Create Custom Skills with less headache
85 lines (84 loc) • 2.9 kB
JavaScript
;
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.APLADocument = void 0;
const fs = __importStar(require("fs"));
const uuid = __importStar(require("uuid"));
class APLADocument {
constructor(props) {
this.props = props;
}
getDirective(additionalData) {
const data = additionalData;
return {
type: 'Alexa.Presentation.APLA.RenderDocument',
token: uuid.v4(),
document: {
src: `doc://alexa/apla/documents/${this.props.documentName}`,
type: 'Link'
},
datasources: {
...(data ? data : {})
}
};
}
getFullDirective(additionalData) {
const data = additionalData;
return {
type: 'Alexa.Presentation.APLA.RenderDocument',
token: uuid.v4(),
document: {
...this.model()
},
datasources: {
...(data ? data : {})
}
};
}
toJSON() {
return this.model();
}
model() {
return {
type: 'APLA',
version: '0.91',
description: this.props.description,
mainTemplate: {
parameters: [],
items: this.props.items
}
};
}
writeToFile(baseSkillPackagePath) {
const aplaDocumentFolder = (baseSkillPackagePath ? baseSkillPackagePath : './') + `response/prompts/${this.props.documentName}`;
if (!fs.existsSync(aplaDocumentFolder)) {
fs.mkdirSync(aplaDocumentFolder, { recursive: true });
}
const model = this.model();
// write interaction models
fs.writeFileSync(`${aplaDocumentFolder}/document.json`, JSON.stringify(model, null, 2));
}
}
exports.APLADocument = APLADocument;