type
stringclasses 7
values | content
stringlengths 4
9.55k
| repo
stringlengths 7
96
| path
stringlengths 4
178
| language
stringclasses 1
value |
---|---|---|---|---|
MethodDeclaration |
noResults() {
return (
<>
{/* https://www.crossref.org/blog/dois-and-matching-regular-expressions/ */}
{query.match(/^10.\d{4,9}\/[-._;()/:A-Z0-9]+$/i) ? (
<>
<button
className="text-sm font-normal leading-4 text-gray-900 dark:text-gray-200"
onClick={async () => {
toast.promise(createReferenceMutation({ doi: query }), {
loading: "Searching...",
success: (data) => {
toast.promise(
addParentMutation({
currentId: module?.id,
connectId: data.id,
}),
{
loading: "Adding link...",
success: (info) => {
setQueryData(info)
return `Linked to: "${data.title}"`
},
error: "Failed to add link...",
}
)
return "Record added to database"
},
error: "Could not add record.",
})
}}
>
Click here to add {query} to ResearchEquals database
</button>
</>
) : (
<p className="text-sm font-normal leading-4 text-gray-900 dark:text-gray-200">
Input a DOI to add
</p>
)} | egonw/ResearchEquals.com | app/modules/components/ModuleEdit.tsx | TypeScript |
MethodDeclaration |
isEditing ? (
<EditOff24
className="h-6 w-6 fill-current text-gray-900 dark:text-gray-200"
onClick={() => {
setIsEditing | egonw/ResearchEquals.com | app/modules/components/ModuleEdit.tsx | TypeScript |
MethodDeclaration |
isEditing ? (
<MetadataEdit
module={moduleEdit}
setQueryData={setQueryData}
setIsEditing={setIsEditing}
/>
) : (
<MetadataView
module={moduleEdit}
addAuthors={addAuthors}
setQueryData={setQueryData}
setAddAuthors={setAddAuthors} | egonw/ResearchEquals.com | app/modules/components/ModuleEdit.tsx | TypeScript |
MethodDeclaration |
async onSelect(params) {
const { item, setQuery } = params
if (item.suffix) {
toast.promise(
addReferenceMutation({
currentId: moduleEdit?.id,
connectId: item.objectID,
}),
{
loading: "Adding reference...",
success: (data) => {
setQueryData(data)
return "Added reference!"
},
error: "Failed to add reference...",
}
)
}
} | egonw/ResearchEquals.com | app/modules/components/ModuleEdit.tsx | TypeScript |
MethodDeclaration |
getItems() {
return getAlgoliaResults({
searchClient,
queries: [
{
indexName: `${process.env.ALGOLIA_PREFIX}_modules`,
query,
},
],
})
} | egonw/ResearchEquals.com | app/modules/components/ModuleEdit.tsx | TypeScript |
MethodDeclaration |
item({ item, components }) {
return (
<>
{item.__autocomplete_indexName.match(/_modules/g) ? (
<SearchResultModule item={item} />
) : (
""
)} | egonw/ResearchEquals.com | app/modules/components/ModuleEdit.tsx | TypeScript |
MethodDeclaration |
return (
< | egonw/ResearchEquals.com | app/modules/components/ModuleEdit.tsx | TypeScript |
ArrowFunction |
(nodeIndex, volumeIndex) => (
value,
allValues,
) => {
const volumes = getDataVolumes(nodeIndex, allValues);
if (volumeIndex >= volumes.length) {
return;
}
if (!isFeatureVisible('Rancher.VolumeMountPoint')) {
return;
}
const volume = volumes[volumeIndex];
const minSize = getMinSize(volume.mount_point);
if (value < minSize) {
return translate('Data volume should have at least {size} GB.', {
size: minSize,
});
}
} | Niteshbhat/waldur-homeport | src/rancher/cluster/create/VolumeSizeGroup.tsx | TypeScript |
ArrowFunction |
(
value,
allValues,
) => {
const volumes = getDataVolumes(nodeIndex, allValues);
if (volumeIndex >= volumes.length) {
return;
}
if (!isFeatureVisible('Rancher.VolumeMountPoint')) {
return;
}
const volume = volumes[volumeIndex];
const minSize = getMinSize(volume.mount_point);
if (value < minSize) {
return translate('Data volume should have at least {size} GB.', {
size: minSize,
});
}
} | Niteshbhat/waldur-homeport | src/rancher/cluster/create/VolumeSizeGroup.tsx | TypeScript |
ArrowFunction |
(props) => {
const validateVolumeSize = React.useMemo(
() => [
required,
createVolumeSizeValidator(props.nodeIndex, props.volumeIndex),
],
[props.nodeIndex, props.volumeIndex],
);
return (
<FormGroup label={translate('Volume size')} required={true}>
<Field
name="size"
units={translate('GB')}
component={IntegerUnitField}
parse={parseIntField}
format={formatIntField}
validate={validateVolumeSize}
/>
</FormGroup> | Niteshbhat/waldur-homeport | src/rancher/cluster/create/VolumeSizeGroup.tsx | TypeScript |
ArrowFunction |
() => [
required,
createVolumeSizeValidator(props.nodeIndex, props.volumeIndex),
] | Niteshbhat/waldur-homeport | src/rancher/cluster/create/VolumeSizeGroup.tsx | TypeScript |
MethodDeclaration |
translate('Volume size') | Niteshbhat/waldur-homeport | src/rancher/cluster/create/VolumeSizeGroup.tsx | TypeScript |
MethodDeclaration |
translate('GB') | Niteshbhat/waldur-homeport | src/rancher/cluster/create/VolumeSizeGroup.tsx | TypeScript |
ArrowFunction |
() => {
beforeEach(() => {
TestBed.configureTestingModule({ declarations: [AppComponent]});
});
it ('should work', () => {
let fixture = TestBed.createComponent(AppComponent);
expect(fixture.componentInstance instanceof AppComponent).toBe(true, 'should create AppComponent');
});
} | sunwenyuan/date-time-picker | src/ui/application/app.component.test.ts | TypeScript |
ArrowFunction |
() => {
TestBed.configureTestingModule({ declarations: [AppComponent]});
} | sunwenyuan/date-time-picker | src/ui/application/app.component.test.ts | TypeScript |
ArrowFunction |
() => {
let fixture = TestBed.createComponent(AppComponent);
expect(fixture.componentInstance instanceof AppComponent).toBe(true, 'should create AppComponent');
} | sunwenyuan/date-time-picker | src/ui/application/app.component.test.ts | TypeScript |
ClassDeclaration |
export class PushcutTrigger implements INodeType {
description: INodeTypeDescription = {
displayName: 'Pushcut Trigger',
name: 'pushcutTrigger',
icon: 'file:pushcut.png',
group: ['trigger'],
version: 1,
description: 'Starts the workflow when Pushcut events occur',
defaults: {
name: 'Pushcut Trigger',
color: '#1f2957',
},
inputs: [],
outputs: ['main'],
credentials: [
{
name: 'pushcutApi',
required: true,
},
],
webhooks: [
{
name: 'default',
httpMethod: 'POST',
responseMode: 'onReceived',
path: 'webhook',
},
],
properties: [
{
displayName: 'Action Name',
name: 'actionName',
type: 'string',
description: 'Choose any name you would like. It will show up as a server action in the app',
default: '',
},
],
};
// @ts-ignore (because of request)
webhookMethods = {
default: {
async checkExists(this: IHookFunctions): Promise<boolean> {
const webhookUrl = this.getNodeWebhookUrl('default');
const webhookData = this.getWorkflowStaticData('node');
const actionName = this.getNodeParameter('actionName');
// Check all the webhooks which exist already if it is identical to the
// one that is supposed to get created.
const endpoint = '/subscriptions';
const webhooks = await pushcutApiRequest.call(this, 'GET', endpoint, {});
for (const webhook of webhooks) {
if (webhook.url === webhookUrl &&
webhook.actionName === actionName) {
webhookData.webhookId = webhook.id;
return true;
}
}
return false;
},
async create(this: IHookFunctions): Promise<boolean> {
const webhookData = this.getWorkflowStaticData('node');
const webhookUrl = this.getNodeWebhookUrl('default');
const actionName = this.getNodeParameter('actionName');
const endpoint = '/subscriptions';
const body = {
actionName,
url: webhookUrl,
};
const responseData = await pushcutApiRequest.call(this, 'POST', endpoint, body);
if (responseData.id === undefined) {
// Required data is missing so was not successful
return false;
}
webhookData.webhookId = responseData.id as string;
return true;
},
async delete(this: IHookFunctions): Promise<boolean> {
const webhookData = this.getWorkflowStaticData('node');
if (webhookData.webhookId !== undefined) {
const endpoint = `/subscriptions/${webhookData.webhookId}`;
try {
await pushcutApiRequest.call(this, 'DELETE', endpoint);
} catch (error) {
return false;
}
// Remove from the static workflow data so that it is clear
// that no webhooks are registred anymore
delete webhookData.webhookId;
}
return true;
},
},
};
async webhook(this: IWebhookFunctions): Promise<IWebhookResponseData> {
const body = this.getBodyData() as IDataObject;
return {
workflowData: [
this.helpers.returnJsonArray(body),
],
};
}
} | 5-stones/n8n | packages/nodes-base/nodes/Pushcut/PushcutTrigger.node.ts | TypeScript |
MethodDeclaration |
async checkExists(this: IHookFunctions): Promise<boolean> {
const webhookUrl = this.getNodeWebhookUrl('default');
const webhookData = this.getWorkflowStaticData('node');
const actionName = this.getNodeParameter('actionName');
// Check all the webhooks which exist already if it is identical to the
// one that is supposed to get created.
const endpoint = '/subscriptions';
const webhooks = await pushcutApiRequest.call(this, 'GET', endpoint, {});
for (const webhook of webhooks) {
if (webhook.url === webhookUrl &&
webhook.actionName === actionName) {
webhookData.webhookId = webhook.id;
return true;
}
}
return false;
} | 5-stones/n8n | packages/nodes-base/nodes/Pushcut/PushcutTrigger.node.ts | TypeScript |
MethodDeclaration |
async create(this: IHookFunctions): Promise<boolean> {
const webhookData = this.getWorkflowStaticData('node');
const webhookUrl = this.getNodeWebhookUrl('default');
const actionName = this.getNodeParameter('actionName');
const endpoint = '/subscriptions';
const body = {
actionName,
url: webhookUrl,
};
const responseData = await pushcutApiRequest.call(this, 'POST', endpoint, body);
if (responseData.id === undefined) {
// Required data is missing so was not successful
return false;
}
webhookData.webhookId = responseData.id as string;
return true;
} | 5-stones/n8n | packages/nodes-base/nodes/Pushcut/PushcutTrigger.node.ts | TypeScript |
MethodDeclaration |
async delete(this: IHookFunctions): Promise<boolean> {
const webhookData = this.getWorkflowStaticData('node');
if (webhookData.webhookId !== undefined) {
const endpoint = `/subscriptions/${webhookData.webhookId}`;
try {
await pushcutApiRequest.call(this, 'DELETE', endpoint);
} catch (error) {
return false;
}
// Remove from the static workflow data so that it is clear
// that no webhooks are registred anymore
delete webhookData.webhookId;
}
return true;
} | 5-stones/n8n | packages/nodes-base/nodes/Pushcut/PushcutTrigger.node.ts | TypeScript |
MethodDeclaration |
async webhook(this: IWebhookFunctions): Promise<IWebhookResponseData> {
const body = this.getBodyData() as IDataObject;
return {
workflowData: [
this.helpers.returnJsonArray(body),
],
};
} | 5-stones/n8n | packages/nodes-base/nodes/Pushcut/PushcutTrigger.node.ts | TypeScript |
ClassDeclaration |
export class CreateUserDto {
@ApiProperty()
displayName: string;
@ApiProperty()
password: string;
@ApiProperty()
email: string;
} | GuusSeldenthuis/Working-Title | src/user/dto/create-user.dto.ts | TypeScript |
ArrowFunction |
() => {
test('waits for element to be added to the DOM', async () => {
await render(FixtureComponent);
await expect(screen.findByText('I am visible')).resolves.toBeTruthy();
});
test('rejects when something cannot be found', async () => {
await render(FixtureComponent);
await expect(screen.findByText('I am invisible', {}, { timeout: 40 })).rejects.toThrow('x');
});
} | GlebIrovich/angular-testing-library | projects/testing-library/tests/find-by.spec.ts | TypeScript |
ArrowFunction |
async () => {
await render(FixtureComponent);
await expect(screen.findByText('I am visible')).resolves.toBeTruthy();
} | GlebIrovich/angular-testing-library | projects/testing-library/tests/find-by.spec.ts | TypeScript |
ArrowFunction |
async () => {
await render(FixtureComponent);
await expect(screen.findByText('I am invisible', {}, { timeout: 40 })).rejects.toThrow('x');
} | GlebIrovich/angular-testing-library | projects/testing-library/tests/find-by.spec.ts | TypeScript |
ArrowFunction |
() => {
test('waits for element to be added to the DOM', async () => {
const { findByText } = await render(FixtureComponent);
await expect(findByText('I am visible')).resolves.toBeTruthy();
});
test('rejects when something cannot be found', async () => {
const { findByText } = await render(FixtureComponent);
await expect(findByText('I am invisible', {}, { timeout: 40 })).rejects.toThrow('x');
});
} | GlebIrovich/angular-testing-library | projects/testing-library/tests/find-by.spec.ts | TypeScript |
ArrowFunction |
async () => {
const { findByText } = await render(FixtureComponent);
await expect(findByText('I am visible')).resolves.toBeTruthy();
} | GlebIrovich/angular-testing-library | projects/testing-library/tests/find-by.spec.ts | TypeScript |
ArrowFunction |
async () => {
const { findByText } = await render(FixtureComponent);
await expect(findByText('I am invisible', {}, { timeout: 40 })).rejects.toThrow('x');
} | GlebIrovich/angular-testing-library | projects/testing-library/tests/find-by.spec.ts | TypeScript |
ClassDeclaration |
@Component({
selector: 'fixture',
template: ` <div>{{ result | async }}</div> `,
})
class FixtureComponent {
result = timer(30).pipe(mapTo('I am visible'));
} | GlebIrovich/angular-testing-library | projects/testing-library/tests/find-by.spec.ts | TypeScript |
ArrowFunction |
d => {
this.deliveryservice = d;
this.loaded.set("main", true);
this.loadBandwidth();
this.loadTPS();
} | TaylorCFrey/trafficcontrol | experimental/traffic-portal/src/app/core/deliveryservice/deliveryservice.component.ts | TypeScript |
ArrowFunction |
data => {
const va = new Array<DataPoint>();
for (const v of data.series.values) {
if (v[1] === null) {
continue;
}
va.push({t: new Date(v[0]), y: v[1]} as DataPoint);
}
this.edgeBandwidth.data = va;
this.bandwidthData.next([this.edgeBandwidth, this.midBandwidth]);
} | TaylorCFrey/trafficcontrol | experimental/traffic-portal/src/app/core/deliveryservice/deliveryservice.component.ts | TypeScript |
ArrowFunction |
e => {
this.alerts.newAlert("warning", "Edge-Tier bandwidth data not found!");
console.error(`Failed to get edge KBPS data for '${xmlID}':`, e);
} | TaylorCFrey/trafficcontrol | experimental/traffic-portal/src/app/core/deliveryservice/deliveryservice.component.ts | TypeScript |
ArrowFunction |
data => {
const va = new Array<DataPoint>();
for (const v of data.series.values) {
if (v[1] === null) {
continue;
}
va.push({t: new Date(v[0]), y: v[1]} as DataPoint);
}
this.midBandwidth.data = va;
this.bandwidthData.next([this.edgeBandwidth, this.midBandwidth]);
} | TaylorCFrey/trafficcontrol | experimental/traffic-portal/src/app/core/deliveryservice/deliveryservice.component.ts | TypeScript |
ArrowFunction |
e => {
this.alerts.newAlert("warning", "Mid-Tier bandwidth data not found!");
console.error(`Failed to get mid KBPS data for '${xmlID}':`, e);
} | TaylorCFrey/trafficcontrol | experimental/traffic-portal/src/app/core/deliveryservice/deliveryservice.component.ts | TypeScript |
ArrowFunction |
data => {
data.total.dataSet.label = "Total";
data.total.dataSet.borderColor = "#3C96BA";
data.success.dataSet.label = "Successful Responses";
data.success.dataSet.borderColor = "#3CBA5F";
data.redirection.dataSet.label = "Redirection Responses";
data.redirection.dataSet.borderColor = "#9f3CBA";
data.clientError.dataSet.label = "Client Error Responses";
data.clientError.dataSet.borderColor = "#BA9E3B";
data.serverError.dataSet.label = "Server Error Responses";
data.serverError.dataSet.borderColor = "#BA3C57";
this.tpsChartData.next([
data.total.dataSet,
data.success.dataSet,
data.redirection.dataSet,
data.clientError.dataSet,
data.serverError.dataSet
]);
} | TaylorCFrey/trafficcontrol | experimental/traffic-portal/src/app/core/deliveryservice/deliveryservice.component.ts | TypeScript |
ArrowFunction |
e => {
console.error(`Failed to get edge TPS data for '${this.deliveryservice.xmlId}':`, e);
this.alerts.newAlert("warning", "Edge-Tier transaction data not found!");
} | TaylorCFrey/trafficcontrol | experimental/traffic-portal/src/app/core/deliveryservice/deliveryservice.component.ts | TypeScript |
MethodDeclaration | /**
* Runs initialization, including setting up date/time range controls and
* fetching data.
*/
public ngOnInit(): void {
const DSID = this.route.snapshot.paramMap.get("id");
if (!DSID) {
console.error("Missing route 'id' parameter");
return;
}
this.to.setUTCMilliseconds(0);
this.from = new Date(this.to.getFullYear(), this.to.getMonth(), this.to.getDate());
const dateStr = String(this.from.getFullYear()).padStart(4, "0").concat(
"-", String(this.from.getMonth() + 1).padStart(2, "0").concat(
"-", String(this.from.getDate()).padStart(2, "0")));
this.fromDate = new FormControl(dateStr);
this.fromTime = new FormControl("00:00");
this.toDate = new FormControl(dateStr);
const timeStr = String(this.to.getHours()).padStart(2, "0").concat(":", String(this.to.getMinutes()).padStart(2, "0"));
this.toTime = new FormControl(timeStr);
this.api.getDeliveryServices(parseInt(DSID, 10)).then(
d => {
this.deliveryservice = d;
this.loaded.set("main", true);
this.loadBandwidth();
this.loadTPS();
}
);
} | TaylorCFrey/trafficcontrol | experimental/traffic-portal/src/app/core/deliveryservice/deliveryservice.component.ts | TypeScript |
MethodDeclaration | /**
* Runs when a new date/time range is selected by the user, updating the
* chart data accordingly.
*/
public newDateRange(): void {
this.to = new Date(this.toDate.value.concat("T", this.toTime.value));
this.from = new Date(this.fromDate.value.concat("T", this.fromTime.value));
// I need to set these explicitly, just in case - the API can't handle millisecond precision
this.to.setUTCMilliseconds(0);
this.from.setUTCMilliseconds(0);
// This should set it to the number of seconds needed to bucket 500 datapoints
this.bucketSize = (this.to.getTime() - this.from.getTime()) / 30000000;
this.loadBandwidth();
this.loadTPS();
} | TaylorCFrey/trafficcontrol | experimental/traffic-portal/src/app/core/deliveryservice/deliveryservice.component.ts | TypeScript |
MethodDeclaration | /**
* Loads new data for the bandwidth chart.
*/
private loadBandwidth(): void {
let interval: string;
if (this.bucketSize < 1) {
interval = "1m";
} else {
interval = `${Math.round(this.bucketSize)}m`;
}
const xmlID = this.deliveryservice.xmlId;
// Edge-tier data
this.api.getDSKBPS(xmlID, this.from, this.to, interval, false).then(
data => {
const va = new Array<DataPoint>();
for (const v of data.series.values) {
if (v[1] === null) {
continue;
}
va.push({t: new Date(v[0]), y: v[1]} as DataPoint);
}
this.edgeBandwidth.data = va;
this.bandwidthData.next([this.edgeBandwidth, this.midBandwidth]);
},
e => {
this.alerts.newAlert("warning", "Edge-Tier bandwidth data not found!");
console.error(`Failed to get edge KBPS data for '${xmlID}':`, e);
}
);
// Mid-tier data
this.api.getDSKBPS(this.deliveryservice.xmlId, this.from, this.to, interval, true).then(
data => {
const va = new Array<DataPoint>();
for (const v of data.series.values) {
if (v[1] === null) {
continue;
}
va.push({t: new Date(v[0]), y: v[1]} as DataPoint);
}
this.midBandwidth.data = va;
this.bandwidthData.next([this.edgeBandwidth, this.midBandwidth]);
},
e => {
this.alerts.newAlert("warning", "Mid-Tier bandwidth data not found!");
console.error(`Failed to get mid KBPS data for '${xmlID}':`, e);
}
);
} | TaylorCFrey/trafficcontrol | experimental/traffic-portal/src/app/core/deliveryservice/deliveryservice.component.ts | TypeScript |
MethodDeclaration | /**
* Loads new data for the TPS chart.
*/
private loadTPS(): void {
let interval: string;
if (this.bucketSize < 1) {
interval = "1m";
} else {
interval = `${Math.round(this.bucketSize)}m`;
}
this.api.getAllDSTPSData(this.deliveryservice.xmlId, this.from, this.to, interval, false).then(
data => {
data.total.dataSet.label = "Total";
data.total.dataSet.borderColor = "#3C96BA";
data.success.dataSet.label = "Successful Responses";
data.success.dataSet.borderColor = "#3CBA5F";
data.redirection.dataSet.label = "Redirection Responses";
data.redirection.dataSet.borderColor = "#9f3CBA";
data.clientError.dataSet.label = "Client Error Responses";
data.clientError.dataSet.borderColor = "#BA9E3B";
data.serverError.dataSet.label = "Server Error Responses";
data.serverError.dataSet.borderColor = "#BA3C57";
this.tpsChartData.next([
data.total.dataSet,
data.success.dataSet,
data.redirection.dataSet,
data.clientError.dataSet,
data.serverError.dataSet
]);
},
e => {
console.error(`Failed to get edge TPS data for '${this.deliveryservice.xmlId}':`, e);
this.alerts.newAlert("warning", "Edge-Tier transaction data not found!");
}
);
} | TaylorCFrey/trafficcontrol | experimental/traffic-portal/src/app/core/deliveryservice/deliveryservice.component.ts | TypeScript |
ClassDeclaration |
@Injectable()
export class QuestionTypeProvider extends BaseProvider<QuestionType> {
constructor(private readonly questionTypeRepo: QuestionTypeRepo) {
super(questionTypeRepo);
}
} | Maxrod98/Tamu.GeoInnovation.js.monorepo | libs/gisday/data-api/src/lib/providers/question-type/question-type.provider.ts | TypeScript |
ClassDeclaration |
export default class PatternPrompt {
protected _pipe: NodeJS.WritableStream;
protected _prompt: Prompt;
protected _entityName: string;
protected _currentUsageRows: number;
constructor(pipe: NodeJS.WritableStream, prompt: Prompt);
run(onSuccess: (value: string) => void, onCancel: () => void, options?: {
header: string;
}): void;
protected _onChange(_pattern: string, _options: ScrollOptions): void;
} | GenaAiv/portfolio-website | node_modules/jest-watcher/build/PatternPrompt.d.ts | TypeScript |
MethodDeclaration |
run(onSuccess: (value: string) => void, onCancel: () => void, options?: {
header: string;
}): void; | GenaAiv/portfolio-website | node_modules/jest-watcher/build/PatternPrompt.d.ts | TypeScript |
MethodDeclaration |
protected _onChange(_pattern: string, _options: ScrollOptions): void; | GenaAiv/portfolio-website | node_modules/jest-watcher/build/PatternPrompt.d.ts | TypeScript |
FunctionDeclaration |
function createExpandDispatchContext() {
return createContext<DispatchAction | undefined>(undefined);
} | equinor/lighthouse-client | src/components/ParkView/Components/VirtualGarden/ExpandProvider.tsx | TypeScript |
ArrowFunction |
(state: State, action: Action): State => {
switch (action.type) {
case ActionType.EXPAND_COLUMN: {
let width = getDescriptionWidth(action.descriptionData, action.customDescription);
//Edge case here: if all subgroups are collapsed, the width will be
// 0 since no description data. But if you expand column first and collapse
// all subgroups, the column wont be resized
if (width === 0) {
return state;
}
if (state.expandedColumns && state.expandedColumns[action.key]) {
const currWidths = [...state.widths];
currWidths[action.index] = state.expandedColumns[action.key].isExpanded
? currWidths[action.index] - width
: currWidths[action.index] + width;
return {
...state,
expandedColumns: {
...state.expandedColumns,
[action.key]: {
...state.expandedColumns[action.key],
isExpanded: !state.expandedColumns[action.key].isExpanded,
},
},
widths: currWidths,
};
} else {
const currWidths = [...state.widths];
currWidths[action.index] = currWidths[action.index] + width;
return {
...state,
expandedColumns: {
...state.expandedColumns,
[action.key]: {
isExpanded: true,
index: action.index,
},
},
widths: currWidths,
};
}
}
default:
return { expandedColumns: {}, widths: [] };
}
} | equinor/lighthouse-client | src/components/ParkView/Components/VirtualGarden/ExpandProvider.tsx | TypeScript |
ArrowFunction |
(props: PropsWithChildren<ExpandProviderProps>) => {
const { initialWidths, children } = props;
const [state, dispatch] = useReducer(expandReducer, {
expandedColumns: {},
widths: initialWidths,
});
return (
<ExpandContext.Provider value={state}>
<ExpandDispatchContext.Provider value={dispatch}>
{children}
</ExpandDispatchContext.Provider>
</ExpandContext.Provider> | equinor/lighthouse-client | src/components/ParkView/Components/VirtualGarden/ExpandProvider.tsx | TypeScript |
EnumDeclaration |
export enum ActionType {
EXPAND_COLUMN,
} | equinor/lighthouse-client | src/components/ParkView/Components/VirtualGarden/ExpandProvider.tsx | TypeScript |
TypeAliasDeclaration |
type Expanded = {
isExpanded: boolean;
index: number;
}; | equinor/lighthouse-client | src/components/ParkView/Components/VirtualGarden/ExpandProvider.tsx | TypeScript |
TypeAliasDeclaration |
type ExpandedItems = Record<string, Expanded>; | equinor/lighthouse-client | src/components/ParkView/Components/VirtualGarden/ExpandProvider.tsx | TypeScript |
TypeAliasDeclaration |
type State = {
expandedColumns: ExpandedItems;
widths: number[];
}; | equinor/lighthouse-client | src/components/ParkView/Components/VirtualGarden/ExpandProvider.tsx | TypeScript |
TypeAliasDeclaration |
type ExpandColumn<T extends unknown = any> = {
key: string;
index: number;
descriptionData: GardenItem<T>[] | null;
type: ActionType.EXPAND_COLUMN;
customDescription?: (item: T | GardenItem<T>) => string;
}; | equinor/lighthouse-client | src/components/ParkView/Components/VirtualGarden/ExpandProvider.tsx | TypeScript |
TypeAliasDeclaration |
type Action = ExpandColumn; | equinor/lighthouse-client | src/components/ParkView/Components/VirtualGarden/ExpandProvider.tsx | TypeScript |
TypeAliasDeclaration |
type DispatchAction = (action: Action) => void; | equinor/lighthouse-client | src/components/ParkView/Components/VirtualGarden/ExpandProvider.tsx | TypeScript |
TypeAliasDeclaration |
type ExpandProviderProps = {
initialWidths: number[];
}; | equinor/lighthouse-client | src/components/ParkView/Components/VirtualGarden/ExpandProvider.tsx | TypeScript |
ClassDeclaration |
@NgModule({
imports: [CommonModule, OutletModule, I18nModule],
providers: [
provideDefaultConfig(<CmsConfig>{
cmsComponents: {
ProductSummaryComponent: {
component: ProductSummaryComponent,
},
},
}),
],
declarations: [ProductSummaryComponent],
entryComponents: [ProductSummaryComponent],
exports: [ProductSummaryComponent],
})
export class ProductSummaryModule {} | Changsuwan/spartacus | projects/storefrontlib/src/cms-components/product/product-summary/product-summary.module.ts | TypeScript |
ArrowFunction |
() => {
Taro.navigateBack({delta: 1})
} | merrier/WeHexo | client/src/components/headerNavbar/index.tsx | TypeScript |
ArrowFunction |
() => {
Taro.redirectTo({
url: '/pages/index/index'
})
} | merrier/WeHexo | client/src/components/headerNavbar/index.tsx | TypeScript |
ClassDeclaration |
export default class HeaderNavbar extends Component<IProps, IState> {
static defaultProps: IProps = {
hasBack: true,
hasHome: true,
hasTitle: true,
title: ''
}
constructor () {
super(...arguments)
this.state = {
systemInfo: Taro.getStorageSync('systemInfo'),
menuButton: Taro.getStorageSync('menuButton'),
headerNavbarStyle: {},
headerNavbarButtonStyle: {},
}
}
componentWillMount() {
let { menuButton, systemInfo } = this.state;
let {hasBack, hasHome} = this.props
let headerNavbarStyle = {
with: `${ hasBack&&hasHome ? menuButton.width : menuButton.width/2 }px`,
height: `${menuButton.height}px`,
left: `${systemInfo.screenWidth - menuButton.right}px`,
top: `${menuButton.top}px`,
borderRadius: `${menuButton.height/2}px`,
}
let headerNavbarButtonStyle = {
width: `${menuButton.width/2}px`,
// lineHeight: `${menuButton.height}px`,
}
this.setState({
headerNavbarStyle,
headerNavbarButtonStyle,
})
}
componentDidMount () {
}
render () {
// console.info(this.state)
let { headerNavbarStyle, headerNavbarButtonStyle } = this.state;
let { hasBack, hasHome } = this.props;
return (
<View className="header-navbar" style={headerNavbarStyle}>
{hasBack && (
<View className="header-navbar-button" onClick={this.goBack} style={headerNavbarButtonStyle}>
<AtIcon className="header-navbar-icon" value='chevron-left' color='#fff'></AtIcon>
</View>
)} | merrier/WeHexo | client/src/components/headerNavbar/index.tsx | TypeScript |
InterfaceDeclaration |
interface ISystemInfoSafeArea {
top: number,
[propName: string]: any;
} | merrier/WeHexo | client/src/components/headerNavbar/index.tsx | TypeScript |
InterfaceDeclaration |
interface ISystemInfo {
safeArea: ISystemInfoSafeArea,
[propName: string]: any;
} | merrier/WeHexo | client/src/components/headerNavbar/index.tsx | TypeScript |
InterfaceDeclaration |
interface IMenuButton {
width: number,
height: number,
top: number,
left: number,
right: number,
botton: number,
} | merrier/WeHexo | client/src/components/headerNavbar/index.tsx | TypeScript |
InterfaceDeclaration |
interface IProps {
hasBack?: boolean,
hasHome?: boolean,
hasTitle?: boolean,
title?: string
} | merrier/WeHexo | client/src/components/headerNavbar/index.tsx | TypeScript |
InterfaceDeclaration |
interface IState {
systemInfo: ISystemInfo,
menuButton: IMenuButton,
headerNavbarStyle: object,
headerNavbarButtonStyle: object,
} | merrier/WeHexo | client/src/components/headerNavbar/index.tsx | TypeScript |
MethodDeclaration |
componentWillMount() {
let { menuButton, systemInfo } = this.state;
let {hasBack, hasHome} = this.props
let headerNavbarStyle = {
with: `${ hasBack&&hasHome ? menuButton.width : menuButton.width/2 }px`,
height: `${menuButton.height}px`,
left: `${systemInfo.screenWidth - menuButton.right}px`,
top: `${menuButton.top}px`,
borderRadius: `${menuButton.height/2}px`,
}
let headerNavbarButtonStyle = {
width: `${menuButton.width/2}px`,
// lineHeight: `${menuButton.height}px`,
}
this.setState({
headerNavbarStyle,
headerNavbarButtonStyle,
})
} | merrier/WeHexo | client/src/components/headerNavbar/index.tsx | TypeScript |
MethodDeclaration |
componentDidMount () {
} | merrier/WeHexo | client/src/components/headerNavbar/index.tsx | TypeScript |
MethodDeclaration |
render () {
// console.info(this.state)
let { headerNavbarStyle, headerNavbarButtonStyle } = this.state;
let { hasBack, hasHome } = this.props;
return (
<View className="header-navbar" style={headerNavbarStyle}>
{hasBack && (
<View className="header-navbar-button" onClick={this.goBack} style={headerNavbarButtonStyle}>
<AtIcon className="header-navbar-icon" value='chevron-left' color='#fff'></AtIcon>
</View>
)} | merrier/WeHexo | client/src/components/headerNavbar/index.tsx | TypeScript |
ArrowFunction |
() => {
return (
<div>Lodash Example : {lodash.reduce([1, 2, 3], (prev, curr) => prev + curr, 0)}</div> | emilianox/shiny-typescript-boilerplate | src/components/Libraries/Lodash.tsx | TypeScript |
ArrowFunction |
props => {
const {width, onResizeStart, setRef, resizing} = createHorizontalResize({
minWidth: 600,
maxWidth: 1400,
});
const computedWidth = () => {
const size = width();
return size ? `${size}px` : 'auto';
};
const roundedWidth = () => `${Math.floor(width())}px`;
const modality = useModality();
return (
<Box position={'relative'}>
<div
ref={setRef}
class={styles.container}
style={assignInlineVars({
[styles.frameVars.width]: computedWidth(),
[styles.frameVars.padding]: `${props.padding}px`,
[styles.frameVars.radius]: `${props.radius}px`,
} | riccardoperra/codeimage | apps/codeimage/src/components/Frame/Frame.tsx | TypeScript |
ArrowFunction |
() => {
const size = width();
return size ? `${size}px` : 'auto';
} | riccardoperra/codeimage | apps/codeimage/src/components/Frame/Frame.tsx | TypeScript |
ArrowFunction |
() => `${Math.floor(width())}px` | riccardoperra/codeimage | apps/codeimage/src/components/Frame/Frame.tsx | TypeScript |
MethodDeclaration |
assignInlineVars({
[styles.frameVars.width]: computedWidth | riccardoperra/codeimage | apps/codeimage/src/components/Frame/Frame.tsx | TypeScript |
MethodDeclaration |
assignInlineVars({
[styles.frameVars.backgroundColor]:
props | riccardoperra/codeimage | apps/codeimage/src/components/Frame/Frame.tsx | TypeScript |
MethodDeclaration |
resizing() | riccardoperra/codeimage | apps/codeimage/src/components/Frame/Frame.tsx | TypeScript |
MethodDeclaration |
roundedWidth() | riccardoperra/codeimage | apps/codeimage/src/components/Frame/Frame.tsx | TypeScript |
InterfaceDeclaration |
export interface Options {
headers?: Headers;
} | vpriem/ts-monorepo | packages/rest-client/src/types.ts | TypeScript |
InterfaceDeclaration |
export interface RequestOptions extends Omit<RequestInit, 'body'> {
headers?: Headers;
params?: Params;
query?: Query;
body?: object;
} | vpriem/ts-monorepo | packages/rest-client/src/types.ts | TypeScript |
TypeAliasDeclaration |
export type Headers = Record<string, string>; | vpriem/ts-monorepo | packages/rest-client/src/types.ts | TypeScript |
TypeAliasDeclaration |
export type Params = Record<string, string | number>; | vpriem/ts-monorepo | packages/rest-client/src/types.ts | TypeScript |
TypeAliasDeclaration |
export type Query = Record<
string,
| string
| string[]
| number
| number[]
| boolean
| boolean[]
| null
| undefined
>; | vpriem/ts-monorepo | packages/rest-client/src/types.ts | TypeScript |
InterfaceDeclaration | /**
* Interface for the jqXHR object
*/
interface JQueryXHR extends XMLHttpRequest, JQueryPromise<any> {
/**
* The .overrideMimeType() method may be used in the beforeSend() callback function, for example, to modify the response content-type header. As of jQuery 1.5.1, the jqXHR object also contains the overrideMimeType() method (it was available in jQuery 1.4.x, as well, but was temporarily removed in jQuery 1.5).
*/
overrideMimeType(mimeType: string): any;
/**
* Cancel the request.
*
* @param statusText A string passed as the textStatus parameter for the done callback. Default value: "canceled"
*/
abort(statusText?: string): void;
/**
* Incorporates the functionality of the .done() and .fail() methods, allowing (as of jQuery 1.8) the underlying Promise to be manipulated. Refer to deferred.then() for implementation details.
*/
then(doneCallback: (data: any, textStatus: string, jqXHR: JQueryXHR) => void, failCallback?: (jqXHR: JQueryXHR, textStatus: string, errorThrown: any) => void): JQueryPromise<any>;
/**
* Property containing the parsed response if the response Content-Type is json
*/
responseJSON?: any;
} | borget/Skyguardian-WialonApp-UnitOnMap | WebContent/scripts/typings/jquery.d.ts | TypeScript |
InterfaceDeclaration | /**
* Interface for the JQuery callback
*/
interface JQueryCallback {
/**
* Add a callback or a collection of callbacks to a callback list.
*
* @param callbacks A function, or array of functions, that are to be added to the callback list.
*/
add(callbacks: Function): JQueryCallback;
/**
* Add a callback or a collection of callbacks to a callback list.
*
* @param callbacks A function, or array of functions, that are to be added to the callback list.
*/
add(callbacks: Function[]): JQueryCallback;
/**
* Disable a callback list from doing anything more.
*/
disable(): JQueryCallback;
/**
* Determine if the callbacks list has been disabled.
*/
disabled(): boolean;
/**
* Remove all of the callbacks from a list.
*/
empty(): JQueryCallback;
/**
* Call all of the callbacks with the given arguments
*
* @param arguments The argument or list of arguments to pass back to the callback list.
*/
fire(...arguments: any[]): JQueryCallback;
/**
* Determine if the callbacks have already been called at least once.
*/
fired(): boolean;
/**
* Call all callbacks in a list with the given context and arguments.
*
* @param context A reference to the context in which the callbacks in the list should be fired.
* @param arguments An argument, or array of arguments, to pass to the callbacks in the list.
*/
fireWith(context?: any, ...args: any[]): JQueryCallback;
/**
* Determine whether a supplied callback is in a list
*
* @param callback The callback to search for.
*/
has(callback: Function): boolean;
/**
* Lock a callback list in its current state.
*/
lock(): JQueryCallback;
/**
* Determine if the callbacks list has been locked.
*/
locked(): boolean;
/**
* Remove a callback or a collection of callbacks from a callback list.
*
* @param callbacks A function, or array of functions, that are to be removed from the callback list.
*/
remove(callbacks: Function): JQueryCallback;
/**
* Remove a callback or a collection of callbacks from a callback list.
*
* @param callbacks A function, or array of functions, that are to be removed from the callback list.
*/
remove(callbacks: Function[]): JQueryCallback;
} | borget/Skyguardian-WialonApp-UnitOnMap | WebContent/scripts/typings/jquery.d.ts | TypeScript |
InterfaceDeclaration | /**
* Allows jQuery Promises to interop with non-jQuery promises
*/
interface JQueryGenericPromise<T> {
/**
* Add handlers to be called when the Deferred object is resolved, rejected, or still in progress.
*
* @param doneFilter A function that is called when the Deferred is resolved.
* @param failFilter An optional function that is called when the Deferred is rejected.
*/
then<U>(doneFilter: (value: T) => U, failFilter?: (reason: any) => U): JQueryGenericPromise<U>;
/**
* Add handlers to be called when the Deferred object is resolved, rejected, or still in progress.
*
* @param doneFilter A function that is called when the Deferred is resolved.
* @param failFilter An optional function that is called when the Deferred is rejected.
*/
then<U>(doneFilter: (value: T) => JQueryGenericPromise<U>, failFilter?: (reason: any) => U): JQueryGenericPromise<U>;
/**
* Add handlers to be called when the Deferred object is resolved, rejected, or still in progress.
*
* @param doneFilter A function that is called when the Deferred is resolved.
* @param failFilter An optional function that is called when the Deferred is rejected.
*/
then<U>(doneFilter: (value: T) => U, failFilter?: (reason: any) => JQueryGenericPromise<U>): JQueryGenericPromise<U>;
/**
* Add handlers to be called when the Deferred object is resolved, rejected, or still in progress.
*
* @param doneFilter A function that is called when the Deferred is resolved.
* @param failFilter An optional function that is called when the Deferred is rejected.
*/
then<U>(doneFilter: (value: T) => JQueryGenericPromise<U>, failFilter?: (reason: any) => JQueryGenericPromise<U>): JQueryGenericPromise<U>;
} | borget/Skyguardian-WialonApp-UnitOnMap | WebContent/scripts/typings/jquery.d.ts | TypeScript |
InterfaceDeclaration | /**
* Interface for the JQuery promise/deferred callbacks
*/
interface JQueryPromiseCallback<T> {
(value?: T, ...args: any[]): void;
} | borget/Skyguardian-WialonApp-UnitOnMap | WebContent/scripts/typings/jquery.d.ts | TypeScript |
InterfaceDeclaration |
interface JQueryPromiseOperator<T, R> {
(callback: JQueryPromiseCallback<T>, ...callbacks: JQueryPromiseCallback<T>[]): JQueryPromise<R>;
(callback: JQueryPromiseCallback<T>[], ...callbacks: JQueryPromiseCallback<T>[]): JQueryPromise<R>;
} | borget/Skyguardian-WialonApp-UnitOnMap | WebContent/scripts/typings/jquery.d.ts | TypeScript |
InterfaceDeclaration | /**
* Interface for the JQuery promise, part of callbacks
*/
interface JQueryPromise<T> {
/**
* Add handlers to be called when the Deferred object is either resolved or rejected.
*
* @param alwaysCallbacks1 A function, or array of functions, that is called when the Deferred is resolved or rejected.
* @param alwaysCallbacks2 Optional additional functions, or arrays of functions, that are called when the Deferred is resolved or rejected.
*/
always: JQueryPromiseOperator<any, T>;
/**
* Add handlers to be called when the Deferred object is resolved.
*
* @param doneCallbacks1 A function, or array of functions, that are called when the Deferred is resolved.
* @param doneCallbacks2 Optional additional functions, or arrays of functions, that are called when the Deferred is resolved.
*/
done: JQueryPromiseOperator<T, T>;
/**
* Add handlers to be called when the Deferred object is rejected.
*
* @param failCallbacks1 A function, or array of functions, that are called when the Deferred is rejected.
* @param failCallbacks2 Optional additional functions, or arrays of functions, that are called when the Deferred is rejected.
*/
fail: JQueryPromiseOperator<any, T>;
/**
* Add handlers to be called when the Deferred object generates progress notifications.
*
* @param progressCallbacks A function, or array of functions, to be called when the Deferred generates progress notifications.
*/
progress(progressCallback: JQueryPromiseCallback<T>): JQueryPromise<T>;
progress(progressCallbacks: JQueryPromiseCallback<T>[]): JQueryPromise<T>;
/**
* Determine the current state of a Deferred object.
*/
state(): string;
// Deprecated - given no typings
pipe(doneFilter?: (x: any) => any, failFilter?: (x: any) => any, progressFilter?: (x: any) => any): JQueryPromise<any>;
/**
* Add handlers to be called when the Deferred object is resolved, rejected, or still in progress.
*
* @param doneFilter A function that is called when the Deferred is resolved.
* @param failFilter An optional function that is called when the Deferred is rejected.
* @param progressFilter An optional function that is called when progress notifications are sent to the Deferred.
*/
then<U>(doneFilter: (value: T) => U, failFilter?: (...reasons: any[]) => U, progressFilter?: (...progression: any[]) => any): JQueryPromise<U>;
/**
* Add handlers to be called when the Deferred object is resolved, rejected, or still in progress.
*
* @param doneFilter A function that is called when the Deferred is resolved.
* @param failFilter An optional function that is called when the Deferred is rejected.
* @param progressFilter An optional function that is called when progress notifications are sent to the Deferred.
*/
then<U>(doneFilter: (value: T) => JQueryGenericPromise<U>, failFilter?: (...reasons: any[]) => U, progressFilter?: (...progression: any[]) => any): JQueryPromise<U>;
/**
* Add handlers to be called when the Deferred object is resolved, rejected, or still in progress.
*
* @param doneFilter A function that is called when the Deferred is resolved.
* @param failFilter An optional function that is called when the Deferred is rejected.
* @param progressFilter An optional function that is called when progress notifications are sent to the Deferred.
*/
then<U>(doneFilter: (value: T) => U, failFilter?: (...reasons: any[]) => JQueryGenericPromise<U>, progressFilter?: (...progression: any[]) => any): JQueryPromise<U>;
/**
* Add handlers to be called when the Deferred object is resolved, rejected, or still in progress.
*
* @param doneFilter A function that is called when the Deferred is resolved.
* @param failFilter An optional function that is called when the Deferred is rejected.
* @param progressFilter An optional function that is called when progress notifications are sent to the Deferred.
*/
then<U>(doneFilter: (value: T) => JQueryGenericPromise<U>, failFilter?: (...reasons: any[]) => JQueryGenericPromise<U>, progressFilter?: (...progression: any[]) => any): JQueryPromise<U>;
// Because JQuery Promises Suck
/**
* Add handlers to be called when the Deferred object is resolved, rejected, or still in progress.
*
* @param doneFilter A function that is called when the Deferred is resolved.
* @param failFilter An optional function that is called when the Deferred is rejected.
* @param progressFilter An optional function that is called when progress notifications are sent to the Deferred.
*/
then<U>(doneFilter: (...values: any[]) => U, failFilter?: (...reasons: any[]) => U, progressFilter?: (...progression: any[]) => any): JQueryPromise<U>;
/**
* Add handlers to be called when the Deferred object is resolved, rejected, or still in progress.
*
* @param doneFilter A function that is called when the Deferred is resolved.
* @param failFilter An optional function that is called when the Deferred is rejected.
* @param progressFilter An optional function that is called when progress notifications are sent to the Deferred.
*/
then<U>(doneFilter: (...values: any[]) => JQueryGenericPromise<U>, failFilter?: (...reasons: any[]) => U, progressFilter?: (...progression: any[]) => any): JQueryPromise<U>;
/**
* Add handlers to be called when the Deferred object is resolved, rejected, or still in progress.
*
* @param doneFilter A function that is called when the Deferred is resolved.
* @param failFilter An optional function that is called when the Deferred is rejected.
* @param progressFilter An optional function that is called when progress notifications are sent to the Deferred.
*/
then<U>(doneFilter: (...values: any[]) => U, failFilter?: (...reasons: any[]) => JQueryGenericPromise<U>, progressFilter?: (...progression: any[]) => any): JQueryPromise<U>;
/**
* Add handlers to be called when the Deferred object is resolved, rejected, or still in progress.
*
* @param doneFilter A function that is called when the Deferred is resolved.
* @param failFilter An optional function that is called when the Deferred is rejected.
* @param progressFilter An optional function that is called when progress notifications are sent to the Deferred.
*/
then<U>(doneFilter: (...values: any[]) => JQueryGenericPromise<U>, failFilter?: (...reasons: any[]) => JQueryGenericPromise<U>, progressFilter?: (...progression: any[]) => any): JQueryPromise<U>;
} | borget/Skyguardian-WialonApp-UnitOnMap | WebContent/scripts/typings/jquery.d.ts | TypeScript |
InterfaceDeclaration | /**
* Interface for the JQuery deferred, part of callbacks
*/
interface JQueryDeferred<T> extends JQueryPromise<T> {
/**
* Add handlers to be called when the Deferred object is either resolved or rejected.
*
* @param alwaysCallbacks1 A function, or array of functions, that is called when the Deferred is resolved or rejected.
* @param alwaysCallbacks2 Optional additional functions, or arrays of functions, that are called when the Deferred is resolved or rejected.
*/
always(alwaysCallbacks1?: JQueryPromiseCallback<T>, ...alwaysCallbacks2: JQueryPromiseCallback<T>[]): JQueryDeferred<T>;
always(alwaysCallbacks1?: JQueryPromiseCallback<T>[], ...alwaysCallbacks2: JQueryPromiseCallback<T>[]): JQueryDeferred<T>;
always(alwaysCallbacks1?: JQueryPromiseCallback<T>, ...alwaysCallbacks2: any[]): JQueryDeferred<T>;
always(alwaysCallbacks1?: JQueryPromiseCallback<T>[], ...alwaysCallbacks2: any[]): JQueryDeferred<T>;
/**
* Add handlers to be called when the Deferred object is resolved.
*
* @param doneCallbacks1 A function, or array of functions, that are called when the Deferred is resolved.
* @param doneCallbacks2 Optional additional functions, or arrays of functions, that are called when the Deferred is resolved.
*/
done(doneCallbacks1?: JQueryPromiseCallback<T>, ...doneCallbacks2: JQueryPromiseCallback<T>[]): JQueryDeferred<T>;
done(doneCallbacks1?: JQueryPromiseCallback<T>[], ...doneCallbacks2: JQueryPromiseCallback<T>[]): JQueryDeferred<T>;
done(doneCallbacks1?: JQueryPromiseCallback<T>, ...doneCallbacks2: any[]): JQueryDeferred<T>;
done(doneCallbacks1?: JQueryPromiseCallback<T>[], ...doneCallbacks2: any[]): JQueryDeferred<T>;
/**
* Add handlers to be called when the Deferred object is rejected.
*
* @param failCallbacks1 A function, or array of functions, that are called when the Deferred is rejected.
* @param failCallbacks2 Optional additional functions, or arrays of functions, that are called when the Deferred is rejected.
*/
fail(failCallbacks1?: JQueryPromiseCallback<T>, ...failCallbacks2: JQueryPromiseCallback<T>[]): JQueryDeferred<T>;
fail(failCallbacks1?: JQueryPromiseCallback<T>[], ...failCallbacks2: JQueryPromiseCallback<T>[]): JQueryDeferred<T>;
fail(failCallbacks1?: JQueryPromiseCallback<T>, ...failCallbacks2: any[]): JQueryDeferred<T>;
fail(failCallbacks1?: JQueryPromiseCallback<T>[], ...failCallbacks2: any[]): JQueryDeferred<T>;
/**
* Add handlers to be called when the Deferred object generates progress notifications.
*
* @param progressCallbacks A function, or array of functions, to be called when the Deferred generates progress notifications.
*/
progress(progressCallback: JQueryPromiseCallback<T>): JQueryDeferred<T>;
progress(progressCallbacks: JQueryPromiseCallback<T>[]): JQueryDeferred<T>;
/**
* Call the progressCallbacks on a Deferred object with the given args.
*
* @param args Optional arguments that are passed to the progressCallbacks.
*/
notify(...args: any[]): JQueryDeferred<T>;
/**
* Call the progressCallbacks on a Deferred object with the given context and args.
*
* @param context Context passed to the progressCallbacks as the this object.
* @param args Optional arguments that are passed to the progressCallbacks.
*/
notifyWith(context: any, ...args: any[]): JQueryDeferred<T>;
/**
* Reject a Deferred object and call any failCallbacks with the given args.
*
* @param args Optional arguments that are passed to the failCallbacks.
*/
reject(...args: any[]): JQueryDeferred<T>;
/**
* Reject a Deferred object and call any failCallbacks with the given context and args.
*
* @param context Context passed to the failCallbacks as the this object.
* @param args An optional array of arguments that are passed to the failCallbacks.
*/
rejectWith(context: any, ...args: any[]): JQueryDeferred<T>;
/**
* Resolve a Deferred object and call any doneCallbacks with the given args.
*
* @param value First argument passed to doneCallbacks.
* @param args Optional subsequent arguments that are passed to the doneCallbacks.
*/
resolve(value?: T, ...args: any[]): JQueryDeferred<T>;
/**
* Resolve a Deferred object and call any doneCallbacks with the given context and args.
*
* @param context Context passed to the doneCallbacks as the this object.
* @param args An optional array of arguments that are passed to the doneCallbacks.
*/
resolveWith(context: any, ...args: any[]): JQueryDeferred<T>;
/**
* Return a Deferred's Promise object.
*
* @param target Object onto which the promise methods have to be attached
*/
promise(target?: any): JQueryPromise<T>;
} | borget/Skyguardian-WialonApp-UnitOnMap | WebContent/scripts/typings/jquery.d.ts | TypeScript |
InterfaceDeclaration | /**
* Interface of the JQuery extension of the W3C event object
*/
interface BaseJQueryEventObject extends Event {
data: any;
delegateTarget: Element;
isDefaultPrevented(): boolean;
isImmediatePropagationStopped(): boolean;
isPropagationStopped(): boolean;
namespace: string;
originalEvent: Event;
preventDefault(): any;
relatedTarget: Element;
result: any;
stopImmediatePropagation(): void;
stopPropagation(): void;
pageX: number;
pageY: number;
which: number;
metaKey: boolean;
} | borget/Skyguardian-WialonApp-UnitOnMap | WebContent/scripts/typings/jquery.d.ts | TypeScript |
InterfaceDeclaration |
interface JQueryEventObject extends BaseJQueryEventObject, JQueryInputEventObject, JQueryMouseEventObject, JQueryKeyEventObject {
} | borget/Skyguardian-WialonApp-UnitOnMap | WebContent/scripts/typings/jquery.d.ts | TypeScript |
InterfaceDeclaration | /*
Collection of properties of the current browser
*/
interface JQuerySupport {
ajax?: boolean;
boxModel?: boolean;
changeBubbles?: boolean;
checkClone?: boolean;
checkOn?: boolean;
cors?: boolean;
cssFloat?: boolean;
hrefNormalized?: boolean;
htmlSerialize?: boolean;
leadingWhitespace?: boolean;
noCloneChecked?: boolean;
noCloneEvent?: boolean;
opacity?: boolean;
optDisabled?: boolean;
optSelected?: boolean;
scriptEval? (): boolean;
style?: boolean;
submitBubbles?: boolean;
tbody?: boolean;
} | borget/Skyguardian-WialonApp-UnitOnMap | WebContent/scripts/typings/jquery.d.ts | TypeScript |
InterfaceDeclaration |
interface JQueryParam {
/**
* Create a serialized representation of an array or object, suitable for use in a URL query string or Ajax request.
*
* @param obj An array or object to serialize.
*/
(obj: any): string;
/**
* Create a serialized representation of an array or object, suitable for use in a URL query string or Ajax request.
*
* @param obj An array or object to serialize.
* @param traditional A Boolean indicating whether to perform a traditional "shallow" serialization.
*/
(obj: any, traditional: boolean): string;
} | borget/Skyguardian-WialonApp-UnitOnMap | WebContent/scripts/typings/jquery.d.ts | TypeScript |
InterfaceDeclaration | /**
* The interface used to construct jQuery events (with $.Event). It is
* defined separately instead of inline in JQueryStatic to allow
* overriding the construction function with specific strings
* returning specific event objects.
*/
interface JQueryEventConstructor {
(name: string, eventProperties?: any): JQueryEventObject;
new (name: string, eventProperties?: any): JQueryEventObject;
} | borget/Skyguardian-WialonApp-UnitOnMap | WebContent/scripts/typings/jquery.d.ts | TypeScript |
InterfaceDeclaration | /**
* The interface used to specify coordinates.
*/
interface JQueryCoordinates {
left: number;
top: number;
} | borget/Skyguardian-WialonApp-UnitOnMap | WebContent/scripts/typings/jquery.d.ts | TypeScript |
InterfaceDeclaration |
interface JQueryAnimationOptions {
/**
* A string or number determining how long the animation will run.
*/
duration?: any;
/**
* A string indicating which easing function to use for the transition.
*/
easing?: string;
/**
* A function to call once the animation is complete.
*/
complete?: Function;
/**
* A function to be called for each animated property of each animated element. This function provides an opportunity to modify the Tween object to change the value of the property before it is set.
*/
step?: (now: number, tween: any) => any;
/**
* A function to be called after each step of the animation, only once per animated element regardless of the number of animated properties. (version added: 1.8)
*/
progress?: (animation: JQueryPromise<any>, progress: number, remainingMs: number) => any;
/**
* A function to call when the animation begins. (version added: 1.8)
*/
start?: (animation: JQueryPromise<any>) => any;
/**
* A function to be called when the animation completes (its Promise object is resolved). (version added: 1.8)
*/
done?: (animation: JQueryPromise<any>, jumpedToEnd: boolean) => any;
/**
* A function to be called when the animation fails to complete (its Promise object is rejected). (version added: 1.8)
*/
fail?: (animation: JQueryPromise<any>, jumpedToEnd: boolean) => any;
/**
* A function to be called when the animation completes or stops without completing (its Promise object is either resolved or rejected). (version added: 1.8)
*/
always?: (animation: JQueryPromise<any>, jumpedToEnd: boolean) => any;
/**
* A Boolean indicating whether to place the animation in the effects queue. If false, the animation will begin immediately. As of jQuery 1.7, the queue option can also accept a string, in which case the animation is added to the queue represented by that string. When a custom queue name is used the animation does not automatically start; you must call .dequeue("queuename") to start it.
*/
queue?: any;
/**
* A map of one or more of the CSS properties defined by the properties argument and their corresponding easing functions. (version added: 1.4)
*/
specialEasing?: Object;
} | borget/Skyguardian-WialonApp-UnitOnMap | WebContent/scripts/typings/jquery.d.ts | TypeScript |
ArrowFunction |
({
name,
type,
label,
validate,
readOnly,
isEdited,
...otherProps
}) => (
<Field
name={name} | dsp-testing/fp-frontend | packages/form/src/InputField.tsx | TypeScript |
InterfaceDeclaration |
interface InputFieldProps {
readOnly?: boolean;
isEdited?: boolean;
type?: string;
label?: LabelType;
} | dsp-testing/fp-frontend | packages/form/src/InputField.tsx | TypeScript |
ArrowFunction |
() => ({
backgroundColor: '#ffffff',
}) | ObjectPress/object-press | src/components/Wrapper.style.tsx | TypeScript |
ArrowFunction |
() => ({
display: 'flex',
justifyContent: 'space-between',
alignItems: 'center',
flex: '0 1 auto',
flexDirection: 'row',
flexWrap: 'wrap',
padding: '40px',
/* margin-bottom: 40px, */
backgroundColor: '#ffffff',
'@media only screen and (max-width: 990px)': {
padding: '20px',
},
}) | ObjectPress/object-press | src/components/Wrapper.style.tsx | TypeScript |
ArrowFunction |
({ $theme }) => ({
...$theme.typography.fontBold18,
color: $theme.colors.textDark,
margin: 0,
}) | ObjectPress/object-press | src/components/Wrapper.style.tsx | TypeScript |
ArrowFunction |
({ $theme }) => ({
display: 'flex',
justifyContent: 'space-between',
paddingTop: '20px',
}) | ObjectPress/object-press | src/components/Wrapper.style.tsx | TypeScript |
Subsets and Splits