This app provides monitoring and information features for the common freifunk user and the technical stuff of a freifunk community.
Code base is taken from a TUM Practical Course project and added here to see if Freifunk Altdorf can use it.
https://www.freifunk-altdorf.de
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
2.8 KiB
86 lines
2.8 KiB
/** |
|
* Copyright (c) 2015-present, Facebook, Inc. |
|
* |
|
* This source code is licensed under the MIT license found in the |
|
* LICENSE file in the root directory of this source tree. |
|
*/ |
|
|
|
#import <Foundation/Foundation.h> |
|
|
|
#import <RCTAnimation/RCTValueAnimatedNode.h> |
|
#import <React/RCTBridgeModule.h> |
|
#import <React/RCTUIManager.h> |
|
|
|
@interface RCTNativeAnimatedNodesManager : NSObject |
|
|
|
- (nonnull instancetype)initWithUIManager:(nonnull RCTUIManager *)uiManager; |
|
|
|
- (void)updateAnimations; |
|
|
|
- (void)stepAnimations:(nonnull CADisplayLink *)displaylink; |
|
|
|
// graph |
|
|
|
- (void)createAnimatedNode:(nonnull NSNumber *)tag |
|
config:(NSDictionary<NSString *, id> *__nonnull)config; |
|
|
|
- (void)connectAnimatedNodes:(nonnull NSNumber *)parentTag |
|
childTag:(nonnull NSNumber *)childTag; |
|
|
|
- (void)disconnectAnimatedNodes:(nonnull NSNumber *)parentTag |
|
childTag:(nonnull NSNumber *)childTag; |
|
|
|
- (void)connectAnimatedNodeToView:(nonnull NSNumber *)nodeTag |
|
viewTag:(nonnull NSNumber *)viewTag |
|
viewName:(nonnull NSString *)viewName; |
|
|
|
- (void)restoreDefaultValues:(nonnull NSNumber *)nodeTag; |
|
|
|
- (void)disconnectAnimatedNodeFromView:(nonnull NSNumber *)nodeTag |
|
viewTag:(nonnull NSNumber *)viewTag; |
|
|
|
- (void)dropAnimatedNode:(nonnull NSNumber *)tag; |
|
|
|
// mutations |
|
|
|
- (void)setAnimatedNodeValue:(nonnull NSNumber *)nodeTag |
|
value:(nonnull NSNumber *)value; |
|
|
|
- (void)setAnimatedNodeOffset:(nonnull NSNumber *)nodeTag |
|
offset:(nonnull NSNumber *)offset; |
|
|
|
- (void)flattenAnimatedNodeOffset:(nonnull NSNumber *)nodeTag; |
|
|
|
- (void)extractAnimatedNodeOffset:(nonnull NSNumber *)nodeTag; |
|
|
|
// drivers |
|
|
|
- (void)startAnimatingNode:(nonnull NSNumber *)animationId |
|
nodeTag:(nonnull NSNumber *)nodeTag |
|
config:(NSDictionary<NSString *, id> *__nonnull)config |
|
endCallback:(nullable RCTResponseSenderBlock)callBack; |
|
|
|
- (void)stopAnimation:(nonnull NSNumber *)animationId; |
|
|
|
- (void)stopAnimationLoop; |
|
|
|
// events |
|
|
|
- (void)addAnimatedEventToView:(nonnull NSNumber *)viewTag |
|
eventName:(nonnull NSString *)eventName |
|
eventMapping:(NSDictionary<NSString *, id> *__nonnull)eventMapping; |
|
|
|
- (void)removeAnimatedEventFromView:(nonnull NSNumber *)viewTag |
|
eventName:(nonnull NSString *)eventName |
|
animatedNodeTag:(nonnull NSNumber *)animatedNodeTag; |
|
|
|
- (void)handleAnimatedEvent:(nonnull id<RCTEvent>)event; |
|
|
|
// listeners |
|
|
|
- (void)startListeningToAnimatedNodeValue:(nonnull NSNumber *)tag |
|
valueObserver:(nonnull id<RCTValueAnimatedNodeObserver>)valueObserver; |
|
|
|
- (void)stopListeningToAnimatedNodeValue:(nonnull NSNumber *)tag; |
|
|
|
@end
|
|
|