本文整理汇总了TypeScript中faker.commerce类的典型用法代码示例。如果您正苦于以下问题:TypeScript commerce类的具体用法?TypeScript commerce怎么用?TypeScript commerce使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了commerce类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: modifyAddPrefix
function modifyAddPrefix(name: string, isMale: boolean): string {
let lengthAvailable = characterConfig.MAX_NAME_LENGTH - name.length;
if (faker.random.boolean()) {
const perk = faker.random.objectElement(talentsConfig.PERKS);
const perkWords = perk.split(/(?=[A-Z])/);
if (lengthAvailable >= perkWords[0].length) {
return capitalizeFirstLetter(perkWords[0]) + name;
}
}
if (faker.random.boolean()) {
const color = faker.commerce.color().replace(/ /g, "");
if (lengthAvailable >= color.length) {
return capitalizeFirstLetter(color) + name;
}
}
const prefixes = COMMON_PREFIXES.concat(isMale ? MALE_PREFIXES : FEMALE_PREFIXES).filter(prefix => prefix.length <= lengthAvailable);
return (prefixes.length > 0 ? faker.random.arrayElement(prefixes) : "") + name;
}
示例2: initDb
/** Create the database. */
async function initDb() {
// Creates the file.
try {
await sequelize.authenticate();
console.log('Connection to the database successful.');
} catch (error) {
console.log(`Error while trying to connect to the database: ${error}`);
}
// Syncs the model
try {
await sequelize.sync({force: true});
console.log('Database sync sucessful');
} catch (error) {
console.log(`Error while trying to sync the model with the database : ${error}`);
}
if (process.env.DB_ENV !== 'prod') {
// Populate the database with fake data
try {
let data: IArticle[] = [];
for (let i = 0; i < 10; i++) {
data.push({
title: faker.commerce.department(),
description: faker.lorem.sentence(),
content: faker.lorem.sentences(),
published: faker.random.boolean(),
publishedAt: new Date().toISOString()
});
}
await Article.bulkCreate(data);
console.log('10 articles successfully inserted.');
} catch (error) {
console.log(`Error while trying to insert an article in the database : ${error}`);
}
}
}