Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
gmalpha_flutter
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mobile
gmalpha_flutter
Commits
72d14bd6
Commit
72d14bd6
authored
Feb 19, 2019
by
ouxiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add event_bus test
parent
d28b68d9
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
143 additions
and
0 deletions
+143
-0
eventBusTest.dart
lib/eventBusTest.dart
+143
-0
No files found.
lib/eventBusTest.dart
0 → 100644
View file @
72d14bd6
import
'dart:async'
;
import
'dart:html'
;
import
'package:event_bus/event_bus.dart'
;
import
'package:flutter/material.dart'
;
import
'package:logging/logging.dart'
;
// import 'events.dart';
int
counterA
=
1
;
int
counterB
=
1
;
final
_log
=
new
Logger
(
'event_bus_example'
);
void
main
(
)
{
// Init logging.
initLogging
();
// Log all events.
eventBus
.
on
()
.
listen
((
event
)
=>
_log
.
finest
(
'event fired:
${event.runtimeType}
'
));
// Initialize the listener boxes.
new
Listener
(
querySelector
(
'#listener-1'
));
new
Listener
(
querySelector
(
'#listener-2'
));
// Init Event fields.
LabelElement
fireLabelA
=
querySelector
(
'#fire-label-a'
);
LabelElement
fireLabelB
=
querySelector
(
'#fire-label-b'
);
ButtonElement
fireButtonA
=
querySelector
(
"#fire-button-a"
);
ButtonElement
fireButtonB
=
querySelector
(
"#fire-button-b"
);
fireButtonA
.
onClick
.
listen
((
_
)
{
// -------------------------------------------------
// Fire Event A
// -------------------------------------------------
eventBus
.
fire
(
new
MyEventA
(
'Received Event A [
$counterA
]'
));
fireLabelA
.
text
=
'--> fired [
$counterA
]'
;
counterA
++;
});
fireButtonB
.
onClick
.
listen
((
_
)
{
// -------------------------------------------------
// Fire Event B
// -------------------------------------------------
eventBus
.
fire
(
new
MyEventB
(
'Received Event B [
$counterB
]'
));
fireLabelB
.
text
=
'--> fired [
$counterB
]'
;
counterB
++;
});
}
initLogging
()
{
// Print output to console.
Logger
.
root
.
onRecord
.
listen
((
LogRecord
r
)
{
print
(
'
${r.time}
\t
${r.loggerName}
\t
[
${r.level.name}
]:
\t
${r.message}
'
);
});
// Root logger level.
Logger
.
root
.
level
=
Level
.
FINEST
;
}
class
Listener
{
Element
element
;
TextAreaElement
output
;
StreamSubscription
subscription
;
Listener
(
this
.
element
)
{
output
=
element
.
querySelector
(
'textarea'
);
// Init buttons.
element
.
querySelector
(
'.listen-a'
).
onClick
.
listen
((
_
)
=>
listenForEventA
());
element
.
querySelector
(
'.listen-b'
).
onClick
.
listen
((
_
)
=>
listenForEventB
());
element
.
querySelector
(
'.pause'
).
onClick
.
listen
((
_
)
=>
pause
());
element
.
querySelector
(
'.resume'
).
onClick
.
listen
((
_
)
=>
resume
());
element
.
querySelector
(
'.cancel'
).
onClick
.
listen
((
_
)
=>
cancel
());
}
void
listenForEventA
()
{
if
(
subscription
!=
null
)
{
appendOuput
(
'Already listening for an event.'
);
}
else
{
// -------------------------------------------------
// Listen for Event A
// -------------------------------------------------
subscription
=
eventBus
.
on
<
MyEventA
>().
listen
((
event
)
{
appendOuput
(
event
.
text
);
});
appendOuput
(
'---'
);
appendOuput
(
'Listening for Event A'
);
appendOuput
(
'---'
);
}
}
void
listenForEventB
()
{
if
(
subscription
!=
null
)
{
appendOuput
(
'Already listening for an event.'
);
}
else
{
// -------------------------------------------------
// Listen for Event B
// -------------------------------------------------
subscription
=
eventBus
.
on
<
MyEventB
>().
listen
((
MyEventB
event
)
{
appendOuput
(
event
.
text
);
});
appendOuput
(
'---'
);
appendOuput
(
'Listening for Event B'
);
appendOuput
(
'---'
);
}
}
void
pause
()
{
if
(
subscription
!=
null
)
{
subscription
.
pause
();
appendOuput
(
'Subscription paused.'
);
}
else
{
appendOuput
(
'No subscription, cannot pause!'
);
}
}
void
resume
()
{
if
(
subscription
!=
null
)
{
subscription
.
resume
();
appendOuput
(
'Subscription resumed.'
);
}
else
{
appendOuput
(
'No subscription, cannot resume!'
);
}
}
void
cancel
()
{
if
(
subscription
!=
null
)
{
subscription
.
cancel
();
subscription
=
null
;
appendOuput
(
'Subscription canceled.'
);
}
else
{
appendOuput
(
'No subscription, cannot cancel!'
);
}
}
void
appendOuput
(
String
text
)
{
output
.
value
+=
'
$text
\n
'
;
output
.
scrollTop
=
output
.
scrollHeight
;
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment