Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 | /*
* Part of Pleiar.no - a collection of tools for nurses
*
* Copyright (C) Fagforbundet 2019
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
// @flow
/*
* Dictionary types
*/
/**
* A signle dictionary entry
*/
export type DictionaryEntry = {|
expression: string,
moreInfoURLs?: Array<string>,
description: string,
keywords?: string,
seeHandbook?: string,
lookupKey?: string,
seeAlso: Array<string>
|};
/**
* The data structure used to store `DictionaryEntry` items
*/
export type DictionaryDataStructure = Array<DictionaryEntry>;
/*
* External resources types
*/
/**
* A single external resource entry
*/
export type ExternalResourcesEntry = {|
title: string,
url: string,
description: string,
keywords?: string,
language: "Norsk" | "Engelsk"
|};
/**
* The external resources data structure
*/
export type ExternalResourcesDataStructure = Array<ExternalResourcesEntry>;
/*
* Lab value types
*/
/**
* A single lab value
*/
export type LabValueEntry = {|
navn: string,
materiale: "B" | "E" | "P" | "PT" | "S",
ref: string,
category: string,
merknad?: string
|};
/**
* The data structure used to store lab values
*/
export type LabValueDataStructure = {|
values: Array<LabValueEntry>,
index: {|
[string]: Array<number>
|}
|};
/*
* Nutricalc types
*/
/**
* A single element of nutritional info
*/
export type NutritionInfoEntry = {|
kcal: number,
name: string,
fluidML?: number,
protein?: number,
|};
/**
* The data structrue for basicGroups
*/
export type NutritionGroupsDataStructure = {|
[string]: NutritionInfoEntry
|};
/**
* The data structure for the entire datastructure
*/
export type NutritionDataStructure = {|
customLabel: string,
basicGroups: NutritionGroupsDataStructure
|};
/*
* Handbook types
*/
/**
* Represents a single path in the handbook. An array of path component strings.
*/
export type HandbookPath = Array<string>;
/**
* A single handbook page. Should generally not be referenced directly, but go
* through the {@link HandbookEntry} object.
*/
export type HandbookDataEntry = {|
toc: Array<string>,
content: string,
title: string,
path: HandbookPath,
public: boolean,
hideTOC?: boolean,
customURL?: string,
previous?: HandbookPath,
next?: HandbookPath,
|};
/**
* The datastructure used to store the entire handbook
*/
export type HandbookDataStructure = {|
order: Array<string>,
title: string,
displayIndexLink?: boolean,
article?: HandbookDataEntry,
tree: {|
[string]: HandbookDataEntry | HandbookDataStructure
|}
|};
/**
* A single tool entry
*/
export type ToolListEntry = {|
path: string,
title: string,
description?: string,
keywords?: string
|};
/**
* The datastructure used to define the list of tools
*/
export type ToolsListDataStructure = Array<{|
title: string,
tools: Array<ToolListEntry>,
|}>;
/*
* Types used in search metadata
*/
export type SearchMetadataEntry = {|
title: string,
url: string,
description?: string,
|};
/*
* Types for externally indexed data
*/
export type ExternallyIndexedItem = {|
title: string,
text: string,
url: string,
type: "other" | "fagprat",
keywords?: string,
|};
export type ExternallyIndexedList = Array<ExternallyIndexedItem>;
export type FESTDrugEntry = {|
name: string,
exchangeGroup?: number,
atc?: string
|};
export type FESTExchangeGroupEntry = {|
merknad?: string,
drugIndexes: Array<number>,
atc: string
|};
/**
* The datastructure of the FEST data
*/
export type FESTDataList = {|
drugs: Array<FESTDrugEntry>,
exchangeList: Array<FESTExchangeGroupEntry>,
fVer: number,
fCompV: number
|};
/*
* Elearn/quiz types
*/
export type endSlideContent = {|
markdown: string,
header: string,
|};
export type quizManagerSingleAnswer = {|
entry: string,
correct?: boolean,
|};
export type quizManagerQuestionContainer = {|
question: string,
markdown: ?string,
splashSlide: ?boolean,
numberOfCorrectAnswersRequired: ?number,
answers: Array<quizManagerSingleAnswer>,
|};
export type quizRootData = {|
title: string,
description?: string,
keywords?: string,
endSlideContent: ?endSlideContent,
quiz: Array<quizManagerQuestionContainer>,
|};
export type QuizDataContainer = {|
[string]: quizRootData,
|};
|