mirror of
https://github.com/marcogll/passkit-generator.git
synced 2026-03-15 19:25:23 +00:00
Removed String-Date and its format on methods that uses dates for native Date object
This commit is contained in:
20
src/pass.ts
20
src/pass.ts
@@ -183,17 +183,16 @@ export class Pass implements PassIndexSignature {
|
|||||||
* Sets expirationDate property to the W3C date
|
* Sets expirationDate property to the W3C date
|
||||||
*
|
*
|
||||||
* @method expiration
|
* @method expiration
|
||||||
* @params {String} date - the date in string
|
* @params date
|
||||||
* @params {String} format - a custom format for the date
|
|
||||||
* @returns {this}
|
* @returns {this}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
expiration(date: string | Date, format?: string) {
|
expiration(date: Date) {
|
||||||
if (typeof date !== "string" && !(date instanceof Date)) {
|
if (!(date instanceof Date)) {
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
let dateParse = dateToW3CString(date, format);
|
const dateParse = dateToW3CString(date);
|
||||||
|
|
||||||
if (!dateParse) {
|
if (!dateParse) {
|
||||||
genericDebug(formatMessage("DATE_FORMAT_UNMATCH", "Expiration date"));
|
genericDebug(formatMessage("DATE_FORMAT_UNMATCH", "Expiration date"));
|
||||||
@@ -221,13 +220,12 @@ export class Pass implements PassIndexSignature {
|
|||||||
* Checks and sets data for "beacons", "locations", "maxDistance" and "relevantDate" keys
|
* Checks and sets data for "beacons", "locations", "maxDistance" and "relevantDate" keys
|
||||||
*
|
*
|
||||||
* @method relevance
|
* @method relevance
|
||||||
* @params {String} type - one of the key above
|
* @params type - one of the key above
|
||||||
* @params {Any[]} data - the data to be pushed to the property
|
* @params data - the data to be pushed to the property
|
||||||
* @params {String} [relevanceDateFormat] - A custom format for the date
|
|
||||||
* @return {Number} The quantity of data pushed
|
* @return {Number} The quantity of data pushed
|
||||||
*/
|
*/
|
||||||
|
|
||||||
relevance(type: string, data: any, relevanceDateFormat?: string) {
|
relevance(type: string, data: any) {
|
||||||
let types = ["beacons", "locations", "maxDistance", "relevantDate"];
|
let types = ["beacons", "locations", "maxDistance", "relevantDate"];
|
||||||
|
|
||||||
if (!type || !data || !types.includes(type)) {
|
if (!type || !data || !types.includes(type)) {
|
||||||
@@ -257,12 +255,12 @@ export class Pass implements PassIndexSignature {
|
|||||||
|
|
||||||
return assignLength(Number(!cond), this);
|
return assignLength(Number(!cond), this);
|
||||||
} else if (type === "relevantDate") {
|
} else if (type === "relevantDate") {
|
||||||
if (typeof data !== "string" && !(data instanceof Date)) {
|
if (!(data instanceof Date)) {
|
||||||
genericDebug(formatMessage("DATE_FORMAT_UNMATCH", "Relevant Date"));
|
genericDebug(formatMessage("DATE_FORMAT_UNMATCH", "Relevant Date"));
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
let dateParse = dateToW3CString(data, relevanceDateFormat);
|
let dateParse = dateToW3CString(data);
|
||||||
|
|
||||||
if (!dateParse) {
|
if (!dateParse) {
|
||||||
genericDebug(formatMessage("DATE_FORMAT_UNMATCH", "Relevant Date"));
|
genericDebug(formatMessage("DATE_FORMAT_UNMATCH", "Relevant Date"));
|
||||||
|
|||||||
185
src/utils.ts
185
src/utils.ts
@@ -1,93 +1,92 @@
|
|||||||
import moment from "moment";
|
import moment from "moment";
|
||||||
import { EOL } from "os";
|
import { EOL } from "os";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Checks if an rgb value is compliant with CSS-like syntax
|
* Checks if an rgb value is compliant with CSS-like syntax
|
||||||
*
|
*
|
||||||
* @function isValidRGB
|
* @function isValidRGB
|
||||||
* @params {String} value - string to analyze
|
* @params {String} value - string to analyze
|
||||||
* @returns {Boolean} True if valid rgb, false otherwise
|
* @returns {Boolean} True if valid rgb, false otherwise
|
||||||
*/
|
*/
|
||||||
|
|
||||||
export function isValidRGB(value: string): boolean {
|
export function isValidRGB(value: string): boolean {
|
||||||
if (!value || typeof value !== "string") {
|
if (!value || typeof value !== "string") {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
const rgb = value.match(/^rgb\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*\)/);
|
const rgb = value.match(/^rgb\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*\)/);
|
||||||
|
|
||||||
if (!rgb) {
|
if (!rgb) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
return rgb.slice(1, 4).every(v => Math.abs(Number(v)) <= 255);
|
return rgb.slice(1, 4).every(v => Math.abs(Number(v)) <= 255);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Converts a date to W3C Standard format
|
* Converts a date to W3C Standard format
|
||||||
*
|
*
|
||||||
* @function dateToW3Cstring
|
* @function dateToW3Cstring
|
||||||
* @params {String} date - The date to be parsed
|
* @params date - The date to be parsed
|
||||||
* @params {String} [format] - a custom format
|
* @returns - The parsed string if the parameter is valid,
|
||||||
* @returns {String|undefined} The parsed string if the parameter is valid,
|
* undefined otherwise
|
||||||
* undefined otherwise
|
*/
|
||||||
*/
|
|
||||||
|
export function dateToW3CString(date: Date) {
|
||||||
export function dateToW3CString(date: string | Date, format?: string) {
|
if (!(date instanceof Date)) {
|
||||||
if (typeof date !== "string" && !(date instanceof Date)) {
|
return "";
|
||||||
return "";
|
}
|
||||||
}
|
|
||||||
|
const parsedDate = moment(date).format();
|
||||||
const parsedDate = date instanceof Date ? moment(date).format() : moment(date.replace(/\//g, "-"), format || ["MM-DD-YYYY hh:mm:ss", "DD-MM-YYYY hh:mm:ss"]).format();
|
|
||||||
|
if (parsedDate === "Invalid date") {
|
||||||
if (parsedDate === "Invalid date") {
|
return undefined;
|
||||||
return undefined;
|
}
|
||||||
}
|
|
||||||
|
return parsedDate;
|
||||||
return parsedDate;
|
}
|
||||||
}
|
|
||||||
|
/**
|
||||||
/**
|
* Apply a filter to arg0 to remove hidden files names (starting with dot)
|
||||||
* Apply a filter to arg0 to remove hidden files names (starting with dot)
|
*
|
||||||
*
|
* @function removeHidden
|
||||||
* @function removeHidden
|
* @params {String[]} from - list of file names
|
||||||
* @params {String[]} from - list of file names
|
* @return {String[]}
|
||||||
* @return {String[]}
|
*/
|
||||||
*/
|
|
||||||
|
export function removeHidden(from: Array<string>): Array<string> {
|
||||||
export function removeHidden(from: Array<string>): Array<string> {
|
return from.filter(e => e.charAt(0) !== ".");
|
||||||
return from.filter(e => e.charAt(0) !== ".");
|
}
|
||||||
}
|
|
||||||
|
/**
|
||||||
/**
|
* Creates a buffer of translations in Apple .strings format
|
||||||
* Creates a buffer of translations in Apple .strings format
|
*
|
||||||
*
|
* @function generateStringFile
|
||||||
* @function generateStringFile
|
* @params {Object} lang - structure containing related to ISO 3166 alpha-2 code for the language
|
||||||
* @params {Object} lang - structure containing related to ISO 3166 alpha-2 code for the language
|
* @returns {Buffer} Buffer to be written in pass.strings for language in lang
|
||||||
* @returns {Buffer} Buffer to be written in pass.strings for language in lang
|
* @see https://apple.co/2M9LWVu - String Resources
|
||||||
* @see https://apple.co/2M9LWVu - String Resources
|
*/
|
||||||
*/
|
|
||||||
|
export function generateStringFile(lang: { [index: string]: string }): Buffer {
|
||||||
export function generateStringFile(lang: { [index: string]: string }): Buffer {
|
if (!Object.keys(lang).length) {
|
||||||
if (!Object.keys(lang).length) {
|
return Buffer.from("", "utf8");
|
||||||
return Buffer.from("", "utf8");
|
}
|
||||||
}
|
|
||||||
|
// Pass.strings format is the following one for each row:
|
||||||
// Pass.strings format is the following one for each row:
|
// "key" = "value";
|
||||||
// "key" = "value";
|
|
||||||
|
const strings = Object.keys(lang)
|
||||||
const strings = Object.keys(lang)
|
.map(key => `"${key}" = "${lang[key].replace(/"/g, '\"')}";`);
|
||||||
.map(key => `"${key}" = "${lang[key].replace(/"/g, '\"')}";`);
|
|
||||||
|
return Buffer.from(strings.join(EOL), "utf8");
|
||||||
return Buffer.from(strings.join(EOL), "utf8");
|
}
|
||||||
}
|
|
||||||
|
/**
|
||||||
/**
|
* Creates a new object with custom length property
|
||||||
* Creates a new object with custom length property
|
* @param {number} value - the length
|
||||||
* @param {number} value - the length
|
* @param {Array<Object<string, any>>} source - the main sources of properties
|
||||||
* @param {Array<Object<string, any>>} source - the main sources of properties
|
*/
|
||||||
*/
|
|
||||||
|
export function assignLength(length: number, ...sources: Array<{ [key: string]: any }>): Array<{ [key: string]: any }> {
|
||||||
export function assignLength(length: number, ...sources: Array<{ [key: string]: any }>): Array<{ [key: string]: any }> {
|
return Object.assign({ length }, ...sources);
|
||||||
return Object.assign({ length }, ...sources);
|
}
|
||||||
}
|
|
||||||
|
|||||||
Reference in New Issue
Block a user