Skip to content
This repository has been archived by the owner on Mar 3, 2023. It is now read-only.

Commit

Permalink
Add Disney profile & logo (#104)
Browse files Browse the repository at this point in the history
* Add Disney profile & logo

* Change list to sort by short name (to fix Disney)

* Update Disney industries
  • Loading branch information
ek68794998 authored Apr 22, 2020
1 parent b5ad717 commit 7ec04c2
Show file tree
Hide file tree
Showing 3 changed files with 101 additions and 2 deletions.
51 changes: 51 additions & 0 deletions public/employers/disney.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: The Walt Disney Company
aliases:
- Walt Disney Productions
- Walt Disney Studio
shortName: Disney
ticker: DIS
wiki: The Walt Disney Company
image: disney.svg
officialWebsite: https://thewaltdisneycompany.com/about/
industries:
- apparel
- entertainment
- hospitality
- media
location:
city: Burbank
state: CA
country: us
international: true
wiki: Burbank, California
employeesBefore:
type: approximately
upperBound: 223000
year: 2019
yearQuarter: Q3
summary: Disney has resorted to furloughs even with significant cash reserves still on hand, while electing to not cut executive bonuses, or stock dividends.
citations:
- summary: Some executives, such as Bob Iger and Bob Chapek, will give up at least half their 2020 salaries. However, Chapek—and likely others—are still expected to receive their bonuses, potentially in the tens of millions of dollars.
positivity: 0
type: publication
sources:
- source: Los Angeles Times
link: https://www.latimes.com/business/story/2020-04-19/disney-stops-paying-100000-workers
date: 2020-04-19T16:15:17Z
- summary: Even with over $20 billion USD in cash reserves on hand, Disney has furloughed over 100,000 people (about half its workforce) without pay.
positivity: -1
type: publication
sources:
- source: San Gabriel Valley Tribune
link: https://web.archive.org/web/20200421210239/https://www.sgvtribune.com/2020/04/20/disney-to-stop-paying-half-its-workforce-but-is-still-on-track-to-deliver-1-5-billion-dividend/
date: 2020-04-20T18:58:44Z
- source: Los Angeles Times
link: https://www.latimes.com/business/story/2020-04-19/disney-stops-paying-100000-workers
date: 2020-04-19T16:15:17Z
- summary: Despite resorting to furloughs, Disney intends to continue paying executive bonuses and a $1.5-billion-USD stock dividend this year.
positivity: -1
type: publication
sources:
- source: Los Angeles Times
link: https://www.latimes.com/business/story/2020-04-19/disney-stops-paying-100000-workers
date: 2020-04-19T16:15:17Z
48 changes: 48 additions & 0 deletions public/images/employers/disney.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/web/views/EmployerList/EmployerList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ const EmployerList: React.FC<Props> = (props: Props): React.ReactElement => {
.sort((a: EmployerRecordMetadata, b: EmployerRecordMetadata) => {
const nameMatcher: RegExp = /^(The |A )?(.*)$/i;

const aName: string | undefined = nameMatcher.exec(a.name)?.[2];
const bName: string | undefined = nameMatcher.exec(b.name)?.[2];
const aName: string | undefined = nameMatcher.exec(a.shortName || a.name)?.[2];
const bName: string | undefined = nameMatcher.exec(b.shortName || b.name)?.[2];

return (aName || "").localeCompare(bName || "");
});
Expand Down

0 comments on commit 7ec04c2

Please sign in to comment.