-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1559 from sanger/dpl-1028-group-graph-pipelines
DPL-1059: Group graph pipelines
- Loading branch information
Showing
9 changed files
with
656 additions
and
382 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
// TODO: combine these colours with app/assets/stylesheets/limber/colours.scss into a single source | ||
|
||
// First 96 of the distinct colours as used in the rest of limber | ||
const distinctColours = [ | ||
'#FFFF00', | ||
'#1CE6FF', | ||
'#FF34FF', | ||
'#FF4A46', | ||
'#008941', | ||
'#006FA6', | ||
'#A30059', | ||
'#FFDBE5', | ||
'#7A4900', | ||
'#0000A6', | ||
'#63FFAC', | ||
'#B79762', | ||
'#004D43', | ||
'#8FB0FF', | ||
'#997D87', | ||
'#5A0007', | ||
'#809693', | ||
'#FEFFE6', | ||
'#1B4400', | ||
'#4FC601', | ||
'#3B5DFF', | ||
'#4A3B53', | ||
'#FF2F80', | ||
'#61615A', | ||
'#BA0900', | ||
'#6B7900', | ||
'#00C2A0', | ||
'#FFAA92', | ||
'#FF90C9', | ||
'#B903AA', | ||
'#D16100', | ||
'#DDEFFF', | ||
'#000035', | ||
'#7B4F4B', | ||
'#A1C299', | ||
'#300018', | ||
'#0AA6D8', | ||
'#013349', | ||
'#00846F', | ||
'#372101', | ||
'#FFB500', | ||
'#C2FFED', | ||
'#A079BF', | ||
'#CC0744', | ||
'#C0B9B2', | ||
'#C2FF99', | ||
'#001E09', | ||
'#00489C', | ||
'#6F0062', | ||
'#0CBD66', | ||
'#EEC3FF', | ||
'#456D75', | ||
'#B77B68', | ||
'#7A87A1', | ||
'#788D66', | ||
'#885578', | ||
'#FAD09F', | ||
'#FF8A9A', | ||
'#D157A0', | ||
'#BEC459', | ||
'#456648', | ||
'#0086ED', | ||
'#886F4C', | ||
'#34362D', | ||
'#B4A8BD', | ||
'#00A6AA', | ||
'#452C2C', | ||
'#636375', | ||
'#A3C8C9', | ||
'#FF913F', | ||
'#938A81', | ||
'#575329', | ||
'#00FECF', | ||
'#B05B6F', | ||
'#8CD0FF', | ||
'#3B9700', | ||
'#04F757', | ||
'#C8A1A1', | ||
'#1E6E00', | ||
'#7900D7', | ||
'#A77500', | ||
'#6367A9', | ||
'#A05837', | ||
'#6B002C', | ||
'#772600', | ||
'#D790FF', | ||
'#9B9700', | ||
'#549E79', | ||
'#FFF69F', | ||
'#201625', | ||
'#72418F', | ||
'#BC23FF', | ||
'#99ADC0', | ||
'#3A2465', | ||
'#922329', | ||
'#5B4534', | ||
] | ||
|
||
let pipelineColours = {} // colours assigned to each pipeline name | ||
|
||
const calculatePipelineColours = function (pipelineNames) { | ||
const coloursCopy = [...distinctColours] | ||
pipelineNames.forEach((pipeline) => { | ||
const colour = coloursCopy.shift() | ||
pipelineColours[pipeline] = colour | ||
}) | ||
} | ||
|
||
const getPipelineColour = function (pipeline) { | ||
return pipelineColours[pipeline] || '#666' | ||
} | ||
|
||
export default { calculatePipelineColours, getPipelineColour } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.