113 lines
5.9 KiB
JavaScript
113 lines
5.9 KiB
JavaScript
const {Event, day, week, month, dayYear, EventLevel} = require("../../src/calendar/helpers");
|
|
|
|
module.exports = [
|
|
// months
|
|
new Event('LGBT History Month (UK/Hungary/Netherlands)', 'Progress Pride', 2, month, EventLevel.Month),
|
|
new Event('LGBT History Month (US/Canada/Australia)', 'Progress Pride', 10, month, EventLevel.Month),
|
|
new Event('LGBT History Month (Ireland/Germany)', 'Progress Pride', 5, month, EventLevel.Month),
|
|
new Event('Trans Visibility Month (Brazil)', 'Transgender', 1, month, EventLevel.Month),
|
|
new Event('Lesbian Visibility Month (Brazil)', 'Lesbian', 8, month, EventLevel.Month),
|
|
|
|
// static date
|
|
new Event('Harvey Milk Day', null, 5, day(22), EventLevel.Day),
|
|
new Event('Pink Triangle Day (Canada)', null, 2, day(14), EventLevel.Day),
|
|
new Event('Marriage Equality Day (US)', null, 6, day(26), EventLevel.Day),
|
|
new Event('Marriage Equality Day (England and Wales)', null, 3, day(13), EventLevel.Day),
|
|
new Event('Marriage Equality Day (Scotland)', null, 12, day(16), EventLevel.Day),
|
|
new Event('Marriage Equality Day (Northern Ireland)', null, 1, day(13), EventLevel.Day),
|
|
new Event('Marriage Equality Day (Canada)', null, 7, day(20), EventLevel.Day),
|
|
new Event('Marriage Equality Day (Australia)', null, 12, day(9), EventLevel.Day),
|
|
new Event('Marriage Equality Day (New Zealand)', null, 8, day(19), EventLevel.Day),
|
|
new Event('Marriage Referendum Anniversary (Ireland)', null, 5, day(22), EventLevel.Day),
|
|
new Event('Freedom to Marry Day (US)', null, 2, day(12), EventLevel.Day),
|
|
new Event('Transgender HIV Testing Day (US)', 'Transgender', 4, day(18), EventLevel.Day),
|
|
new Event('HIV Testing Day (US)', null, 6, day(27), EventLevel.Day),
|
|
new Event('Black HIV Testing Day (US)', null, 2, day(7), EventLevel.Day),
|
|
new Event('Anniversary of the Decriminalisation of Homosexuality in England and Wales (1967)', null, 7, day(27), EventLevel.Day),
|
|
new Event('Anniversary of the Decriminalisation of Homosexuality in Scotland (1981)', null, 2, day(1), EventLevel.Day),
|
|
new Event('Two Spirit Awareness Day', 'Two Spirit', 7, day(11), EventLevel.Day),
|
|
new Event('Gay Men\'s HIV/AIDS Awareness Day (US)', null, 9, day(27), EventLevel.Day),
|
|
new Event('HIV/AIDS and Aging Awareness Day (US)', null, 9, day(18), EventLevel.Day),
|
|
new Event('LGBT Center Awareness Day (US)', null, 10, day(19), EventLevel.Day),
|
|
new Event('{https://twitter.com/_EQUALGROUND_/status/1440232964286124050=Lesbian Visibility Day} (Sri Lanka)', 'Lesbian', 9, day(21), EventLevel.Day),
|
|
new Event('Latinx AIDS Awareness Day (US)', null, 10, day(15), EventLevel.Day),
|
|
new Event('Southern HIV/AIDS Awareness Day (US)', null, 8, day(20), EventLevel.Day),
|
|
new Event('Asian and Pacific Islander HIV/AIDS Awareness Day (US)', null, 5, day(19), EventLevel.Day),
|
|
new Event('Youth HIV/AIDS Awareness Day (US)', null, 4, day(10), EventLevel.Day),
|
|
new Event('Women and Girls HIV/AIDS Awareness Day (US)', null, 3, day(10), EventLevel.Day),
|
|
new Event('Native HIV/AIDS Awareness Day (US)', null, 3, day(20), EventLevel.Day),
|
|
new Event('HIV Long-Term Survivors Awareness Day (US)', null, 6, day(5), EventLevel.Day),
|
|
new Event('Trans Visibility Day (Brazil)', 'Transgender', 1, day(29), EventLevel.Day),
|
|
new Event('National Gay Pride Day (Brazil)', 'LGBTQ', 3, day(25), EventLevel.Day),
|
|
new Event('Lesbian Visibility Day (Brazil)', 'Lesbian', 8, day(29), EventLevel.Day),
|
|
new Event('Lesbian Rebelliousness Day (Latin America)', 'Lesbian_', 10, day(13), EventLevel.Day),
|
|
new Event('Lesbian Visibility Day (Chile)', 'Lesbian', 7, day(9), EventLevel.Day),
|
|
new Event('Lesbian Visibility Day (Argentina)', 'Lesbian', 3, day(7), EventLevel.Day),
|
|
new Event('Lesbian Visibility Day (Paraguay)', 'Lesbian', 9, day(16), EventLevel.Day),
|
|
new Event('Day of Activism for Sexual Diversity (Argentina)', 'LGBTQ', 8, day(20), EventLevel.Day),
|
|
new Event('Trans Rights Day (Argentina)', 'Transgender', 3, day(18), EventLevel.Day),
|
|
new Event('Nonbinary People\'s Day (Poland)', 'Nonbinary', 3, day(9), EventLevel.Day),
|
|
new Event('LGBT Visibility Day (Russia)', 'LGBTQ', 10, day(7), EventLevel.Day),
|
|
|
|
// dynamic date
|
|
new Event('Wear it Purple Day (Australia)', null, 8, function* (monthDays) {
|
|
let lastFriday = null;
|
|
for (let d of monthDays) {
|
|
if (d.dayOfWeek === 5) {
|
|
lastFriday = d;
|
|
}
|
|
}
|
|
yield lastFriday;
|
|
}, EventLevel.Day),
|
|
|
|
new Event('Spirit Day', null, 10, function* (monthDays) {
|
|
let thursdays = 0;
|
|
for (let d of monthDays) {
|
|
if (d.dayOfWeek === 4) {
|
|
thursdays++;
|
|
if (thursdays === 3) {
|
|
yield d;
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
}, EventLevel.Day),
|
|
|
|
new Event('Purple Friday (UK)', null, 2, function* (monthDays) {
|
|
let lastFriday = null;
|
|
for (let d of monthDays) {
|
|
if (d.dayOfWeek === 5) {
|
|
lastFriday = d;
|
|
}
|
|
}
|
|
yield lastFriday;
|
|
}, EventLevel.Day),
|
|
|
|
new Event('Rainbow Friday (Poland)', null, 10, function* (monthDays) {
|
|
let lastFriday = null;
|
|
for (let d of monthDays) {
|
|
if (d.dayOfWeek === 5) {
|
|
lastFriday = d;
|
|
}
|
|
}
|
|
yield lastFriday;
|
|
}, EventLevel.Day),
|
|
|
|
new Event('Purple Friday (Netherlands)', null, 12, function* (monthDays) {
|
|
let fridays = 0;
|
|
for (let d of monthDays) {
|
|
if (d.dayOfWeek === 5) {
|
|
fridays++;
|
|
if (fridays === 2) {
|
|
yield d;
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
}, EventLevel.Day),
|
|
|
|
// one-off events
|
|
new Event('Day of Silence', null, 4, dayYear(23, 2021), EventLevel.Day),
|
|
new Event('LGBTQIA+ Equal Pay Awareness Day', null, 6, dayYear(16, 2021), EventLevel.Day),
|
|
];
|