@prefecthq/prefect-ui-library
Version:
This library is the Vue and Typescript component library for [Prefect 2](https://github.com/PrefectHQ/prefect) and [Prefect Cloud 2](https://www.prefect.io/cloud/). _The components and utilities in this project are not meant to be used independently_.
40 lines (31 loc) • 1.42 kB
text/typescript
import { paragraph, sentence } from '@/mocks/sentences/generateText'
import { adjectives, nouns } from '@/mocks/sentences/sample'
import { generateStarName } from '@/mocks/starnames'
import { MockFunction } from '@/services/Mocker'
import { choice } from '@/utilities/arrays'
import { uniform } from '@/utilities/math'
const characters = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'] as const
export const randomChar: MockFunction<typeof characters[number], []> = function() {
return characters[Math.floor(Math.random() * characters.length)]
}
export const randomNoun: MockFunction<typeof nouns[number], []> = function() {
return choice(nouns)
}
export const randomAdjective: MockFunction<typeof adjectives[number], []> = function() {
return choice(adjectives)
}
export const randomString: MockFunction<string, [number?]> = function(chars) {
if (!chars) {
chars = this.create('number', [5, 10])
}
return new Array(chars).fill(null).map(() => this.create('char')).join('')
}
export const randomSentence: MockFunction<string, []> = function() {
return sentence()
}
export const randomParagraph: MockFunction<string, [number?]> = function(sentences) {
return paragraph(sentences ? sentences : uniform(2, 5))
}
export const randomRunName: MockFunction<string, []> = function() {
return generateStarName()
}