আরে অ্যান্ডারস, দুর্দান্ত প্রশ্ন!
আমি আপনার মতো প্রায় একই ব্যবহারের মামলা পেয়েছি এবং একই জিনিসটি করতে চেয়েছিলাম! ব্যবহারকারী অনুসন্ধান> ফলাফল পান> ফলাফলের জন্য নেভিগেট করে> ব্যবহারকারী নেভিগেট করে> বোম জ্বলজ্বলে ফলাফলগুলিতে দ্রুত ফিরে আসে , তবে আপনি যে নির্দিষ্ট আপনি সংরক্ষণ করতে চান না।
TL; ড
আপনার একটি ক্লাস থাকা দরকার যা RouteReuseStrategy
আপনার কৌশল প্রয়োগ করে এবং সরবরাহ করে ngModule
। আপনি যদি রুটটি সংরক্ষণ করার সময় সংশোধন করতে চান তবে shouldDetach
ফাংশনটি সংশোধন করুন । যখন এটি ফিরে আসে true
, কৌণিকটি রুটটি সঞ্চয় করে। রুটটি সংযুক্ত হওয়ার পরে আপনি যদি সংশোধন করতে চান তবে shouldAttach
ফাংশনটি সংশোধন করুন । যখন shouldAttach
সত্য ফেরৎ, কৌণিক অনুরোধ রুটের জায়গায় সঞ্চিত রুট ব্যবহার করবে। আপনার সাথে খেলা করার জন্য এখানে একটি প্লাঙ্কার ।
রাউটারউইজ স্ট্রেটজি সম্পর্কে
এই প্রশ্নটি জিজ্ঞাসা করে, আপনি ইতিমধ্যে বুঝতে পেরেছেন যে রাউটারউইজস্ট্রেজি আপনাকে কৌনিকটিকে কোনও উপাদান নষ্ট না করতে বলার অনুমতি দেয় তবে বাস্তবে এটি পরবর্তী তারিখে পুনরায় রেন্ডারিংয়ের জন্য সংরক্ষণ করতে পারে। এটি দুর্দান্ত কারণ এটি অনুমতি দেয়:
- হ্রাস সার্ভার কল
- গতি বেড়েছে
- এবং উপাদানটি রেন্ডার করে, ডিফল্টরূপে, একই অবস্থায় এটি বাকী ছিল
এটি সর্বশেষটি গুরুত্বপূর্ণ যদি আপনি বলতে চান যে, কোনও পৃষ্ঠা অস্থায়ীভাবে ছেড়ে দিন যদিও ব্যবহারকারী এতে প্রচুর পাঠ্য সন্নিবেশ করেছেন। অতিরিক্ত পরিমাণের ফর্মের কারণে এন্টারপ্রাইজ অ্যাপ্লিকেশনগুলি এই বৈশিষ্ট্যটি পছন্দ করবে !
এই সমস্যাটি সমাধান করার জন্যই আমি এনেছি। যেমনটি আপনি বলেছেন, আপনার ব্যবহার করা দরকারRouteReuseStrategy
@ কৌনিক / রাউটার দ্বারা প্রস্তাবিত 3.4.1 সংস্করণ এবং উচ্চতরগুলিতে ।
করতে
প্রথম আপনার প্রকল্পের @ কৌনিক / রাউটার সংস্করণ 3.4.1 বা তার বেশি রয়েছে তা নিশ্চিত করুন।
পরবর্তী , যা আপনার বর্গ কার্যকরী ঐ বাড়িতে হবে যারা একটি ফাইল তৈরি RouteReuseStrategy
। আমি আমার নামক reuse-strategy.ts
এবং এটি স্থাপন /app
জিম্মা জন্য ফোল্ডার। আপাতত, এই শ্রেণীর মতো হওয়া উচিত:
import { RouteReuseStrategy } from '@angular/router';
export class CustomReuseStrategy implements RouteReuseStrategy {
}
(আপনার টাইপস্ক্রিপ্ট ত্রুটি সম্পর্কে চিন্তা করবেন না, আমরা সবকিছু সমাধান করতে চলেছি)
আপনার ক্লাসটি সরবরাহ করে ভিত্তি শেষ করুন app.module
। নোট করুন যে আপনি এখনও লিখেন নি CustomReuseStrategy
, তবে এগিয়ে যাওয়া উচিত এবং import
এটি reuse-strategy.ts
সমস্ত একইরকম। এছাড়াওimport { RouteReuseStrategy } from '@angular/router';
@NgModule({
[...],
providers: [
{provide: RouteReuseStrategy, useClass: CustomReuseStrategy}
]
)}
export class AppModule {
}
চূড়ান্ত টুকরাটি ক্লাসটি লিখছে যা রুটগুলি বিচ্ছিন্ন, সংরক্ষণ, পুনরুদ্ধার এবং পুনরায় সংযুক্ত হবে কিনা তা নিয়ন্ত্রণ করবে। আমরা পুরানো অনুলিপি / পেস্টে পৌঁছানোর আগে আমি এখানে যান্ত্রিকগুলির একটি সংক্ষিপ্ত ব্যাখ্যা করব, যেমন আমি তাদের বুঝি। আমি যে পদ্ধতিগুলি বর্ণনা করছি তার জন্য নীচের কোডটি উল্লেখ করুন এবং অবশ্যই কোডটিতে প্রচুর ডকুমেন্টেশন রয়েছে ।
- আপনি নেভিগেট যখন,
shouldReuseRoute
অগ্নি। এটি আমার কাছে কিছুটা অদ্ভুত, তবে যদি এটি ফিরে আসেtrue
তবে এটি বর্তমানে আপনি যে রুটে রয়েছেন তা পুনরায় ব্যবহার করে এবং অন্য কোনও পদ্ধতিতে বরখাস্ত হয় না। যদি ব্যবহারকারী দূরে নেভিগেট করে থাকে তবে আমি মিথ্যা ফিরিয়ে দেব।
- তাহলে
shouldReuseRoute
আয় false
, shouldDetach
দাবানল। shouldDetach
আপনি রুটটি সঞ্চয় করতে চান কিনা তা নির্ধারণ করে এবং boolean
যতটা ইঙ্গিত দেয় তা দেয়। এখানেই আপনার পাথগুলি সংরক্ষণ / না সঞ্চয় করার সিদ্ধান্ত নেওয়া উচিত যা আমি আপনি যে পথগুলির বিরুদ্ধে সঞ্চয় করতে চান তার একটি অ্যারে পরীক্ষা করে route.routeConfig.path
এবং যদি path
অ্যারেটিতে উপস্থিত না থাকে তবে মিথ্যা ফিরিয়ে নেওয়া উচিত।
- যদি
shouldDetach
ফেরত আসে true
, store
তা বরখাস্ত করা হয়, যা রুট সম্পর্কে আপনি যে তথ্য চান তা আপনার কাছে সঞ্চয় করার জন্য একটি সুযোগ। আপনি যাই করুন না কেন, আপনার সংরক্ষণ করতে হবে DetachedRouteHandle
কারণ এটি পরে আপনার সঞ্চিত উপাদান সনাক্ত করতে কৌণিক ব্যবহার করে। নীচে, আমি DetachedRouteHandle
এবং ActivatedRouteSnapshot
আমার ক্লাসে একটি ভেরিয়েবল স্থানীয়তে উভয়ই সঞ্চয় করি ।
সুতরাং, আমরা সঞ্চয়ের জন্য যুক্তিবিজ্ঞান, কিন্তু কি নেভিগেট সম্পর্কে দেখা করেছি থেকে একটি উপাদান? অ্যাঙ্গুলার কীভাবে আপনার ন্যাভিগেশনকে বাধা দেবে এবং সঞ্চিতটিকে তার জায়গায় রাখবে?
- আবার,
shouldReuseRoute
ফিরে আসার পরে false
, shouldAttach
রান করে, যা আপনি মেমোরিতে উপাদানটি পুনরায় জেনারেট করতে বা ব্যবহার করতে চান কিনা তা বের করার সুযোগ। আপনি যদি কোনও সঞ্চিত উপাদান পুনরায় ব্যবহার করতে চান তবে ফিরে আসুনtrue
এবং আপনি ভাল আছেন!
- এখন কৌণিক আপনাকে জিজ্ঞাসা করবে, "আপনি কোন উপাদানটি আমাদের ব্যবহার করতে চান?", যা আপনি সেই উপাদানটির
DetachedRouteHandle
মধ্য থেকে ফিরে এসে চিহ্নিত করতে পারবেন retrieve
।
এটি আপনার প্রয়োজন সমস্ত যুক্তিযুক্ত সুন্দর! নীচের কোডে reuse-strategy.ts
, আমি আপনাকে একটি নিফটি ফাংশনও রেখেছি যা দুটি বস্তুর তুলনা করবে। আমি এটি ব্যবহার করে ভবিষ্যতের রুটের route.params
এবং route.queryParams
সঞ্চিত রুটের সাথে তুলনা করতে। যদি এই সমস্তগুলি মিলে যায় তবে আমি একটি নতুন তৈরির পরিবর্তে সঞ্চিত উপাদানটি ব্যবহার করতে চাই। তবে আপনি কীভাবে এটি করবেন তা আপনার উপর নির্ভর করে!
পুনঃব্যবহারের-strategy.ts
/**
* reuse-strategy.ts
* by corbfon 1/6/17
*/
import { ActivatedRouteSnapshot, RouteReuseStrategy, DetachedRouteHandle } from '@angular/router';
/** Interface for object which can store both:
* An ActivatedRouteSnapshot, which is useful for determining whether or not you should attach a route (see this.shouldAttach)
* A DetachedRouteHandle, which is offered up by this.retrieve, in the case that you do want to attach the stored route
*/
interface RouteStorageObject {
snapshot: ActivatedRouteSnapshot;
handle: DetachedRouteHandle;
}
export class CustomReuseStrategy implements RouteReuseStrategy {
/**
* Object which will store RouteStorageObjects indexed by keys
* The keys will all be a path (as in route.routeConfig.path)
* This allows us to see if we've got a route stored for the requested path
*/
storedRoutes: { [key: string]: RouteStorageObject } = {};
/**
* Decides when the route should be stored
* If the route should be stored, I believe the boolean is indicating to a controller whether or not to fire this.store
* _When_ it is called though does not particularly matter, just know that this determines whether or not we store the route
* An idea of what to do here: check the route.routeConfig.path to see if it is a path you would like to store
* @param route This is, at least as I understand it, the route that the user is currently on, and we would like to know if we want to store it
* @returns boolean indicating that we want to (true) or do not want to (false) store that route
*/
shouldDetach(route: ActivatedRouteSnapshot): boolean {
let detach: boolean = true;
console.log("detaching", route, "return: ", detach);
return detach;
}
/**
* Constructs object of type `RouteStorageObject` to store, and then stores it for later attachment
* @param route This is stored for later comparison to requested routes, see `this.shouldAttach`
* @param handle Later to be retrieved by this.retrieve, and offered up to whatever controller is using this class
*/
store(route: ActivatedRouteSnapshot, handle: DetachedRouteHandle): void {
let storedRoute: RouteStorageObject = {
snapshot: route,
handle: handle
};
console.log( "store:", storedRoute, "into: ", this.storedRoutes );
// routes are stored by path - the key is the path name, and the handle is stored under it so that you can only ever have one object stored for a single path
this.storedRoutes[route.routeConfig.path] = storedRoute;
}
/**
* Determines whether or not there is a stored route and, if there is, whether or not it should be rendered in place of requested route
* @param route The route the user requested
* @returns boolean indicating whether or not to render the stored route
*/
shouldAttach(route: ActivatedRouteSnapshot): boolean {
// this will be true if the route has been stored before
let canAttach: boolean = !!route.routeConfig && !!this.storedRoutes[route.routeConfig.path];
// this decides whether the route already stored should be rendered in place of the requested route, and is the return value
// at this point we already know that the paths match because the storedResults key is the route.routeConfig.path
// so, if the route.params and route.queryParams also match, then we should reuse the component
if (canAttach) {
let willAttach: boolean = true;
console.log("param comparison:");
console.log(this.compareObjects(route.params, this.storedRoutes[route.routeConfig.path].snapshot.params));
console.log("query param comparison");
console.log(this.compareObjects(route.queryParams, this.storedRoutes[route.routeConfig.path].snapshot.queryParams));
let paramsMatch: boolean = this.compareObjects(route.params, this.storedRoutes[route.routeConfig.path].snapshot.params);
let queryParamsMatch: boolean = this.compareObjects(route.queryParams, this.storedRoutes[route.routeConfig.path].snapshot.queryParams);
console.log("deciding to attach...", route, "does it match?", this.storedRoutes[route.routeConfig.path].snapshot, "return: ", paramsMatch && queryParamsMatch);
return paramsMatch && queryParamsMatch;
} else {
return false;
}
}
/**
* Finds the locally stored instance of the requested route, if it exists, and returns it
* @param route New route the user has requested
* @returns DetachedRouteHandle object which can be used to render the component
*/
retrieve(route: ActivatedRouteSnapshot): DetachedRouteHandle {
// return null if the path does not have a routerConfig OR if there is no stored route for that routerConfig
if (!route.routeConfig || !this.storedRoutes[route.routeConfig.path]) return null;
console.log("retrieving", "return: ", this.storedRoutes[route.routeConfig.path]);
/** returns handle when the route.routeConfig.path is already stored */
return this.storedRoutes[route.routeConfig.path].handle;
}
/**
* Determines whether or not the current route should be reused
* @param future The route the user is going to, as triggered by the router
* @param curr The route the user is currently on
* @returns boolean basically indicating true if the user intends to leave the current route
*/
shouldReuseRoute(future: ActivatedRouteSnapshot, curr: ActivatedRouteSnapshot): boolean {
console.log("deciding to reuse", "future", future.routeConfig, "current", curr.routeConfig, "return: ", future.routeConfig === curr.routeConfig);
return future.routeConfig === curr.routeConfig;
}
/**
* This nasty bugger finds out whether the objects are _traditionally_ equal to each other, like you might assume someone else would have put this function in vanilla JS already
* One thing to note is that it uses coercive comparison (==) on properties which both objects have, not strict comparison (===)
* Another important note is that the method only tells you if `compare` has all equal parameters to `base`, not the other way around
* @param base The base object which you would like to compare another object to
* @param compare The object to compare to base
* @returns boolean indicating whether or not the objects have all the same properties and those properties are ==
*/
private compareObjects(base: any, compare: any): boolean {
// loop through all properties in base object
for (let baseProperty in base) {
// determine if comparrison object has that property, if not: return false
if (compare.hasOwnProperty(baseProperty)) {
switch(typeof base[baseProperty]) {
// if one is object and other is not: return false
// if they are both objects, recursively call this comparison function
case 'object':
if ( typeof compare[baseProperty] !== 'object' || !this.compareObjects(base[baseProperty], compare[baseProperty]) ) { return false; } break;
// if one is function and other is not: return false
// if both are functions, compare function.toString() results
case 'function':
if ( typeof compare[baseProperty] !== 'function' || base[baseProperty].toString() !== compare[baseProperty].toString() ) { return false; } break;
// otherwise, see if they are equal using coercive comparison
default:
if ( base[baseProperty] != compare[baseProperty] ) { return false; }
}
} else {
return false;
}
}
// returns true only after false HAS NOT BEEN returned through all loops
return true;
}
}
আচরণ
এই বাস্তবায়নটি প্রতিটি অনন্য রুটকে সংরক্ষণ করে যা ব্যবহারকারী রাউটারে ঠিক একবারে দেখেছেন। এটি সাইটে ব্যবহারকারীর অধিবেশন জুড়ে স্মৃতিতে সঞ্চিত উপাদানগুলিতে যোগ করা চালিয়ে যাবে। আপনি যদি সংরক্ষণ করেন এমন রুটগুলি সীমাবদ্ধ করতে চান তবে এটি করার জায়গাটি হ'ল shouldDetach
পদ্ধতি। আপনি কোন রুটগুলি সংরক্ষণ করবেন তা এটি নিয়ন্ত্রণ করে।
উদাহরণ
বলুন আপনার ব্যবহারকারী হোমপৃষ্ঠা থেকে এমন কিছু সন্ধান করেছেন, যা এটিকে পথে চালিত করে search/:term
, যা প্রদর্শিত হতে পারে www.yourwebsite.com/search/thingsearchedfor
। অনুসন্ধান পৃষ্ঠায় অনুসন্ধান ফলাফলগুলির একটি গুচ্ছ রয়েছে contains আপনি যদি এই পথে ফিরে আসতে চান তবে আপনি এই রুটটি সংরক্ষণ করতে চান! এখন তারা একটি অনুসন্ধান ফলাফলকে ক্লিক করে নেভিগেট হয়ে যায় view/:resultId
, যা আপনি সংরক্ষণ করতে চান না , তারা সম্ভবত একবারেই সেখানে আসবে তা দেখে। উপরোক্ত বাস্তবায়নের জায়গায়, আমি কেবল shouldDetach
পদ্ধতিটি পরিবর্তন করব ! এটি দেখতে কেমন লাগবে তা এখানে:
প্রথমে আসুন আমরা যে পাথগুলি সঞ্চয় করতে চাই তার একটি অ্যারে তৈরি করি।
private acceptedRoutes: string[] = ["search/:term"];
এখন, shouldDetach
আমরা route.routeConfig.path
আমাদের অ্যারের বিরুদ্ধে পরীক্ষা করতে পারি ।
shouldDetach(route: ActivatedRouteSnapshot): boolean {
// check to see if the route's path is in our acceptedRoutes array
if (this.acceptedRoutes.indexOf(route.routeConfig.path) > -1) {
console.log("detaching", route);
return true;
} else {
return false; // will be "view/:resultId" when user navigates to result
}
}
যেহেতু কৌণিক কেবল একটি রুটের একটি উদাহরণ সংরক্ষণ করবে, এই সঞ্চয়স্থানটি হালকা ওজনের হবে এবং আমরা কেবল সেখানে থাকা উপাদানটি সংরক্ষণ করব search/:term
এবং অন্য সকলকে নয়!
অতিরিক্ত লিঙ্ক
যদিও এখনও সেখানে খুব বেশি ডকুমেন্টেশন নেই, তবে এখানে যা আছে তার সাথে কয়েকটি লিঙ্ক রয়েছে:
কৌণিক ডকস: https://angular.io/docs/ts/latest/api/router/index/RouteReuseStrategy-class.html
ইন্ট্রো প্রবন্ধ: https://www.softwarearchitekt.at/post/2016/12/02/sticky-routes-in-angular-2-3-with-routereusestrategy.aspx
নেটিসস্ক্রিপ্ট-কৌণিকের ডিফল্ট রাউটারউজস্ট্রেটির বাস্তবায়ন : https://github.com/NativeScript/nativescript-angular/blob/cb4fd3a/nativescript-angular/router/ns-route-reuse-strategy.ts