1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#[frame_support::pallet(dev_mode)]
pub mod pallet {
	use cfg_traits::TryConvert;
	use frame_support::pallet_prelude::*;
	use mock_builder::{execute_call_instance, register_call_instance};
	use sp_runtime::traits::Convert;

	#[pallet::config]
	pub trait Config<I: 'static = ()>: frame_system::Config {
		type From;
		type To;
	}

	#[pallet::pallet]
	pub struct Pallet<T, I = ()>(_);

	#[pallet::storage]
	type CallIds<T: Config<I>, I: 'static = ()> = StorageMap<_, _, String, mock_builder::CallId>;

	impl<T: Config<I>, I: 'static> Pallet<T, I> {
		pub fn mock_try_convert(f: impl Fn(T::From) -> Result<T::To, DispatchError> + 'static) {
			register_call_instance!(f);
		}

		pub fn mock_convert(f: impl Fn(T::From) -> T::To + 'static) {
			register_call_instance!(f);
		}
	}

	impl<T: Config<I>, I: 'static> TryConvert<T::From, T::To> for Pallet<T, I> {
		type Error = DispatchError;

		fn try_convert(from: T::From) -> Result<T::To, Self::Error> {
			execute_call_instance!(from)
		}
	}

	impl<T: Config<I>, I: 'static> Convert<T::From, T::To> for Pallet<T, I> {
		fn convert(from: T::From) -> T::To {
			execute_call_instance!(from)
		}
	}
}