Skip to content
This repository was archived by the owner on Oct 12, 2024. It is now read-only.

Commit ce28e93

Browse files
committed
Organize source code structure and refactor
1 parent a5a0825 commit ce28e93

File tree

85 files changed

+756
-1201
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+756
-1201
lines changed

TODO_TODO_TODO.md

-9
This file was deleted.

lib/shared_src/_all_shared_src.g.dart

-46
This file was deleted.

lib/shared_src/web_friendly/_all_web_friendly.g.dart

-44
This file was deleted.

lib/shared_src/web_friendly/collection_utils/var_args.dart

-116
This file was deleted.

lib/shared_src/web_friendly/extensions/split_by_last_occurence_of_on_string_extension.dart

-25
This file was deleted.

lib/shared_src/web_friendly/valid_object.dart

-33
This file was deleted.

lib/src/_all_src.g.dart

+63-24
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,66 @@
77
// ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓
88
//.title~
99

10-
export 'web_friendly/any_platform/any_platform.dart';
11-
export 'web_friendly/app/callbacks.dart';
12-
export 'web_friendly/app/chainable.dart';
13-
export 'web_friendly/app/collective_service.dart';
14-
export 'web_friendly/app/debouncer.dart';
15-
export 'web_friendly/app/debug_log.dart';
16-
export 'web_friendly/app/disposable_value.dart';
17-
export 'web_friendly/app/function_queue.dart';
18-
export 'web_friendly/app/here.dart';
19-
export 'web_friendly/app/notification_topic.dart';
20-
export 'web_friendly/app/post_destruction_checker.dart';
21-
export 'web_friendly/app/rec.dart';
22-
export 'web_friendly/app/screen_calculator.dart';
23-
export 'web_friendly/app/single_service.dart';
24-
export 'web_friendly/http_service.dart';
25-
export 'web_friendly/http/t_http_function_result.dart';
26-
export 'web_friendly/patterns/recursive_replace.dart';
27-
export 'web_friendly/patterns/replace_patterns.dart';
28-
export 'web_friendly/second_to_ninth_element_on_iterable_extension.dart';
29-
export 'web_friendly/stream_to_future.dart';
30-
export 'web_friendly/streams/polling_stream.dart';
31-
export 'web_friendly/time/date_time.dart';
32-
export 'web_friendly/time/duration_formatted_english.dart';
33-
export 'web_friendly/tuples.dart';
10+
export 'collections/src/csv.dart';
11+
export 'collections/src/etc.dart';
12+
export 'collections/src/expand_flattened_json.dart';
13+
export 'collections/src/expand_json.dart';
14+
export 'collections/src/first_where_or_null.dart';
15+
export 'collections/src/flatten_json.dart';
16+
export 'collections/src/generic_type_extension.dart';
17+
export 'collections/src/join_with_last_separator_on_iterable_extension.dart';
18+
export 'collections/src/map_filter_extension.dart';
19+
export 'collections/src/map_keys_and_values_on_map_extension.dart';
20+
export 'collections/src/map_to_json.dart';
21+
export 'collections/src/mapi.dart';
22+
export 'collections/src/maybe_add_to.dart';
23+
export 'collections/src/merge.dart';
24+
export 'collections/src/non_nulls_on_map_extension.dart';
25+
export 'collections/src/null_filtered.dart';
26+
export 'collections/src/null_if_empty_extensions.dart';
27+
export 'collections/src/second_to_ninth_element_on_iterable_extension.dart';
28+
export 'collections/src/unique_entries.dart';
29+
export 'core/src/ansi_styled_string.dart';
30+
export 'core/src/callbacks.dart';
31+
export 'core/src/debouncer.dart';
32+
export 'core/src/debug_log.dart';
33+
export 'core/src/disposable_value.dart';
34+
export 'core/src/function_queue.dart';
35+
export 'core/src/here.dart';
36+
export 'core/src/let.dart';
37+
export 'core/src/notification_topic.dart';
38+
export 'core/src/paths.dart';
39+
export 'core/src/post_destruction_checker.dart';
40+
export 'core/src/rec.dart';
41+
export 'core/src/screen_calculator.dart';
42+
export 'core/src/type_message_mixin.dart';
43+
export 'core/src/value_of_on_enum_extension.dart';
44+
export 'core/src/version.dart';
45+
export 'experimental/src/chainable.dart';
46+
export 'experimental/src/tuples.dart';
47+
export 'experimental/src/var_args.dart';
48+
export 'http/src/http_service.dart';
49+
export 'http/src/t_http_function_result.dart';
50+
export 'location_utils/src/calculate_best_center_on_location_package_extension.dart';
51+
export 'location_utils/src/calculate_geometric_center_on_location_package_extension.dart';
52+
export 'location_utils/src/calculate_havershire_3d_distance_on_location_package_extension.dart';
53+
export 'location_utils/src/calculate_zoom_to_fit_on_location_package_extension.dart';
54+
export 'location_utils/src/celestial_radius.dart';
55+
export 'location_utils/src/distance_unit.dart';
56+
export 'location_utils/src/location_utils.dart';
57+
export 'location_utils/src/t_location_components.dart';
58+
export 'patterns/src/extract_scopes.dart';
59+
export 'patterns/src/recursive_replace.dart';
60+
export 'patterns/src/replace_data.dart';
61+
export 'patterns/src/replace_patterns.dart';
62+
export 'streams/src/polling_stream.dart';
63+
export 'streams/src/stream_to_future.dart';
64+
export 'streams/src/to_future_on_stream_extension.dart';
65+
export 'strings/src/misc_on_string_extension.dart';
66+
export 'strings/src/string_case_conversions_on_string_extension.dart';
67+
export 'strings/src/string_case_types.dart';
68+
export 'strings/src/to_timmed_or_null_on_object_extension.dart';
69+
export 'time/src/date_time.dart';
70+
export 'time/src/duration_formatted_english.dart';
71+
export 'time/src/firestore_timestamp.dart';
72+
export 'time/src/parse_duration_on_string_extension.dart';

lib/shared_src/web_friendly/extensions/null_if_empty_extensions.dart lib/src/collections/src/null_if_empty_extensions.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
// ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓
1111
//.title~
1212

13-
import 'dart:collection';
13+
import 'dart:collection' show Queue;
1414

1515
// ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
1616

lib/src/web_friendly/app/callbacks.dart lib/src/core/src/callbacks.dart

+2-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,8 @@
1010
// ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓
1111
//.title~
1212

13-
import 'dart:async';
14-
15-
import '/src/web_friendly/_all_web_friendly.g.dart';
13+
import 'function_queue.dart';
14+
import 'here.dart';
1615

1716
// ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
1817

File renamed without changes.

0 commit comments

Comments
 (0)