type
stringclasses
7 values
content
stringlengths
4
9.55k
repo
stringlengths
7
96
path
stringlengths
4
178
language
stringclasses
1 value
MethodDeclaration
ngOnInit() { this.show(this._route.snapshot.params['id']) }
guaracyalima/webapp_bseg
src/app/bseg/insurances/auto/auto-show/auto-show.component.ts
TypeScript
MethodDeclaration
public show(id: number) { this._db.show(id) .subscribe(success => { this.auto = success, this.client = success.client this.coverage = success.coverage }, error => console.error('Error to find auto insurance', error)) }
guaracyalima/webapp_bseg
src/app/bseg/insurances/auto/auto-show/auto-show.component.ts
TypeScript
ClassDeclaration
export class QueryInfo { info?: any; progress: number; status: QueryState; totalNumTasks?: number; totalNumCompletedTasks?: number; numActiveTasks?: number; numCompletedCurrentStageTasks?: number; dag?: string; constructor(state: QueryStateEnum = QueryStateEnum.WAITING) { this.progress = 0; this.status = new QueryState(state); } submit(info: Partial<QueryInfo>) { if (this.status.submit()) { this.assign(info); return true; } return false; } onWaiting(info: Partial<QueryInfo>) { if (this.status.onWaiting()) { this.assign(info); return true; } return false; } onRun(info: Partial<QueryInfo>) { if (this.status.onRun()) { this.assign(info); return true; } return false; } onProgress(info: Partial<QueryInfo>) { if (this.status.onProgress()) { this.assign(info); return true; } return false; } onCancel(info: Partial<QueryInfo>) { if (this.status.onCancel()) { this.assign(info); return true; } return false; } onError(info: Partial<QueryInfo>) { if (this.status.onError()) { this.assign(info); return true; } return false; } onSuccess(info: Partial<QueryInfo>) { if (this.status.onSuccess()) { this.assign(info); return true; } return false; } toString() { return this.status.toString(); } valueOf() { return this.status.valueOf(); } private assign(info: Partial<QueryInfo>) { Object.assign(this, _.omit(info, ['status'])); } }
anruky/Zeta
zds-web/src/types/workspace/notebook-job/query/query-info.ts
TypeScript
MethodDeclaration
submit(info: Partial<QueryInfo>) { if (this.status.submit()) { this.assign(info); return true; } return false; }
anruky/Zeta
zds-web/src/types/workspace/notebook-job/query/query-info.ts
TypeScript
MethodDeclaration
onWaiting(info: Partial<QueryInfo>) { if (this.status.onWaiting()) { this.assign(info); return true; } return false; }
anruky/Zeta
zds-web/src/types/workspace/notebook-job/query/query-info.ts
TypeScript
MethodDeclaration
onRun(info: Partial<QueryInfo>) { if (this.status.onRun()) { this.assign(info); return true; } return false; }
anruky/Zeta
zds-web/src/types/workspace/notebook-job/query/query-info.ts
TypeScript
MethodDeclaration
onProgress(info: Partial<QueryInfo>) { if (this.status.onProgress()) { this.assign(info); return true; } return false; }
anruky/Zeta
zds-web/src/types/workspace/notebook-job/query/query-info.ts
TypeScript
MethodDeclaration
onCancel(info: Partial<QueryInfo>) { if (this.status.onCancel()) { this.assign(info); return true; } return false; }
anruky/Zeta
zds-web/src/types/workspace/notebook-job/query/query-info.ts
TypeScript
MethodDeclaration
onError(info: Partial<QueryInfo>) { if (this.status.onError()) { this.assign(info); return true; } return false; }
anruky/Zeta
zds-web/src/types/workspace/notebook-job/query/query-info.ts
TypeScript
MethodDeclaration
onSuccess(info: Partial<QueryInfo>) { if (this.status.onSuccess()) { this.assign(info); return true; } return false; }
anruky/Zeta
zds-web/src/types/workspace/notebook-job/query/query-info.ts
TypeScript
MethodDeclaration
toString() { return this.status.toString(); }
anruky/Zeta
zds-web/src/types/workspace/notebook-job/query/query-info.ts
TypeScript
MethodDeclaration
valueOf() { return this.status.valueOf(); }
anruky/Zeta
zds-web/src/types/workspace/notebook-job/query/query-info.ts
TypeScript
MethodDeclaration
private assign(info: Partial<QueryInfo>) { Object.assign(this, _.omit(info, ['status'])); }
anruky/Zeta
zds-web/src/types/workspace/notebook-job/query/query-info.ts
TypeScript
FunctionDeclaration
function parser_cut_or_tape_box(parser: CommandParser): cut_or_tape_bindings { let operation: EdgeOpWord = <EdgeOpWord>parser.get_match('command').match; let dir: Token | false; if (parser.is_done()) { dir = 'horizontally'; } else { dir = parser.consume_option(edge_dir_word_tokens); if (!dir){ return; } } let dim_a: number; let dim_b: number; if (dir === 'vertically') { dim_a = 0; dim_b = 1; } else { dim_a = 1; dim_b = 0; } let start_pos_a: Token | false; if (parser.is_done()){ if (dim_a === 0) { //default for vertical start_pos_a = 'center'; } else { // default for horizontal start_pos_a = 'middle'; } } else { if (!parser.consume_filler(['along'])){ return; } start_pos_a = parser.consume_option(position_word_tokens, 'start_pos_a'); if (!start_pos_a) { return; } if (dim_2_pos[dim_a].indexOf(start_pos_a) === -1) { parser.get_match('start_pos_a').display = DisplayEltType.error; parser.validity = MatchValidity.invalid; return {message: `invalid start_pos_a for ${dir} ${operation}: ${start_pos_a}`}; } } let start_pos_b: Token | false; let end_pos_b: Token | false; if (parser.is_done()) { if (dim_a === 0) { //default for vertical start_pos_b = 'top'; end_pos_b = 'bottom'; } else { // default for horizontal start_pos_b = 'left'; end_pos_b = 'right'; } } else { if (!parser.consume_filler(['from'])){ return; } start_pos_b = parser.consume_option(position_word_tokens, 'start_pos_b'); if (!start_pos_b) { return; } if (dim_2_pos[dim_b].indexOf(start_pos_b) === -1) { parser.get_match('start_pos_b').display = DisplayEltType.error; parser.validity = MatchValidity.invalid; return {message: `invalid start_pos_b for ${dir} ${operation}: ${start_pos_b}`}; } if (!parser.consume_filler(['to'])){ return; } end_pos_b = parser.consume_option(position_word_tokens, 'end_pos_b'); if (!end_pos_b) { return; } if (dim_2_pos[dim_b].indexOf(end_pos_b) === -1) { parser.get_match('end_pos_b').display = DisplayEltType.error; parser.validity = MatchValidity.invalid; return {message: `invalid end_pos_b for ${dir} ${operation}: ${end_pos_b}`}; } } let pt1: Point2 = [null, null]; let pt2: Point2 = [null, null]; pt1[dim_a] = pt2[dim_a] = dim_2_pos[dim_a].indexOf(start_pos_a); pt1[dim_b] = dim_2_pos[dim_b].indexOf(start_pos_b); pt2[dim_b] = dim_2_pos[dim_b].indexOf(end_pos_b); if (Math.abs(pt1[dim_b] - pt2[dim_b]) == 0) { parser.get_match('end_pos_b').display = DisplayEltType.error; return {message: 'no change between start_pos_b and end_pos_b.'}; } if (!parser.done()){ return; } let cut_points: [Point2, Point2][]; if (Math.abs(pt1[dim_b] - pt2[dim_b]) === 2) { let pt3: Point2 = [null, null]; pt3[dim_a] = dim_2_pos[dim_a].indexOf(start_pos_a); pt3[dim_b] = 1; cut_points = [[pt1, pt3], [pt3, pt2]]; } else { cut_points = [[pt1, pt2]]; } return {cut_points}; }
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
FunctionDeclaration
function cut_or_tape_box(world: SingleBoxWorld, parser: CommandParser): CommandResult<SingleBoxWorld> { //operation: EdgeOpWord, face_w: FaceWord, dir: EdgeDirWord, start_pos_a: PositionWord, start_pos_b: PositionWord, end_pos_b: PositionWord): CommandResult { //let inner_this = this; return with_world_update(function (effects) { let operation: EdgeOpWord = <EdgeOpWord>parser.get_match('command').match; let parse_result = parser_cut_or_tape_box(parser); if (parse_result === undefined || parse_result.message !== undefined) { return parse_result; } let {cut_points} = parse_result; let cut_edge_states: EdgeState[] = []; let new_box = world.box; let face = Face.t; cut_points.forEach(function ([p1, p2]) { let vertices = new_box.box_mesh.face_meshes.get(face).vertices; let v1 = vertices.get(p1[0], p1[1]); let v2 = vertices.get(p2[0], p2[1]); let edge = new Edge(v1, v2); let new_state: EdgeState; if (new_box.edge_state.has_key(edge)) { new_state = new_box.edge_state.get(edge); } else { new_state = new EdgeState(); } cut_edge_states.push(new_state); new_box = new_box.cut_or_tape(word_2_edge_op.get(operation), face, p1, p2); }); effects.new_dangles.forEach(function (nd) { if (array_fuck_contains(effects.new_rends, nd.partition)) { effects.new_dangles.splice(effects.new_dangles.indexOf(nd), 1); } }); effects.repaired_dangles.forEach(function (rd) { if (array_fuck_contains(effects.new_rends, rd.partition)) { effects.repaired_dangles.splice(effects.repaired_dangles.indexOf(rd), 1); } }); let message: string; if (operation == 'cut') { message = world.cut_message(new_box, cut_edge_states, effects); } else { message = world.tape_message(new_box, cut_edge_states, effects); } return {world: world.update({box: new_box}), message: message}; }); }
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
FunctionDeclaration
function open_or_close_dangle(world: SingleBoxWorld, parser: CommandParser): CommandResult<SingleBoxWorld> { // operation: DangleOpWord, face_w: FaceWord) return with_world_update(function (effects) { let operation = <DangleOpWord>parser.get_match('command').match; let face_w = parser.consume_option<FaceWord>(face_word_tokens, 'face'); if (!face_w || !parser.done()) { return; } let face = word_2_face.get(face_w) let applicable_dangles = world.box.dangle_state.keys_array().filter((d) => d.free_face == face); let new_box = world.box; let updated: Dangle[] = []; applicable_dangles.forEach(function (d){ let err = false; try { new_box = new_box.open_or_close_dangle(word_2_dangle_op.get(operation), d); } catch (e) { err = true; if (!(e instanceof WorldUpdateError)) { throw e; } } if (!err) { updated.push(d); } }); if (updated.length === 0) { parser.get_match('face').display = DisplayEltType.error; parser.validity = MatchValidity.invalid; return {message: `No dangles to ${operation} on ${face_w} face`}; } let swing_dir_msg = operation === 'close' ? 'in' : 'out'; let num_hinges = new Set(updated.map((d) => d.fixed_face)).size; let hinge_msg: string; if (num_hinges == 1) { hinge_msg = 'hinge'; } else { hinge_msg = 'hinges'; } let message = `You swing the cardboard on the ${face_w} of the box ${swing_dir_msg} on its ${hinge_msg}`; if (!world.box.appears_open() && new_box.appears_open()) { message += '\nYou get a glimpse inside the box through the opening.'; if (new_box.appears_empty()) { message += " It's empty."; } else { message += ` You can see ${new_box.next_item().pre_gestalt()} inside.`; } } if (effects.box_collapsed) { message += '\nThe added stress on the box causes it to collapse in on itself.'; if (effects.collapse_spilled_items.length > 0) { message += ' ' + world.item_spill_message(effects.collapse_spilled_items); } } return {world: world.update({box: new_box}), message: message}; }); }
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
FunctionDeclaration
function remove_or_replace_rend(world: SingleBoxWorld, parser: CommandParser): CommandResult<SingleBoxWorld> { //operation: RendOpWord, face_w: FaceWord): CommandResult { return with_world_update(function (effects) { let operation = <RendOpWord>parser.get_match('command').match; let face_w = parser.consume_option<FaceWord>(face_word_tokens, 'face'); if (!face_w || !parser.done()) { return; } let face = word_2_face.get(face_w); let applicable_rends: Partition[] = []; world.box.rend_state.entries_array().forEach(function ([r, s]) { let face_membership = world.box.box_mesh.get_partition_face_membership(r); if (face_membership.get(face) > 0) { applicable_rends.push(r); } }); let new_box = world.box; let updated: Partition[] = []; applicable_rends.forEach(function (r){ let err = false; try { new_box = new_box.open_or_close_rend(word_2_rend_op.get(operation), r); } catch (e) { err = true; if (!(e instanceof WorldUpdateError)) { throw e; } } if (!err) { updated.push(r); } }); if (updated.length == 0) { parser.get_match('face').display = DisplayEltType.error; parser.validity = MatchValidity.invalid; return {message: `No rends to ${operation} on ${face_w} face`}; } let total_face_membership = new Map<Face, number>(); total_face_membership = updated.reduce( (total, r) => counter_update( total, world.box.box_mesh.get_partition_face_membership(r)), total_face_membership); let face_msg = face_message(counter_order(total_face_membership)); let message: string; if (operation === 'remove') { message = `You remove the free cardboard from the ${face_msg} and place it to the side.`; } else { `You replace the missing cardboard from the ${face_msg}.`; } if (!world.box.appears_open() && new_box.appears_open()) { message += '\nYou get a glimpse inside the box through the opening.'; if (new_box.appears_empty()) { message += " It's empty."; } else { message += ` You can see ${new_box.next_item().pre_gestalt()} inside.`; } } if (effects.box_collapsed) { message += '\nThe added stress on the box causes it to collapse in on itself.'; if (effects.collapse_spilled_items.length > 0) { message += ' ' + world.item_spill_message(effects.collapse_spilled_items); } } return {world: world.update({box: new_box}), message:message}; }); }
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
FunctionDeclaration
export function test() { let contents: Item[] = [new Codex(), new Pinecone(), new CityKey()]; let world = new SingleBoxWorld({box: new Box({contents: contents})}); console.log('NEW WORLD: test heavy spillage when rolling\n\n\n'); let d = new WorldDriver(world); d.apply_command('lift'); d.apply_command('roll forward'); d.apply_command('rotate left'); d.apply_command('rotate le', false); // cut the top face vertically along the center from top to bottom d.apply_command('cut on top vertically along center from top to bottom'); // cut the top face vertically along the right edge from top to bottom d.apply_command('cut on top vertically along right from top to bottom'); // should result in a dangle // cut the top face horizontally along the top edge from center to right d.apply_command('cut on top horizontally along top from center to right'); // should result in a rend // cut the top face horizontally along the bottom edge from center to right d.apply_command('cut on top horizontally along bottom from center to right'); d.apply_command('roll forward'); // should result in the rend facing straight down, maybe spilling d.apply_command('roll forward'); d.apply_command('lift'); console.log('\n\n\nNEW WORLD: test heavy spillage and collapse from bottom when lifting\n\n\n'); let d2 = new WorldDriver(world); d2.apply_command('cut on front horizontally along bottom from left to right'); d2.apply_command('rotate left'); d2.apply_command('cut on front horizontally along bottom from left to right'); d2.apply_command('rotate left'); d2.apply_command('cut on front horizontally along bottom from left to right'); d2.apply_command('rotate left'); d2.apply_command('cut on front horizontally along bottom from left to right'); d2.apply_command('lift'); console.log('\n\n\nNEW WORLD: test taping\n\n\n'); let d3 = new WorldDriver(world); d3.apply_command('cut on top horizontally along top from left to right'); d3.apply_command('cut on top horizontally along bottom from left to right'); d3.apply_command('cut on top vertically along left from top to bottom'); d3.apply_command('open top'); d3.apply_command('take item'); d3.apply_command('close top'); d3.apply_command('cut on top vertically along right from top to bottom'); d3.apply_command('remove top'); d3.apply_command('take item'); d3.apply_command('take item'); d3.apply_command('replace top'); d3.apply_command('tape on top vertically along right from top to bottom'); d3.apply_command('tape on top vertically along left from top to middle'); console.log('\n\n\nNEW WORLD: test light spillage when rolling and lifting\n\n\n'); let d4 = new WorldDriver(world); d4.apply_command('cut on front horizontally along top from left to right'); d4.apply_command('cut on front horizontally along bottom from left to right'); d4.apply_command('cut on front vertically along left from top to bottom'); d4.apply_command('lift'); d4.apply_command('cut on front vertically along right from top to bottom'); d4.apply_command('roll right'); }
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
ArrowFunction
(d) => dangle == d
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
ArrowFunction
(state) => state == RendState.open
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
ArrowFunction
(d) => d !== dir_face && d !== dir_2_opposite.get(dir_face)
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
ArrowFunction
(x) => face_membership.get(x)
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
ArrowFunction
(x, y) => x + y
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
ArrowFunction
(f) => face_membership.get(f) > 0
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
ArrowFunction
(ces) => ces.cardboard == CardboardEdge.intact
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
ArrowFunction
(ces) => ces.tape == TapeEdge.taped
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
ArrowFunction
(i) => i.pre_gestalt()
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
ArrowFunction
(i) => `${i.article()} ${i.name()} - ${i.post_gestalt()}`
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
ArrowFunction
(x, i) => x + i.weight()
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
ArrowFunction
(d) => d.free_face == face
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
ArrowFunction
(d) => d.fixed_face
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
ArrowFunction
(total, r) => counter_update( total, world.box.box_mesh.get_partition_face_membership(r))
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
InterfaceDeclaration
export interface BoxParams { box_mesh?: BoxMesh, rend_state?: FuckDict<Partition, RendState>, dangle_state?: FuckDict<Dangle, RendState>, edge_state?: FuckDict<Edge, EdgeState>, contents?: Item[] }
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
InterfaceDeclaration
export interface SingleBoxWorldParams { box?: Box, taken_items?: Item[], spilled_items?: Item[] }
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
TypeAliasDeclaration
type cut_or_tape_bindings = {cut_points?: [Point2, Point2][]} & {message?: string};
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
MethodDeclaration
update({box_mesh, rend_state, dangle_state, edge_state, contents}: BoxParams){ if (box_mesh === undefined) { box_mesh = this.box_mesh; } if (rend_state === undefined) { rend_state = this.rend_state; } if (dangle_state === undefined) { dangle_state = this.dangle_state; } if (edge_state === undefined) { edge_state = this.edge_state; } if (contents === undefined) { contents = this.contents; } return new Box({box_mesh, rend_state, dangle_state, edge_state, contents}); }
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
MethodDeclaration
default_rend_state(box_mesh: BoxMesh) { let rends = box_mesh.get_free_rends(); let result = new FuckDict<Partition, RendState>(); rends.forEach(function (r) { result.set(r, RendState.closed); }); return result; }
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
MethodDeclaration
default_dangle_state(box_mesh: BoxMesh) { let dangles = box_mesh.get_dangles(); let result = new FuckDict<Dangle, RendState>(); dangles.forEach(function (d) { result.set(d, RendState.closed); }); return result; }
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
MethodDeclaration
open_or_close_rend(operation: RendOperation, rend: Partition) { let box_rends = this.box_mesh.get_rends(); if (!array_fuck_contains(box_rends, rend)){ throw new CommandError('rend does not exist on the box'); } if (this.box_mesh.is_partition_fixed(rend)) { throw new WorldUpdateError('cannot open or close a fixed rend'); } let new_rend_state = this.rend_state.copy(); let intended_new_state = operation == RendOperation.close ? RendState.closed : RendState.open; if (intended_new_state == new_rend_state.get(rend)) { throw new WorldUpdateError(`cannot ${RendOperation[operation]} a rend that is already ${RendState[intended_new_state]}`); } new_rend_state.set(rend, intended_new_state); let new_box = this.update({rend_state: new_rend_state}); if (new_box.is_collapsed()) { let effects = world_update.effects; effects.box_collapsed = true; effects.collapse_spilled_items.push(...new_box.contents); let new_contents: Item[] = []; new_box = new_box.update({contents: new_contents}); } return new_box; }
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
MethodDeclaration
open_or_close_dangle(operation: RendOperation, dangle: Dangle) { if (this.box_mesh.is_partition_fixed(dangle.partition)) { throw new WorldUpdateError('cannot open or close a fixed dangle'); } let box_dangles = this.box_mesh.get_dangles(); if (box_dangles.some((d) => dangle == d)){ throw new CommandError('dangle does not exist on the box'); } let intended_new_state = operation == RendOperation.close ? RendState.closed : RendState.open; if (this.dangle_state.get(dangle) == intended_new_state) { throw new WorldUpdateError(`cannot ${RendOperation[operation]} a dangle that is already ${RendState[intended_new_state]}`); } let new_dangle_state = this.dangle_state.copy(); new_dangle_state.set(dangle, intended_new_state); let new_box = this.update({dangle_state: new_dangle_state}); if (new_box.is_collapsed()) { let effects = world_update.effects; effects.box_collapsed = true; effects.collapse_spilled_items.push(...new_box.contents); let new_contents: Item[] = []; new_box = new_box.update({contents: new_contents}); } return new_box; }
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
MethodDeclaration
rotate_y(degrees: number) { let new_box_mesh = this.box_mesh.rotate_y(degrees); return this.update({box_mesh: new_box_mesh}); }
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
MethodDeclaration
roll(direction: Direction) { if (this.dangle_state.values_array().some((state) => state == RendState.open)) { throw new WorldUpdateError('cannot roll a box with open dangles'); } let new_box_mesh = this.box_mesh.roll(direction); let dir_face: Face = direction_2_face.get(direction); let new_contents = this.contents.slice(); let rend_state_updates = this.rend_state.copy(); let dangle_state_updates = this.dangle_state.copy(); let inner_this = this; let effects = world_update.effects; if (new_contents.length > 0){ let dir_2_opposite = new Map<Face, Face>([ [Face.n, Face.s], [Face.s, Face.n], [Face.e, Face.w], [Face.w, Face.e]]); let heavy_spill_faces: [Face, Face][] = [ [dir_face, Face.b], [Face.t, dir_face], [Face.b, dir_2_opposite.get(dir_face)]]; let light_spill_faces = ([Face.n, Face.s, Face.e, Face.w] .filter((d) => d !== dir_face && d !== dir_2_opposite.get(dir_face)) ); this.rend_state.entries_array().forEach(function ([r, state]) { let face_membership = inner_this.box_mesh.get_partition_face_membership(r); for (let [test_face, spill_face] of heavy_spill_faces) { if (face_membership.get(test_face) > 0) { effects.spill_faces.push(spill_face); effects.spillage_level = SpillageLevel.heavy; effects.spilled_items.push(...new_contents); new_contents = []; if (state == RendState.closed) { effects.spilled_rends == effects.spilled_rends.set(r, undefined); rend_state_updates.set(r, RendState.open); } } } for (let spill_face of light_spill_faces) { if (face_membership.get(spill_face) > 0) { effects.spill_faces.push(spill_face); if (effects.spillage_level < SpillageLevel.light) { effects.spillage_level = SpillageLevel.light; } if (new_contents.length > 0) { effects.spilled_items.push(new_contents.shift()); } } } }); this.box_mesh.get_dangles().forEach(function (d) { let spillage_level = SpillageLevel.none; let spill_face: Face; if (d.free_face == Face.t) { spillage_level = SpillageLevel.heavy; spill_face = dir_face; } else if (d.free_face == dir_face) { spillage_level = SpillageLevel.heavy; spill_face = Face.b; } else if (light_spill_faces.indexOf(d.free_face) !== -1) { spillage_level = SpillageLevel.light; spill_face = d.free_face; } if (spillage_level !== SpillageLevel.none) { if (spillage_level > effects.spillage_level) { effects.spillage_level = spillage_level; } effects.spill_faces.push(spill_face); if (spillage_level == SpillageLevel.light) { if (new_contents.length > 0) { effects.spilled_items.push(new_contents.shift()); } } else if (spillage_level == SpillageLevel.heavy) { effects.spilled_items.push(...new_contents); new_contents = []; } effects.spilled_dangles.set(d, undefined); dangle_state_updates.set(d, RendState.open); } }); new_box_mesh.get_dangles().forEach(function (d) { if (d.free_face == dir_2_opposite.get(dir_face)) { effects.spillage_level = SpillageLevel.heavy; effects.spill_faces.push(dir_2_opposite.get(dir_face)); effects.spilled_items.push(...new_contents); new_contents = []; effects.spilled_dangles.set(d, undefined); dangle_state_updates.set(d, RendState.open); } }); } let new_box = this.update({ box_mesh: new_box_mesh, rend_state: rend_state_updates, dangle_state: dangle_state_updates, contents: new_contents }); if (new_box.is_collapsed()) { effects.box_collapsed = true; effects.collapse_spilled_items.push(...new_contents); new_contents = []; new_box = new_box.update({contents: new_contents}); } return new_box; }
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
MethodDeclaration
lift() { let effects = world_update.effects; let inner_this = this; let new_contents = this.contents.slice(); let new_rend_state = this.rend_state.copy(); let new_dangle_state = this.dangle_state.copy(); if (new_contents.length > 0) { let test_box_mesh = this.box_mesh.roll(Direction.s).roll(Direction.s); test_box_mesh.get_free_rends().forEach(function (r) { let face_membership = test_box_mesh.get_partition_face_membership(r); let test_faces = [Face.b, Face.n, Face.s, Face.e, Face.w]; let count = test_faces.map((x) => face_membership.get(x)).reduce((x, y) => x + y); if (face_membership.get(Face.t) > count) { effects.spillage_level = SpillageLevel.heavy; effects.spill_faces.push(Face.b); effects.spilled_items.push(...new_contents); new_contents = []; if (!new_rend_state.has_key(r) || new_rend_state.get(r) === RendState.closed) { effects.spilled_rends.set(r, undefined); new_rend_state.set(r, RendState.open); } } }); test_box_mesh.get_dangles().forEach(function (d) { if (d.free_face == Face.t) { effects.spillage_level = SpillageLevel.heavy; effects.spill_faces.push(Face.b); effects.spilled_items.push(...new_contents); new_contents = []; effects.spilled_dangles.set(d, undefined); new_dangle_state.set(d, RendState.open); } }); this.rend_state.entries_array().forEach(function ([r, state]) { let face_membership = inner_this.box_mesh.get_partition_face_membership(r); let light_spill_faces = [Face.n, Face.s, Face.e, Face.w].filter((f) => face_membership.get(f) > 0); if (light_spill_faces.length > 0) { if (effects.spillage_level < SpillageLevel.light) { effects.spillage_level = SpillageLevel.light; } effects.spill_faces.push(...light_spill_faces); if (new_contents.length > 0) { effects.spilled_items.push(new_contents.shift()); } if (state == RendState.closed) { effects.spilled_rends.set(r, undefined); new_rend_state.set(r, RendState.open); } } }); this.dangle_state.entries_array().forEach(function ([d, state]) { if ([Face.n, Face.s, Face.e, Face.w].indexOf(d.free_face) !== -1) { if (effects.spillage_level < SpillageLevel.light) { effects.spillage_level = SpillageLevel.light; } effects.spill_faces.push(d.free_face); if (new_contents.length > 0) { effects.spilled_items.push(new_contents.shift()); } } }); } let new_box = this.update({rend_state: new_rend_state, dangle_state: new_dangle_state, contents: new_contents}); if (new_box.is_collapsed()) { effects.box_collapsed = true; effects.collapse_spilled_items.push(...new_contents); new_contents = []; new_box = new_box.update({contents: new_contents}); } return new_box; }
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
MethodDeclaration
cut(face: Face, start: Point2, end: Point2) { return this.cut_or_tape(EdgeOperation.cut, face, start, end); }
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
MethodDeclaration
tape(face: Face, start: Point2, end: Point2) { return this.cut_or_tape(EdgeOperation.tape, face, start, end); }
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
MethodDeclaration
cut_or_tape(operation: EdgeOperation, face: Face, start: Point2, end: Point2) { let effects = world_update.effects; let inner_this = this; if (face !== Face.s && face !== Face.t) { throw new WorldUpdateError('cannot cut or tape sides other than top or front'); } let [x1, y1] = start; let [x2, y2] = end; let v1 = this.box_mesh.face_meshes.get(face).vertices.get(x1, y1); let v2 = this.box_mesh.face_meshes.get(face).vertices.get(x2, y2); let edge = new Edge(v1, v2); let quadrants = edge_2_quadrants.get(edge); this.rend_state.entries_array().forEach(function ([r, state]) { if (state == RendState.open && quadrants.every(r.has_key)) { throw new WorldUpdateError('cannot cut or tape on an open rend'); } }); this.dangle_state.entries_array().forEach(function ([d, state]) { if (state == RendState.open && quadrants.every(d.partition.has_key)) { throw new WorldUpdateError('cannot cut or tape on an open dangle'); } }); let new_box_mesh: BoxMesh; if (operation == EdgeOperation.cut) { new_box_mesh = this.box_mesh.cut(face, start, end); } else { new_box_mesh = this.box_mesh.tape(face, start, end); } let new_rend_state = this.default_rend_state(new_box_mesh); this.rend_state.entries_array().forEach(function ([r, state]) { if (new_rend_state.has_key(r)) { new_rend_state.set(r, state); } else { effects.repaired_rends.push(r); } }); new_rend_state.entries_array().forEach(function ([new_r, state]) { if (!inner_this.rend_state.has_key(new_r)) { effects.new_rends.push(new_r); } }); let new_dangle_state = this.default_dangle_state(new_box_mesh); this.dangle_state.entries_array().forEach(function ([d, state]) { if (new_dangle_state.has_key(d)) { new_dangle_state.set(d, state); } else { effects.repaired_dangles.push(d); } }); new_dangle_state.entries_array().forEach(function ([new_d, state]) { if (!inner_this.dangle_state.has_key(new_d)) { effects.new_dangles.push(new_d); } }); let new_edge_state = this.edge_state.copy(); let new_state: EdgeState; if (new_edge_state.has_key(edge)) { new_state = new_edge_state.get(edge); } else { new_state = new EdgeState() } if (operation == EdgeOperation.cut) { new_edge_state.set(edge, new_state.cut()); } else { new_edge_state.set(edge, new_state.apply_tape()); } return this.update({box_mesh: new_box_mesh, rend_state: new_rend_state, dangle_state: new_dangle_state, edge_state: new_edge_state}); }
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
MethodDeclaration
take_next_item() { let effects = world_update.effects; if (this.contents.length == 0) { throw new WorldUpdateError('cannot take an item from an empty box'); } if (!this.appears_open()) { throw new WorldUpdateError('cannot take an item from a box with no visible openings'); } let new_contents = this.contents.slice(); effects.taken_items.push(new_contents.shift()); return this.update({contents: new_contents}); }
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
MethodDeclaration
next_item() { if (this.contents.length == 0) { return null; } return this.contents[0]; }
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
MethodDeclaration
appears_open() { if (this.rend_state.values_array().some((state) => state == RendState.open)) { return true; } if (this.dangle_state.values_array().some((state) => state == RendState.open)) { return true; } return false; }
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
MethodDeclaration
appears_empty() { return this.appears_open() && this.contents.length == 0; }
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
MethodDeclaration
is_collapsed(){ let open_faces = new Map<Face, number>(); let inner_this = this; this.rend_state.entries_array().forEach(function ([r, state]) { if (state == RendState.open){ let face_membership = inner_this.box_mesh.get_partition_face_membership(r); counter_update(open_faces, face_membership); } }); this.dangle_state.entries_array().forEach(function ([d, state]) { if (state == RendState.open){ let face_membership = inner_this.box_mesh.get_partition_face_membership(d.partition); counter_update(open_faces, face_membership); } }); let total_open_sides = 0; open_faces.forEach(function (count, face) { if (count > 0) { total_open_sides += 1; } }); return total_open_sides >= 3; }
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
MethodDeclaration
update({box, taken_items, spilled_items}: SingleBoxWorldParams) { if (box === undefined) { box = this.box; } if (taken_items === undefined) { taken_items = this.taken_items; } if (spilled_items === undefined) { spilled_items = this.spilled_items; } return new SingleBoxWorld({box, taken_items, spilled_items}); }
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
MethodDeclaration
get_commands() { let commands: Command<SingleBoxWorld>[] = []; commands.push(rotate_y_box); commands.push(roll_box); commands.push(lift_box); commands.push(cut_box); commands.push(tape_box); commands.push(open_dangle); commands.push(close_dangle); commands.push(remove_rend); commands.push(replace_rend); commands.push(take_item); return commands; }
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
MethodDeclaration
cut_message(new_box: Box, cut_edge_states: EdgeState[], effects: WorldUpdateEffects) { let cut_message: string; if (cut_edge_states[0].cardboard == CardboardEdge.intact) { cut_message = 'You slide your blade along the cardboard'; if (cut_edge_states[0].tape == TapeEdge.taped) { cut_message += ' and tape'; } cut_message += '.'; } else { if (cut_edge_states[0].tape == TapeEdge.taped) { cut_message = 'You draw your blade easily along the line. It slits open the thin layer of tape covering the gap in the cardboard.'; } else { cut_message = 'You slide your blade along the line, but nothing is there to resist it.'; } } if (cut_edge_states.length > 1) { if (cut_edge_states[1].cardboard != cut_edge_states[0].cardboard) { if (cut_edge_states[1].cardboard == CardboardEdge.intact) { cut_message += ' Halfway across, it catches on solid cardboard, and you pull it along the rest of the way.'; } else { if (cut_edge_states[1].tape == TapeEdge.taped) { cut_message += ' Halfway across, you reach a gap in the cardboard, and your blade slides easily along the thin layer of tape.'; } else { cut_message += ' Halfway across, you reach a gap in the cardboard, and your blade is met with no further resistance.'; } } } } let message = cut_message; if (effects.new_rends.length > 0) { let total_face_membership = new Map<Face, number>(); effects.new_rends.forEach(function (r) { let face_membership = new_box.box_mesh.get_partition_face_membership(r); total_face_membership = counter_update(total_face_membership, face_membership); }) let face_order = counter_order(total_face_membership); let face_msg = face_message(face_order); let new_rends_message: string; if (effects.new_rends.length == 1) { new_rends_message = `A new section of cardboard comes free on the ${face_msg}.`; } else { new_rends_message = `${effects.new_rends.length} new sections of cardboard come free on the ${face_msg}.`; } message += '\n' + new_rends_message; } if (effects.new_dangles.length > 0) { let total_face_membership = new Map<Face, number>(); effects.new_dangles.forEach(function (d) { let face_membership = new_box.box_mesh.get_partition_face_membership(d.partition); total_face_membership = counter_update(total_face_membership, face_membership); }) let face_order = counter_order(total_face_membership); let face_msg = face_message(face_order); let new_rends_message: string; if (effects.new_dangles.length == 1) { new_rends_message = `A new section of cardboard on the ${face_msg} can be swung freely on a hinge.`; } else { new_rends_message = `${effects.new_dangles.length} new sections of cardboard on the ${face_msg} can be swung freely on a hinge.`; } message += '\n' + new_rends_message; } return message; }
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
MethodDeclaration
tape_message(new_box: Box, cut_edge_states: EdgeState[], effects: WorldUpdateEffects) { let tape_message: string; if (cut_edge_states.some((ces) => ces.cardboard == CardboardEdge.intact)) { tape_message = 'You draw out a length of tape and fasten it to the cardboard.'; } else { if (cut_edge_states.some((ces) => ces.tape == TapeEdge.taped)) { tape_message = 'You lay another length of tape over the cut edge.'; } else { tape_message = 'You seal the gap in the cardboard with a length of tape.'; } } let message = tape_message; if (effects.repaired_dangles.length > 0) { let total_face_membership = new Map<Face, number>(); effects.repaired_dangles.forEach(function (d) { let face_membership = new_box.box_mesh.get_partition_face_membership(d.partition); total_face_membership = counter_update(total_face_membership, face_membership); }) let face_order = counter_order(total_face_membership); let face_msg = face_message(face_order); let repaired_dangles_message: string; if (effects.new_rends.length == 1) { repaired_dangles_message = `A formerly freely-swinging section of cardboard on the ${face_msg} can no longer swing on its hinge.`; } else { repaired_dangles_message = `${face_order.length} formerly freely-swinging sections of cardboard on the ${face_msg} can no longer swing on their hinges.`; } message += '\n' + repaired_dangles_message; } return message; }
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
MethodDeclaration
item_spill_message(spilled_items: Item[]){ let si = spilled_items; let during_spill_msg: string; let after_spill_msg: string; if (si.length == 1) { let item_msg = si[0].pre_gestalt(); during_spill_msg = `${capitalize(item_msg)} spills out before you.`; after_spill_msg = `It's ${si[0].article()} ${si[0].name()} - ${si[0].post_gestalt()}.`; } else { let item_msg = si.slice(0, si.length - 1).map((i) => i.pre_gestalt()).join(', ') + ' and ' + si[si.length - 1].pre_gestalt(); during_spill_msg = capitalize(`${item_msg} spill out before you.`); let after_msgs = si.map((i) => `${i.article()} ${i.name()} - ${i.post_gestalt()}`); after_spill_msg = "It's " + after_msgs.slice(0, after_msgs.length - 1).join(', ') + ' and ' + after_msgs[after_msgs.length - 1] + '.'; } let spill_msg = during_spill_msg + ' ' + after_spill_msg; return spill_msg; }
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
MethodDeclaration
spill_message(new_box: Box) { let effects = world_update.effects; let structural_dmg_msgs: string[] = []; if (effects.spilled_rends.size > 0) { let total_face_membership = new Map<Face, number>(); effects.spilled_rends.keys_array().forEach(function (sr) { let sr_mem = new_box.box_mesh.get_partition_face_membership(sr); total_face_membership = counter_update(total_face_membership, sr_mem); }); let sr_faces = counter_order(total_face_membership); let f_msg = face_message(sr_faces); let spilled_rends_msg = `free cardboard on the ${f_msg} falls away`; structural_dmg_msgs.push(spilled_rends_msg); } if (effects.spilled_dangles.size > 0) { let total_face_membership = new Map<Face, number>(); effects.spilled_dangles.keys_array().forEach(function (sd) { let sd_mem = new_box.box_mesh.get_partition_face_membership(sd.partition); total_face_membership = counter_update(total_face_membership, sd_mem); }); let sd_faces = counter_order(total_face_membership); let f_msg = face_message(sd_faces); let spilled_dangles_msg = `dangling cardboard on the ${f_msg} swings open`; structural_dmg_msgs.push(spilled_dangles_msg); } let spill_msg = this.item_spill_message(effects.spilled_items); let result: string; if (structural_dmg_msgs.length > 0) { let structure_dmg_msg = structural_dmg_msgs.join(' and '); result = `${structure_dmg_msg}. ${spill_msg}`; } else { result = spill_msg; } return result; }
spitz-dan-l/wreck
src/typescript/boxes/world.ts
TypeScript
ArrowFunction
async ({ args, context }) => { const { userID } = context.authorization! const client = await context.pg.connect() const query = pgHelpersQuery(client) try { await query("BEGIN")() const songs = await query(SELECT_PLAYLIST_SONGS)({ parse: pipe( convertTableToCamelCase<Song>(), shuffle(), ), variables: { playlistID: args.playlistID, columnNames: join(COLUMN_NAMES.SONG, "songs"), }, }) if (!isEmpty(songs)) { await clearQueue(client)({ userID }) const [ nowPlaying, ...shuffled ] = songs await updateQueueNowPlaying(client, context.ag.index)({ userID, value: nowPlaying!.songID, }) await Promise.all( shuffled.map( ({ songID }, index) => ( query(INSERT_QUEUE_SONG)({ variables: { index, userID, songID, tableName: "queue_laters", }, }) ), ), ) } await query("COMMIT")() } catch (error) { await query("ROLLBACK")() throw error } finally { client.release() } return {} }
olyop/musicloud
player/server/src/resolvers/mutation/shuffle-playlist.ts
TypeScript
ArrowFunction
({ songID }, index) => ( query(INSERT_QUEUE_SONG)({ variables: { index, userID, songID, tableName: "queue_laters", }, }) )
olyop/musicloud
player/server/src/resolvers/mutation/shuffle-playlist.ts
TypeScript
ArrowFunction
() => { const network = 'net' const proxyAddress = 'QmeeasCZ9jLbX...ueBJ7d7csxhb' const networkID = 'redT' let validDID before(() => { validDID = tokensFactory.tokens.createDID(network, proxyAddress, networkID) }) it('should get network from valid DID correclty', function () { const parsedNetwork = AIdUtils.getNetwork(validDID) expect(parsedNetwork).equal(network) }) it('should get network ID from valid DID correclty', function () { const parsedNetworkId = AIdUtils.getNetworkId(validDID) expect(parsedNetworkId).equal(networkID) }) it('should get proxy address from valid DID correclty', function () { const parsedProxyAddres = AIdUtils.getProxyAddress(validDID) expect(parsedProxyAddres).equal(`0x${proxyAddress}`) }) }
validatedid/alastria-identity-lib
test/utils/AidUtils.spec.ts
TypeScript
ArrowFunction
() => { validDID = tokensFactory.tokens.createDID(network, proxyAddress, networkID) }
validatedid/alastria-identity-lib
test/utils/AidUtils.spec.ts
TypeScript
ArrowFunction
(it) => !isEmpty(it)
Cloudxtreme/isolex
src/parser/SplitParser.ts
TypeScript
ClassDeclaration
export class SplitParser extends BaseParser<SplitParserData> implements Parser { protected mapper: ArrayMapper; constructor(options: SplitParserOptions) { super(options, 'isolex#/definitions/service-parser-split'); this.mapper = new ArrayMapper(options.data.dataMapper); } public async parse(msg: Message): Promise<Array<Command>> { const ctx = mustExist(msg.context); const data = await this.decode(msg); this.logger.debug({ data }, 'splitting string'); return [await this.createCommand(ctx, this.mapper.map(data))]; } public async decode(msg: Message): Promise<Array<string>> { if (msg.type !== TYPE_TEXT) { throw new MimeTypeError(); } const body = this.matcher.removeMatches(msg.body); return this.split(body).map(trim).filter((it) => !isEmpty(it)); } public split(msg: string): Array<string> { if (this.data.every) { return msg.split(''); } else { return split(msg, this.data.split); } } }
Cloudxtreme/isolex
src/parser/SplitParser.ts
TypeScript
InterfaceDeclaration
export interface SplitParserData extends ParserData { dataMapper: ArrayMapperOptions; /** * Split every individual character. */ every: boolean; /** * Split options for delimiters, brackets, etc. */ split: SplitString.SplitOptions; }
Cloudxtreme/isolex
src/parser/SplitParser.ts
TypeScript
TypeAliasDeclaration
export type SplitParserOptions = ParserOptions<SplitParserData>;
Cloudxtreme/isolex
src/parser/SplitParser.ts
TypeScript
MethodDeclaration
public async parse(msg: Message): Promise<Array<Command>> { const ctx = mustExist(msg.context); const data = await this.decode(msg); this.logger.debug({ data }, 'splitting string'); return [await this.createCommand(ctx, this.mapper.map(data))]; }
Cloudxtreme/isolex
src/parser/SplitParser.ts
TypeScript
MethodDeclaration
public async decode(msg: Message): Promise<Array<string>> { if (msg.type !== TYPE_TEXT) { throw new MimeTypeError(); } const body = this.matcher.removeMatches(msg.body); return this.split(body).map(trim).filter((it) => !isEmpty(it)); }
Cloudxtreme/isolex
src/parser/SplitParser.ts
TypeScript
MethodDeclaration
public split(msg: string): Array<string> { if (this.data.every) { return msg.split(''); } else { return split(msg, this.data.split); } }
Cloudxtreme/isolex
src/parser/SplitParser.ts
TypeScript
ArrowFunction
async (client) => { client.logger.success(`${client.user.tag} is online!`); }
T3g4nTheCoder/TypeScriptTesting
src/events/Client Events/ReadyEvent.ts
TypeScript
FunctionDeclaration
export function isValidDatemath(value: string): boolean { const parsedValue = dateMath.parse(value); return !!(parsedValue && parsedValue.isValid()); }
AlexanderWert/kibana
x-pack/plugins/infra/public/utils/datemath.ts
TypeScript
FunctionDeclaration
export function datemathToEpochMillis(value: string, round: 'down' | 'up' = 'down'): number | null { const parsedValue = dateMath.parse(value, { roundUp: round === 'up' }); if (!parsedValue || !parsedValue.isValid()) { return null; } return parsedValue.valueOf(); }
AlexanderWert/kibana
x-pack/plugins/infra/public/utils/datemath.ts
TypeScript
FunctionDeclaration
/** * Extend a datemath value * @param value The value to extend * @param {'before' | 'after'} direction Should the value move before or after in time * @param oppositeEdge For absolute values, the value of the other edge of the range */ export function extendDatemath( value: string, direction: 'before' | 'after' = 'before', oppositeEdge?: string ): DatemathExtension | undefined { if (!isValidDatemath(value)) { return undefined; } // `now` cannot be extended if (value === 'now') { return { value: 'now' }; } // The unit is relative if (value.startsWith('now')) { return extendRelativeDatemath(value, direction); } else if (oppositeEdge && isValidDatemath(oppositeEdge)) { return extendAbsoluteDatemath(value, direction, oppositeEdge); } return undefined; }
AlexanderWert/kibana
x-pack/plugins/infra/public/utils/datemath.ts
TypeScript
FunctionDeclaration
function extendRelativeDatemath( value: string, direction: 'before' | 'after' ): DatemathExtension | undefined { const [, operator, amount, unit] = datemathNowExpression.exec(value) || []; if (!operator || !amount || !unit) { return undefined; } const mustIncreaseAmount = (operator === '-' && direction === 'before') || (operator === '+' && direction === 'after'); const parsedAmount = parseInt(amount, 10); let newUnit: Unit = unit as Unit; let newAmount: number; // Extend the amount switch (unit) { // For small units, always double or halve the amount case 'ms': case 's': newAmount = mustIncreaseAmount ? parsedAmount * 2 : Math.floor(parsedAmount / 2); break; // For minutes, increase or decrease in doubles or halves, depending on // the amount of minutes case 'm': let ratio; const MINUTES_LARGE = 10; if (mustIncreaseAmount) { ratio = parsedAmount >= MINUTES_LARGE ? 0.5 : 1; newAmount = parsedAmount + Math.floor(parsedAmount * ratio); } else { newAmount = parsedAmount >= MINUTES_LARGE ? Math.floor(parsedAmount / 1.5) : parsedAmount - Math.floor(parsedAmount * 0.5); } break; // For hours, increase or decrease half an hour for 1 hour. Otherwise // increase full hours case 'h': if (parsedAmount === 1) { newAmount = mustIncreaseAmount ? 90 : 30; newUnit = 'm'; } else { newAmount = mustIncreaseAmount ? parsedAmount + 1 : parsedAmount - 1; } break; // For the rest of units, increase or decrease one smaller unit for // amounts of 1. Otherwise increase or decrease the unit case 'd': case 'w': case 'M': case 'y': if (parsedAmount === 1) { newUnit = dateMath.unitsDesc[dateMath.unitsDesc.indexOf(unit) + 1]; newAmount = mustIncreaseAmount ? convertDate(1, unit, newUnit) + 1 : convertDate(1, unit, newUnit) - 1; } else { newAmount = mustIncreaseAmount ? parsedAmount + 1 : parsedAmount - 1; } break; default: throw new TypeError('Unhandled datemath unit'); } // normalize amount and unit (i.e. 120s -> 2m) const { unit: normalizedUnit, amount: normalizedAmount } = normalizeDate(newAmount, newUnit); // How much have we changed the time? const diffAmount = Math.abs(normalizedAmount - convertDate(parsedAmount, unit, normalizedUnit)); // if `diffAmount` is not an integer after normalization, express the difference in the original unit const shouldKeepDiffUnit = diffAmount % 1 !== 0; const nextValue = `now${operator}${normalizedAmount}${normalizedUnit}`; if (isDateInRange(nextValue)) { return { value: nextValue, diffUnit: shouldKeepDiffUnit ? unit : newUnit, diffAmount: shouldKeepDiffUnit ? Math.abs(newAmount - parsedAmount) : diffAmount, }; } else { return undefined; } }
AlexanderWert/kibana
x-pack/plugins/infra/public/utils/datemath.ts
TypeScript
FunctionDeclaration
function extendAbsoluteDatemath( value: string, direction: 'before' | 'after', oppositeEdge: string ): DatemathExtension | undefined { const valueTimestamp = datemathToEpochMillis(value)!; const oppositeEdgeTimestamp = datemathToEpochMillis(oppositeEdge)!; const actualTimestampDiff = Math.abs(valueTimestamp - oppositeEdgeTimestamp); const normalizedDiff = normalizeDate(actualTimestampDiff, 'ms'); const normalizedTimestampDiff = convertDate(normalizedDiff.amount, normalizedDiff.unit, 'ms'); const newValue = direction === 'before' ? valueTimestamp - normalizedTimestampDiff : valueTimestamp + normalizedTimestampDiff; if (isDateInRange(newValue)) { return { value: new Date(newValue).toISOString(), diffUnit: normalizedDiff.unit, diffAmount: normalizedDiff.amount, }; } else { return undefined; } }
AlexanderWert/kibana
x-pack/plugins/infra/public/utils/datemath.ts
TypeScript
FunctionDeclaration
function getRatioScale(from: Unit, to?: Unit) { if ((from === 'y' && to === 'w') || (from === 'w' && to === 'y')) { return CONVERSION_RATIOS.wy; } else if (from === 'w' || to === 'w') { return CONVERSION_RATIOS.w; } else if (from === 'M' || to === 'M') { return CONVERSION_RATIOS.M; } else { return CONVERSION_RATIOS.default; } }
AlexanderWert/kibana
x-pack/plugins/infra/public/utils/datemath.ts
TypeScript
FunctionDeclaration
export function convertDate(value: number, from: Unit, to: Unit): number { if (from === to) { return value; } const ratioScale = getRatioScale(from, to); const fromIdx = ratioScale.findIndex((ratio) => ratio[0] === from); const toIdx = ratioScale.findIndex((ratio) => ratio[0] === to); let convertedValue = value; if (fromIdx > toIdx) { // `from` is the bigger unit. Multiply the value for (let i = toIdx; i < fromIdx; i++) { convertedValue *= ratioScale[i][1]; } } else { // `from` is the smaller unit. Divide the value for (let i = fromIdx; i < toIdx; i++) { convertedValue /= ratioScale[i][1]; } } return convertedValue; }
AlexanderWert/kibana
x-pack/plugins/infra/public/utils/datemath.ts
TypeScript
FunctionDeclaration
export function normalizeDate(amount: number, unit: Unit): { amount: number; unit: Unit } { // There is nothing after years if (unit === 'y') { return { amount, unit }; } const nextUnit = dateMath.unitsAsc[dateMath.unitsAsc.indexOf(unit) + 1]; const ratioScale = getRatioScale(unit, nextUnit); const ratio = ratioScale.find((r) => r[0] === unit)![1]; const newAmount = amount / ratio; // Exact conversion if (newAmount === 1) { return { amount: newAmount, unit: nextUnit }; } // Might be able to go one unit more, so try again, rounding the value // 7200s => 120m => 2h // 7249s ~> 120m ~> 2h if (newAmount >= 2) { return normalizeDate(Math.round(newAmount), nextUnit); } // Cannot go one one unit above. Return as it is return { amount, unit }; }
AlexanderWert/kibana
x-pack/plugins/infra/public/utils/datemath.ts
TypeScript
FunctionDeclaration
function isDateInRange(date: string | number): boolean { try { const epoch = typeof date === 'string' ? datemathToEpochMillis(date) ?? -1 : date; return epoch >= 0 && epoch <= JS_MAX_DATE; } catch { return false; } }
AlexanderWert/kibana
x-pack/plugins/infra/public/utils/datemath.ts
TypeScript
ArrowFunction
(ratio) => ratio[0] === from
AlexanderWert/kibana
x-pack/plugins/infra/public/utils/datemath.ts
TypeScript
ArrowFunction
(ratio) => ratio[0] === to
AlexanderWert/kibana
x-pack/plugins/infra/public/utils/datemath.ts
TypeScript
ArrowFunction
(r) => r[0] === unit
AlexanderWert/kibana
x-pack/plugins/infra/public/utils/datemath.ts
TypeScript
TypeAliasDeclaration
type DatemathExtension = | { value: string; diffUnit: Unit; diffAmount: number; } | { value: 'now' };
AlexanderWert/kibana
x-pack/plugins/infra/public/utils/datemath.ts
TypeScript
FunctionDeclaration
export function merge<T>( events: Array<Event<T> | Store<T> | Effect<T, any, any>>, ): Event<T> { const result = createEvent(unitObjectName(events, 'merge')) forward({ from: events, to: result, meta: {op: 'merge'}, }) return result }
Kurzdor/effector
src/effector/merge.ts
TypeScript
ClassDeclaration
export class RelayURLService extends NativeURLService implements IURLHandler, IOpener { private urlService: IURLService; constructor( @IMainProcessService mainProcessService: IMainProcessService, @IOpenerService openerService: IOpenerService, @INativeHostService private readonly nativeHostService: INativeHostService, @IProductService productService: IProductService ) { super(productService); this.urlService = ProxyChannel.toService<IURLService>(mainProcessService.getChannel('url')); mainProcessService.registerChannel('urlHandler', new URLHandlerChannel(this)); openerService.registerOpener(this); } create(options?: Partial<UriComponents>): URI { const uri = super.create(options); let query = uri.query; if (!query) { query = `windowId=${encodeURIComponent(this.nativeHostService.windowId)}`; } else { query += `&windowId=${encodeURIComponent(this.nativeHostService.windowId)}`; } return uri.with({ query }); } async open(resource: URI | string, options?: IRelayOpenURLOptions): Promise<boolean> { if (!matchesScheme(resource, this.productService.urlProtocol)) { return false; } if (typeof resource === 'string') { resource = URI.parse(resource); } return await this.urlService.open(resource, options); } async handleURL(uri: URI, options?: IOpenURLOptions): Promise<boolean> { const result = await super.open(uri, options); if (result) { await this.nativeHostService.focusWindow({ force: true /* Application may not be active */ }); } return result; } }
14041980ClaytonChenxiLiew/vscode
src/vs/workbench/services/url/electron-sandbox/urlService.ts
TypeScript
InterfaceDeclaration
export interface IRelayOpenURLOptions extends IOpenURLOptions { openToSide?: boolean; openExternal?: boolean; }
14041980ClaytonChenxiLiew/vscode
src/vs/workbench/services/url/electron-sandbox/urlService.ts
TypeScript
MethodDeclaration
create(options?: Partial<UriComponents>): URI { const uri = super.create(options); let query = uri.query; if (!query) { query = `windowId=${encodeURIComponent(this.nativeHostService.windowId)}`; } else { query += `&windowId=${encodeURIComponent(this.nativeHostService.windowId)}`; } return uri.with({ query }); }
14041980ClaytonChenxiLiew/vscode
src/vs/workbench/services/url/electron-sandbox/urlService.ts
TypeScript
MethodDeclaration
async open(resource: URI | string, options?: IRelayOpenURLOptions): Promise<boolean> { if (!matchesScheme(resource, this.productService.urlProtocol)) { return false; } if (typeof resource === 'string') { resource = URI.parse(resource); } return await this.urlService.open(resource, options); }
14041980ClaytonChenxiLiew/vscode
src/vs/workbench/services/url/electron-sandbox/urlService.ts
TypeScript
MethodDeclaration
async handleURL(uri: URI, options?: IOpenURLOptions): Promise<boolean> { const result = await super.open(uri, options); if (result) { await this.nativeHostService.focusWindow({ force: true /* Application may not be active */ }); } return result; }
14041980ClaytonChenxiLiew/vscode
src/vs/workbench/services/url/electron-sandbox/urlService.ts
TypeScript
InterfaceDeclaration
export interface JsonNodeInfoBase { readonly type: NodeType; readonly path: string[]; readonly length?: number; // in case of array, object, string }
dhcode/big-json-viewer
src/parser/json-node-info.ts
TypeScript
InterfaceDeclaration
export interface JsonNodeInfo extends JsonNodeInfoBase { /** * Returns the list of keys in case of an object for the defined range * @param {number} start * @param {number} limit */ getObjectKeys(start?: number, limit?: number): string[]; /** * Return the NodeInfo at the defined position. * Use the index from getObjectKeys * @param index */ getByIndex(index: number): JsonNodeInfo; /** * Return the NodeInfo for the specified key * Use the index from getObjectKeys * @param key */ getByKey(key: string): JsonNodeInfo; /** * Find the information for a given path * @param {string[]} path * @returns {BufferJsonNodeInfo} */ getByPath(path: string[]): JsonNodeInfo; /** * Returns a map with the NodeInfo objects for the defined range * @param {number} start * @param {number} limit */ getObjectNodes(start?: number, limit?: number): JsonNodeInfo[]; /** * Returns a list of NodeInfo for the defined range * @param {number} start * @param {number} limit */ getArrayNodes(start?: number, limit?: number): JsonNodeInfo[]; /** * Get the natively parsed value */ getValue(): any; }
dhcode/big-json-viewer
src/parser/json-node-info.ts
TypeScript
TypeAliasDeclaration
export type NodeType = | 'string' | 'number' | 'array' | 'object' | 'boolean' | 'null' | 'undefined' | string;
dhcode/big-json-viewer
src/parser/json-node-info.ts
TypeScript
ArrowFunction
props => { const id = props.id; const activityItemExamples = [ { key: 1, activityDescription: [ <Link key={1} className={classNames.nameText} onClick={()
jeffreysharris/fluentui
packages/react-examples/src/azure-themes/stories/components/activityitem.stories.tsx
TypeScript
ArrowFunction
(item: { key: string | number }) => ( <ActivityItem {...item}
jeffreysharris/fluentui
packages/react-examples/src/azure-themes/stories/components/activityitem.stories.tsx
TypeScript
InterfaceDeclaration
export interface IActivityItemBasicExample { id?: string; }
jeffreysharris/fluentui
packages/react-examples/src/azure-themes/stories/components/activityitem.stories.tsx
TypeScript
MethodDeclaration
alert('An @mentioned name was clicked.');
jeffreysharris/fluentui
packages/react-examples/src/azure-themes/stories/components/activityitem.stories.tsx
TypeScript
MethodDeclaration
alert('A name was clicked.');
jeffreysharris/fluentui
packages/react-examples/src/azure-themes/stories/components/activityitem.stories.tsx
TypeScript
ArrowFunction
res => { this.photos = res; console.log(this.photos); }
sublimeOne/projects
src/app/photos/photos.component.ts
TypeScript
ClassDeclaration
@Component({ selector: "app-photos", templateUrl: "./photos.component.html", styleUrls: ["./photos.component.css"] }) export class PhotosComponent implements OnInit { photos: any; albumId: any; photo: PhotoData; constructor( private api: ApiService, private route: ActivatedRoute, private spinner: NgxSpinnerService, public dialog: MatDialog ) {} ngOnInit() { this.loadPhotos(); this.spinner.hide(); } loadPhotos() { this.spinner.show(); this.albumId = this.route.snapshot.params.albumId; this.photos = this.api.getImages(this.albumId).subscribe(res => { this.photos = res; console.log(this.photos); }); return this.photos; } openDialog(photo: PhotoData) { const dialogConfig = new MatDialogConfig(); dialogConfig.autoFocus = true; dialogConfig.data = { id: photo.photoId, url: photo.url }; this.dialog.open(ImageDialogComponent, dialogConfig); } }
sublimeOne/projects
src/app/photos/photos.component.ts
TypeScript
MethodDeclaration
ngOnInit() { this.loadPhotos(); this.spinner.hide(); }
sublimeOne/projects
src/app/photos/photos.component.ts
TypeScript
MethodDeclaration
loadPhotos() { this.spinner.show(); this.albumId = this.route.snapshot.params.albumId; this.photos = this.api.getImages(this.albumId).subscribe(res => { this.photos = res; console.log(this.photos); }); return this.photos; }
sublimeOne/projects
src/app/photos/photos.component.ts
TypeScript